/* ==========================================================================
   Banyan Row Co-Living — vibrant young co-living, Bengaluru
   Poppins + Rubik · purple / orange / cream / teal
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root {
  --purple:   #2A2140;
  --purple-2: #372B55;
  --orange:   #F2A65A;
  --orange-d: #E8913D;
  --cream:    #FBF6EE;
  --cream-2:  #F4EADA;
  --teal:     #2FC4B2;
  --teal-d:   #22A695;
  --ink:      #241B33;
  --muted:    #6B6178;
  --line:     rgba(42, 33, 64, 0.12);
  --white:    #ffffff;

  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 34px;

  --shadow-sm: 0 6px 18px rgba(42, 33, 64, 0.08);
  --shadow-md: 0 18px 44px rgba(42, 33, 64, 0.12);
  --shadow-lg: 0 30px 70px rgba(42, 33, 64, 0.18);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Rubik", system-ui, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; color: var(--purple); }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--purple); color: var(--white);
  padding: 0.7rem 1.1rem; border-radius: 0 0 12px 12px;
  z-index: 1000; font-weight: 600; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  padding: 0.82rem 1.5rem; border-radius: 100px; line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: var(--purple); box-shadow: 0 10px 24px rgba(242, 166, 90, 0.4); }
.btn-primary:hover { background: var(--orange-d); box-shadow: 0 14px 30px rgba(242, 166, 90, 0.5); }

.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--cream); }

.btn-ghost { background: rgba(42, 33, 64, 0.06); color: var(--purple); }
.btn-ghost:hover { background: rgba(42, 33, 64, 0.12); }
.btn-ghost--light { background: rgba(255,255,255,0.12); color: var(--cream); border-color: rgba(255,255,255,0.28); }
.btn-ghost--light:hover { background: rgba(255,255,255,0.2); }

.btn-wa { background: var(--teal); color: #06322c; box-shadow: 0 10px 24px rgba(47, 196, 178, 0.4); }
.btn-wa:hover { background: var(--teal-d); }

.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0.7rem var(--gutter);
  background: rgba(251, 246, 238, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; color: var(--purple); letter-spacing: -0.02em; }
.brand-mark { flex: none; border-radius: 9px; }
.brand-text { line-height: 1; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 0.35rem; align-items: center; }
.site-nav a {
  text-decoration: none; color: var(--purple); font-family: var(--font-head); font-weight: 500;
  font-size: 0.96rem; padding: 0.5rem 0.85rem; border-radius: 100px;
  transition: background 0.18s ease, color 0.18s ease;
}
.site-nav a:hover { background: rgba(42, 33, 64, 0.07); }

.header-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none; margin-left: auto;
  background: var(--purple); border: none; border-radius: 12px;
  width: 46px; height: 46px; padding: 0; position: relative;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--cream);
  margin: 4px auto; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: clamp(2.2rem, 5vw, 4.5rem) var(--gutter) clamp(2rem, 4vw, 3rem); max-width: var(--maxw); margin-inline: auto; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-d); margin-bottom: 1.1rem; }
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(242,166,90,0.25); }

.hero h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .hl { position: relative; color: var(--orange-d); white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.06em; height: 0.32em; background: rgba(47, 196, 178, 0.35); border-radius: 6px; z-index: -1; }

.lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.28rem); color: var(--muted); margin-top: 1.3rem; max-width: 34ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1.8rem; }
.hero-badges li { position: relative; padding-left: 1.5rem; font-family: var(--font-head); font-weight: 500; font-size: 0.94rem; color: var(--purple); }
.hero-badges li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--teal-d); font-weight: 700; }

/* hero media */
.hero-media { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--white); aspect-ratio: 5 / 4; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.sticker {
  position: absolute; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-md);
  padding: 0.7rem 1rem; display: flex; flex-direction: column; line-height: 1.1; z-index: 3;
}
.sticker strong { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--purple); }
.sticker span { font-size: 0.74rem; color: var(--muted); font-weight: 500; }
.sticker-rating { top: 1.1rem; left: -0.8rem; }
.sticker-rating strong { color: var(--orange-d); }
.sticker-price { bottom: 1.4rem; right: -0.8rem; text-align: right; }
.sticker-price strong { color: var(--teal-d); }
.sticker-price span:first-child { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem; }

