/* ============================================================
   Green Haven — Premium Co-Living, Columbus OH
   Palette: evergreen / ivory / brass
   Type: Fraunces (display) + Inter (text)
   ============================================================ */

:root {
  --green-950: #0d211a;
  --green-900: #122b21;
  --green-800: #1a3a2c;
  --green-700: #24503c;
  --green-100: #dce7df;
  --sage: #9db5a4;
  --ivory: #f7f4ee;
  --ivory-warm: #f1ece2;
  --white: #fffdf9;
  --gold: #c9a962;
  --gold-deep: #b3924e;
  --ink: #1e2721;
  --ink-soft: #4c5a52;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 30px 60px -20px rgba(13, 33, 26, 0.35);
  --shadow-md: 0 18px 40px -18px rgba(13, 33, 26, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- shared primitives ---------- */

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: clamp(5.5rem, 10vw, 8.5rem); }

.section--dark {
  background: var(--green-900);
  color: var(--ivory);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.4rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: rgba(247, 244, 238, 0.85); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
.h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.h2--light { color: var(--ivory); }
.h2--light em { color: var(--gold); }

.lede {
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 1.6rem;
}

.body-copy {
  color: var(--ink-soft);
  margin-top: 1.1rem;
}

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.35s, color 0.35s, border-color 0.35s;
}
.btn--gold {
  background: var(--gold);
  color: var(--green-950);
}
.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(201, 169, 98, 0.55);
}
.btn--ghost {
  border-color: rgba(247, 244, 238, 0.55);
  color: var(--ivory);
  background: rgba(247, 244, 238, 0.06);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--ivory);
  color: var(--green-950);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.72rem 1.5rem; font-size: 0.72rem; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--green-800);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.link-arrow:hover { gap: 1rem; color: var(--gold-deep); }

.link-underline {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 98, 0.5);
  transition: border-color 0.3s;
}
.link-underline:hover { border-color: var(--gold); }

/* section heads */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section--dark .section-head .h2 { color: var(--ivory); }
.section-head__note {
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.66);
  padding-bottom: 0.4rem;
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.24s; }
.reveal--delay3 { transition-delay: 0.36s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  color: var(--ivory);
}
.nav__inner {
  width: min(1320px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem;
  transition: padding 0.4s;
}
.nav.is-scrolled {
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(13, 33, 26, 0.08);
  color: var(--green-900);
}
.nav.is-scrolled .nav__inner { padding-block: 0.85rem; }

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__mark { width: 34px; height: 34px; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 2.1rem;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.92;
  position: relative;
  padding-block: 0.3rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav__phone {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.92;
  white-space: nowrap;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 130;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--green-950);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  transition: color 0.3s;
}
.menu__links a:hover { color: var(--gold); }
.menu__cta { color: var(--gold); font-style: italic; }
.menu__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s var(--ease-out) both;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 33, 26, 0.55), rgba(13, 33, 26, 0.25) 45%, rgba(13, 33, 26, 0.72)),
    radial-gradient(ellipse at center, rgba(13, 33, 26, 0.12), rgba(13, 33, 26, 0.42));
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(880px, 100% - 3rem);
  padding-top: 4rem;
}
.hero__eyebrow {
  animation: heroFade 1.1s var(--ease-out) 0.2s both;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.9rem, 7.4vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.hero__line {
  display: block;
  animation: heroRise 1.2s var(--ease-out) 0.35s both;
}
.hero__line--em {
  font-style: italic;
  color: var(--gold);
  animation-delay: 0.5s;
}
.hero__sub {
  max-width: 34rem;
  margin: 1.8rem auto 0;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.92);
  animation: heroFade 1.2s var(--ease-out) 0.75s both;
}
.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
  animation: heroFade 1.2s var(--ease-out) 0.95s both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(46px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.75);
  animation: heroFade 1.2s var(--ease-out) 1.3s both;
}
.hero__scroll em {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(247, 244, 238, 0.8), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll em::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDrip 2.2s ease-in-out infinite;
}
@keyframes scrollDrip {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  background: var(--green-950);
  color: var(--ivory-warm);
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(201, 169, 98, 0.25);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}
.ticker__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.9;
}
.ticker__track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   WELCOME
   ============================================================ */

.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.welcome__media {
  position: relative;
  padding-bottom: 4.5rem;
}
.welcome__img {
  border-radius: 14px;
  overflow: hidden;
}
.welcome__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.welcome__img:hover img { transform: scale(1.045); }
.welcome__img--main {
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-lg);
}
.welcome__img--accent {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-md);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding-top: 3.2rem;
  border-top: 1px solid rgba(13, 33, 26, 0.14);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--green-900);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   RESIDENCES
   ============================================================ */

