* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
  background-color: #000;
  min-height: 100vh;
}

/* Hero - same background image and overlay as euclideanhomes.com */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%),
    url("https://img1.wsimg.com/isteam/getty/2163132165/:/rs=w:1920,m");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3rem 1.5rem;
}

/* Match euclideanhomes.com: brand = Playfair Display, slogan = Source Sans Pro */
.hero h1 {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "Source Sans Pro", "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
}

.brand {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: Georgia, serif;
  transform: scaleX(0.92);
  transform-origin: center center;
}

/* Contact - on black background */
.contact {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.contact h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
}

.contact .tagline {
  margin: 0;
  color: rgb(150, 150, 150);
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 0.5rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: rgb(150, 150, 150);
}

footer a {
  color: #fff;
}

/* Cookie banner - match theme #969696 / gray */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(137, 137, 137);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1000;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner .btn-accept {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-banner .btn-accept:hover {
  background: #eee;
}