.blob { position: absolute; border-radius: 50%; filter: blur(6px); z-index: -1; }
.blob-1 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(242,166,90,0.55), transparent 70%); top: -30px; right: -30px; }
.blob-2 { width: 240px; height: 240px; background: radial-gradient(circle, rgba(47,196,178,0.45), transparent 70%); bottom: -40px; left: -40px; }

/* stats */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stats li { background: var(--cream); padding: 1.3rem 1.1rem; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--purple); letter-spacing: -0.03em; }
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ---------- marquee ---------- */
.marquee { background: var(--purple); color: var(--cream); overflow: hidden; padding: 0.9rem 0; margin-top: clamp(2rem, 4vw, 3rem); }
.marquee-track { display: inline-flex; gap: 1.4rem; white-space: nowrap; align-items: center; animation: marquee 26s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em; }
.marquee-track span:nth-child(even) { color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- section shared ---------- */
section { position: relative; }
.section-tag { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-d); margin-bottom: 0.7rem; }
.section-tag.on-dark { color: var(--orange); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.section-sub { color: var(--muted); margin-top: 0.9rem; font-size: 1.05rem; }

.text-link { font-family: var(--font-head); font-weight: 600; color: var(--teal-d); text-decoration: none; border-bottom: 2px solid rgba(47,196,178,0.35); padding-bottom: 2px; transition: border-color 0.2s ease; }
.text-link:hover { border-color: var(--teal-d); }

/* ---------- about ---------- */
.about { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.about-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
.about-lead h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.about-body p { color: var(--muted); margin-bottom: 1rem; }
.about-body p:first-child { color: var(--ink); }

/* ---------- rooms ---------- */
.rooms { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--cream-2); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.room-grid { display: grid; gap: 1.5rem; }
.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1px solid var(--line); transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-photo { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-badge { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--cream); color: var(--purple); font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.34rem 0.7rem; border-radius: 100px; }

.room-info { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.room-info h3 { font-size: 1.5rem; }
.room-desc { color: var(--muted); font-size: 0.96rem; margin-top: 0.5rem; }
.room-specs { display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; margin-top: 1rem; }
.room-specs li { background: rgba(42,33,64,0.06); border-radius: 100px; padding: 0.28rem 0.7rem; font-size: 0.8rem; font-weight: 500; color: var(--purple); }
.room-includes { margin-top: 1rem; display: grid; gap: 0.4rem; }
.room-includes li { position: relative; padding-left: 1.5rem; font-size: 0.9rem; color: var(--ink); }
.room-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-d); font-weight: 700; }
.room-price { font-family: var(--font-head); font-weight: 500; color: var(--muted); margin: 1.2rem 0 1rem; font-size: 0.9rem; }
.room-price span { font-weight: 800; font-size: 1.7rem; color: var(--purple); letter-spacing: -0.02em; }
.room-info .btn { margin-top: auto; }

.room-card--feature { background: var(--purple); border-color: var(--purple); color: var(--cream); position: relative; }
.room-card--feature .room-info { justify-content: center; padding: 2rem 1.5rem; }
.room-card--feature h3 { color: var(--cream); font-size: 1.7rem; }
.room-card--feature .room-desc { color: rgba(251,246,238,0.8); }
.room-card--feature .room-specs li { background: rgba(255,255,255,0.12); color: var(--cream); }
.room-card--feature .room-includes li { color: rgba(251,246,238,0.92); }
.room-card--feature .room-price { color: rgba(251,246,238,0.7); }
.room-card--feature .room-price span { color: var(--orange); }
.feature-flag { position: absolute; top: 1rem; right: 1rem; background: var(--orange); color: var(--purple); font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.8rem; border-radius: 100px; }

.rooms-note { text-align: center; color: var(--muted); margin-top: 1.8rem; font-size: 0.95rem; }
.rooms-note a { color: var(--teal-d); font-weight: 600; }

/* ---------- community ---------- */
.community { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--cream-2); }
.community-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.community-media { position: relative; }
.community-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border: 6px solid var(--white); }
.sticker-events { bottom: 1.2rem; right: -0.6rem; }
.sticker-events strong { color: var(--orange-d); }