.residences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}
.card {
  background: rgba(247, 244, 238, 0.045);
  border: 1px solid rgba(247, 244, 238, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, background 0.5s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(247, 244, 238, 0.07);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13, 33, 26, 0.72);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
}
.card__body { padding: 1.7rem 1.7rem 1.9rem; }
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ivory);
}
.card__desc {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.68);
}
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
}
.card__meta span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
}
.card__meta strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gold);
  white-space: nowrap;
}
.card__meta strong em {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(247, 244, 238, 0.6);
}
.residences__foot {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(247, 244, 238, 0.7);
}

/* ============================================================
   EXPERIENCE / AMENITIES
   ============================================================ */

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.3rem, 2.5vw, 2rem);
}
.amenity {
  background: var(--white);
  border: 1px solid rgba(13, 33, 26, 0.08);
  border-radius: 14px;
  padding: 2.3rem 2rem 2.4rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.amenity:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 98, 0.4);
}
.amenity svg {
  width: 44px;
  height: 44px;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}
.amenity h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--green-900);
  margin-bottom: 0.6rem;
}
.amenity p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   SPLIT FEATURE
   ============================================================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.feature__media {
  position: relative;
  overflow: hidden;
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__panel {
  background: var(--green-800);
  color: rgba(247, 244, 238, 0.88);
  display: flex;
  align-items: center;
}
.feature__inner {
  width: min(560px, 100%);
  padding: clamp(3.5rem, 6vw, 5.5rem);
}
.feature__inner > p:not(.eyebrow) {
  margin-top: 1.5rem;
  line-height: 1.75;
}
.feature__list {
  list-style: none;
  margin: 1.9rem 0 2.4rem;
}
.feature__list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.9rem;
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
  font-size: 0.95rem;
}
.feature__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.85rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how { background: #e6EDe6; background: linear-gradient(180deg, #eaf0ea 0%, #dfe9e1 100%); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.3rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(13, 33, 26, 0.08);
  padding: 2.4rem 1.9rem 2.3rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(201, 169, 98, 0.85);
  line-height: 1;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--green-900);
  margin: 1.1rem 0 0.55rem;
}
.step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   STORIES / TESTIMONIALS
   ============================================================ */

.stories { text-align: center; }
.stories__wrap { max-width: 860px; }
.slider__viewport {
  position: relative;
  min-height: 300px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.slide p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.45;
  color: var(--ivory);
}
.slide p em {
  font-style: italic;
  color: var(--gold);
}
.slide footer strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.slide footer span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 238, 0.6);
}
.slider__nav {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.6rem;
}
.slider__dot {
  width: 34px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(247, 244, 238, 0.25);
  cursor: pointer;
  transition: background 0.4s;
}
.slider__dot.is-active { background: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */

.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.faq__intro { position: sticky; top: 7rem; }
.faq__contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.2rem;
}
.faq__contact .link-arrow { margin-top: 0.6rem; }

.qa {
  border-bottom: 1px solid rgba(13, 33, 26, 0.14);
}
.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--green-900);
  transition: color 0.3s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--gold-deep); }
.qa__icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(13, 33, 26, 0.25);
  border-radius: 50%;
  transition: transform 0.45s var(--ease-out), background 0.3s, border-color 0.3s;
}
.qa__icon::before,
.qa__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.qa__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] .qa__icon {
  transform: rotate(135deg);
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--ivory);
}
.qa__body {
  padding: 0 2.8rem 1.6rem 0.2rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ============================================================
   TOUR / CONTACT
   ============================================================ */

.tour {
  background:
    linear-gradient(rgba(13, 33, 26, 0.92), rgba(13, 33, 26, 0.96)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1800&auto=format&fit=crop") center / cover fixed;
  color: rgba(247, 244, 238, 0.88);
}
.tour__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.tour__intro > p:not(.eyebrow) {
  margin-top: 1.5rem;
  max-width: 26rem;
  line-height: 1.75;
}
.tour__details {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tour__details span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.tour__details a {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ivory);
  transition: color 0.3s;
}
.tour__details a:hover { color: var(--gold); }
.tour__details p { color: rgba(247, 244, 238, 0.8); }

.tour__form {
  background: rgba(247, 244, 238, 0.05);
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: 18px;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.72);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ivory);
  background: rgba(13, 33, 26, 0.45);
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(247, 244, 238, 0.38); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(13, 33, 26, 0.65);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a962' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.field select option { color: var(--ink); background: var(--ivory); }
.field textarea { resize: vertical; }
.tour__note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(247, 244, 238, 0.55);
}
.tour__note.is-success {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--green-950);
  color: rgba(247, 244, 238, 0.75);
  padding-top: 4.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}
.nav__logo--footer { color: var(--ivory); }
.footer__brand p {
  margin-top: 1.2rem;
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.92rem;
  padding-block: 0.28rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }
.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  font-size: 0.8rem;
  color: rgba(247, 244, 238, 0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .residences__grid { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 420px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .tour__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__img--accent { right: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.5rem; }
  .residences__grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .slider__viewport { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
