:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #1c1b18;
  --muted: #6e6b64;
  --line: #e2e0d8;
  --accent: #6a511b;
  --accent-light: #8f7136;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus { left: 16px; }

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.45), transparent);
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
  transition: opacity .2s ease;
}

.site-header a:hover { opacity: .6; }

.brand { font-size: 15px; }

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero .parallax {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 760px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 600;
}

.hero-copy {
  margin: 26px 0 36px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s var(--ease-out), background .2s ease, opacity .2s ease;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); opacity: .88; }

.btn-secondary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; }

.btn-lg { min-height: 62px; padding: 0 36px; font-size: 16px; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.mouse {
  display: block;
  width: 18px;
  height: 28px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 12px;
}

.mouse::after {
  content: "";
  display: block;
  width: 4px;
  height: 6px;
  margin: 6px auto 0;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  animation: scroll 1.4s ease-in-out infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

.section-eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 600;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.intro { padding: 110px 0 120px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: start;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.features-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.price-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(0,0,0,.07);
}

.price-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 6px;
  color: var(--accent);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.price-code {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.parallax-window {
  position: relative;
  height: 80svh;
  overflow: hidden;
  display: grid;
  place-items: end start;
}

.parallax-window .parallax {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-caption {
  position: relative;
  z-index: 2;
  padding: 30px 6vw;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.highlights { padding: 110px 0; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.highlight {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform .25s var(--ease-out), border-color .2s ease;
}

.highlight:hover { transform: translateY(-5px); border-color: var(--accent-light); }

.highlight-num {
  display: block;
  margin-bottom: 18px;
  color: var(--line);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.highlight h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
}

.highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gallery { padding: 0 0 130px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-top: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #eee;
  margin: 0;
}

.gallery-item .parallax {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.gallery-item--wide {
  grid-row: span 2;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 18px 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  width: 100%;
}

.location { padding: 0 0 130px; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.location address {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0,0,0,.07);
}

.location-map iframe { width: 100%; height: 420px; display: block; }

.contact { padding: 0 0 130px; }

.contact-inner {
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.contact .section-title { margin-bottom: 16px; }

.contact .section-copy { margin: 0 auto 36px; }

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    position: static;
    margin-top: 10px;
  }

  .highlights-grid,
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .gallery-item--wide { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 560px) {
  .highlights-grid,
  .features-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide { grid-column: auto; }

  .contact-inner { padding: 60px 24px; }

  .hero h1 { font-size: 40px; }
}