.amenity-grid { display: grid; grid-template-columns: 1fr; gap: 0.7rem 1.3rem; margin-top: 1.7rem; }
.amenity-grid li { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--purple); }
.am-ico { flex: none; width: 40px; height: 40px; display: grid; place-items: center; background: var(--white); border-radius: 12px; font-size: 1.1rem; box-shadow: var(--shadow-sm); }

/* ---------- locations ---------- */
.locations { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.loc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; overflow: hidden;
}
.loc-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--orange); }
.loc-card--soon::before { background: var(--teal); }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-pin { font-size: 1.4rem; }
.loc-card h3 { font-size: 1.35rem; margin-top: 0.4rem; }
.loc-name { color: var(--ink); font-weight: 500; margin-top: 0.2rem; }
.loc-meta { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.loc-tag { display: inline-block; margin-top: 0.9rem; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; padding: 0.3rem 0.75rem; border-radius: 100px; }
.status-open { background: rgba(47,196,178,0.18); color: var(--teal-d); }
.status-few { background: rgba(242,166,90,0.22); color: var(--orange-d); }
.status-soon { background: rgba(42,33,64,0.08); color: var(--purple); }

/* ---------- gallery ---------- */
.gallery { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.g-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.05); }

/* ---------- team ---------- */
.team { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--purple); color: var(--cream); border-radius: var(--radius-lg); margin: 0 var(--gutter); }
.team .container { padding-inline: clamp(1rem, 4vw, 2.6rem); }
.team .section-head h2, .team .section-tag { color: var(--cream); }
.team .section-tag { color: var(--orange); }
.team .section-sub { color: rgba(251,246,238,0.75); }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.team-card { background: var(--purple-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.6rem; transition: transform 0.2s ease; }
.team-card:hover { transform: translateY(-5px); }
.avatar { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--purple); background: linear-gradient(135deg, var(--a1), var(--a2)); margin-bottom: 1rem; }
.team-card h3 { color: var(--cream); font-size: 1.2rem; }
.team-role { color: var(--orange); font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; margin-top: 0.15rem; }
.team-bio { color: rgba(251,246,238,0.78); font-size: 0.92rem; margin-top: 0.7rem; }

/* ---------- testimonials ---------- */
.stories { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.story-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; }
.story-card::before { content: "\201C"; position: absolute; top: 0.3rem; right: 1.2rem; font-family: var(--font-head); font-size: 4rem; color: rgba(242,166,90,0.28); line-height: 1; }
.stars { color: var(--orange); letter-spacing: 0.1em; font-size: 1rem; margin-bottom: 0.8rem; }
.story-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.story-card figcaption { margin-top: 1.2rem; display: flex; flex-direction: column; }
.s-name { font-family: var(--font-head); font-weight: 600; color: var(--purple); }
.s-meta { color: var(--muted); font-size: 0.86rem; }

/* ---------- contact page hero ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.contact-hero { padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(1rem, 3vw, 2rem); }
.contact-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); max-width: 18ch; letter-spacing: -0.03em; }
.contact-hero-sub { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); margin-top: 1.1rem; max-width: 52ch; }

/* ---------- visit / contact ---------- */
.visit { padding: clamp(3rem, 7vw, 5.5rem) var(--gutter); max-width: var(--maxw); margin-inline: auto; }
.visit-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: stretch; }
.visit-copy { background: var(--purple); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); }
.visit-copy h2 { color: var(--cream); font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.visit-copy > p { color: rgba(251,246,238,0.82); margin-top: 1rem; }
.visit-contacts { margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.visit-contacts li { display: grid; gap: 0.2rem; }
.vc-label { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.vc-value { color: var(--cream); font-size: 0.98rem; }
.vc-value a { color: var(--teal); text-decoration: none; font-weight: 600; }
.vc-value a:hover { text-decoration: underline; }
.visit-quick { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.9rem; }

.visit-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-title { font-size: 1.4rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field-row { display: grid; gap: 1rem; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--purple); margin-bottom: 0.4rem; }
.field label span { color: var(--orange-d); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.8rem 0.95rem; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); width: 100%; transition: border-color 0.18s ease, background 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: var(--white); }
.field textarea { resize: vertical; min-height: 96px; }
.form-reassure { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 0.9rem; }

/* ---------- thank you ---------- */
.thanks { min-height: 62vh; display: grid; place-items: center; padding: clamp(3rem, 8vw, 6rem) 0; }
.thanks-inner { text-align: center; max-width: 40rem; }
.thanks-emoji { font-size: 3.4rem; display: block; margin-bottom: 0.6rem; }
.thanks-inner h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); letter-spacing: -0.03em; }
.thanks-lede { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); margin-top: 1rem; }
.thanks-next { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.5rem 1.6rem; margin: 2rem auto 0; max-width: 34rem; text-align: left; }
.thanks-next-title { font-family: var(--font-head); font-weight: 600; color: var(--purple); margin-bottom: 0.6rem; }
.thanks-next ul { display: grid; gap: 0.6rem; }
.thanks-next li { position: relative; padding-left: 1.6rem; color: var(--ink); font-size: 0.96rem; }
.thanks-next li::before { content: "→"; position: absolute; left: 0; color: var(--orange-d); font-weight: 700; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 2rem; }
.thanks-call { color: var(--muted); margin-top: 1.4rem; font-size: 0.95rem; }
.thanks-call a { color: var(--teal-d); font-weight: 600; text-decoration: none; }
.thanks-call a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--purple); color: var(--cream); margin-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; gap: 2.4rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.brand--footer { color: var(--cream); }
.footer-tag { color: rgba(251,246,238,0.72); margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,0.1); color: var(--cream); transition: background 0.18s ease, transform 0.18s ease; }
.social a:hover { background: var(--orange); color: var(--purple); transform: translateY(-3px); }

.footer-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.8rem; }
.footer-nav h4 { color: var(--orange); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-nav ul { display: grid; gap: 0.6rem; }
.footer-nav a { color: rgba(251,246,238,0.82); text-decoration: none; font-size: 0.94rem; transition: color 0.15s ease; }
.footer-nav a:hover { color: var(--cream); }
.footer-contact li { color: rgba(251,246,238,0.72); font-size: 0.9rem; line-height: 1.5; }
.footer-contact a { color: var(--teal); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center; padding-block: 1.4rem; }
.footer-bottom p { color: rgba(251,246,238,0.7); font-size: 0.86rem; }
.credit a { color: var(--orange); text-decoration: none; font-weight: 600; }
.credit a:hover { text-decoration: underline; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .room-card:hover, .loc-card:hover, .team-card:hover, .social a:hover, .g-item:hover img { transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 620px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
  .g-wide { grid-column: span 2; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .room-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .community-grid { grid-template-columns: 1fr 1.05fr; }
  .locations .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .story-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: 1fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.2fr 2fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .g-tall { grid-row: span 2; aspect-ratio: 4 / 6; }
  .g-wide { grid-column: span 2; }
}

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; }
}

/* mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 0.5rem);
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    border: 1px solid var(--line); padding: 0.7rem; margin-left: 0;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .site-nav a { display: block; padding: 0.85rem 1rem; font-size: 1.05rem; }
  .site-nav li:last-child a { background: var(--orange); color: var(--purple); text-align: center; margin-top: 0.3rem; font-weight: 600; }
}
