/* ============================================================
   Foundation First Homes — warm, hopeful, affordable
   Design language: cream paper, teal ink, warm-yellow sun,
   coral doorways, generous rounding, soft daylight shadows.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --teal:      #2B4A5A;
  --teal-700:  #223B48;
  --teal-800:  #1B2F3A;
  --teal-900:  #142229;
  --yellow:    #F0B429;
  --yellow-600:#D2960E;
  --yellow-050:#FCEBBE;
  --coral:     #EE6C4D;
  --coral-600: #DB5334;
  --coral-050: #FBE0D7;
  --cream:     #FBF4E7;
  --cream-2:   #FDF9F0;
  --paper:     #FFFFFF;
  --ink:       #20313A;
  --muted:     #566670;
  --line:      #E7DCC8;
  --line-soft: #EFE7D6;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(31,49,58,.06), 0 1px 2px rgba(31,49,58,.05);
  --shadow-md: 0 14px 34px -18px rgba(31,49,58,.30), 0 4px 12px -6px rgba(31,49,58,.14);
  --shadow-lg: 0 34px 70px -30px rgba(31,49,58,.40), 0 10px 24px -12px rgba(31,49,58,.18);
  --shadow-yellow: 0 16px 34px -14px rgba(210,150,14,.45);

  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);

  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --step-hero: clamp(2.5rem, 1.6rem + 4.6vw, 4.5rem);
  --step-h2:   clamp(1.85rem, 1.35rem + 2.3vw, 3rem);
  --step-h3:   clamp(1.25rem, 1.08rem + 0.85vw, 1.6rem);
  --step-body: clamp(1rem, 0.97rem + 0.2vw, 1.125rem);
  --step-sm:   clamp(0.86rem, 0.83rem + 0.12vw, 0.95rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 88% -8%, rgba(240,180,41,.16), transparent 60%),
    radial-gradient(900px 520px at -6% 12%, rgba(238,108,77,.08), transparent 55%);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 .5em;
}
p { margin: 0 0 1rem; }
a { color: var(--teal); text-decoration-color: rgba(43,74,90,.35); text-underline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-600); margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--yellow); border-radius: 2px; }
.section__head { max-width: 44ch; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: var(--step-h2); }
.lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); color: var(--muted); }
.text-muted { color: var(--muted); }

.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--teal); color: #fff; padding: .7rem 1.15rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 200;
  font-weight: 600; transition: top .18s ease;
}
.skip-link:focus { top: 0; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--yellow);
  --btn-fg: var(--teal-900);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  line-height: 1; letter-spacing: .005em;
  padding: .95rem 1.5rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--yellow); --btn-fg: var(--teal-900); box-shadow: 0 8px 20px -10px rgba(210,150,14,.6); }
.btn--dark { --btn-bg: var(--teal); --btn-fg: #fff; }
.btn--dark:hover { box-shadow: 0 16px 30px -14px rgba(27,47,58,.6); background: var(--teal-700); }
.btn--coral { --btn-bg: var(--coral); --btn-fg: #fff; }
.btn--coral:hover { box-shadow: 0 16px 30px -14px rgba(219,83,52,.55); background: var(--coral-600); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--teal);
  border-color: rgba(43,74,90,.28);
}
.btn--ghost:hover { background: rgba(43,74,90,.06); box-shadow: none; border-color: var(--teal); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,244,231,.78);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(251,244,231,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(31,49,58,.5);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--teal); }
.brand .mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 6px 12px rgba(31,49,58,.16)); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; line-height: 1.05; letter-spacing: -.01em; }
.brand__name span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--coral-600); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--teal); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: .35rem; }
.nav-list a {
  display: inline-block; padding: .55rem .85rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  color: var(--teal-700); text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.nav-list a:hover { background: rgba(43,74,90,.07); color: var(--teal); }
.nav-cta { margin-left: .6rem; }

@media (max-width: 860px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.6rem;
    flex-direction: column; align-items: stretch;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-list a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-cta { margin: .7rem 0 0; }
  .nav-cta .btn { width: 100%; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex !important; visibility: visible !important; opacity: 1 !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2rem, 1rem + 4vw, 4rem); padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 5rem); overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(2rem, 1rem + 6vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__copy { max-width: 38rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--teal-700); font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; padding: .45rem .9rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); margin-bottom: 1.3rem;
}
.pill .dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(238,108,77,.18); }
.hero h1 { font-size: var(--step-hero); font-weight: 700; margin-bottom: .55em; }
.hero h1 .accent { color: var(--coral); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em;
  background: var(--yellow); border-radius: 4px; z-index: -1; opacity: .55;
}
.hero__sub { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); color: var(--muted); max-width: 34rem; margin-bottom: 1.7rem; }
.hero__cta { margin-bottom: 1.6rem; }
.hero__reassure { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero__reassure svg { width: 1.15rem; height: 1.15rem; color: var(--yellow-600); flex: none; }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 520px; }
.hero__figure {
  position: relative; overflow: hidden;
  border-radius: clamp(120px, 42vw, 230px) clamp(120px, 42vw, 230px) 26px 26px;
  aspect-ratio: 4 / 4.7;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
  background: var(--yellow-050);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__ring {
  position: absolute; inset: -18px -18px auto -18px; height: 62%;
  border-radius: clamp(120px, 42vw, 250px) clamp(120px, 42vw, 250px) 40px 40px;
  border: 2px dashed rgba(240,180,41,.7);
  z-index: -1;
}
.hero__blob {
  position: absolute; width: 210px; height: 210px; border-radius: 44% 56% 60% 40% / 42% 44% 56% 58%;
  background: radial-gradient(circle at 35% 30%, rgba(238,108,77,.30), rgba(238,108,77,0) 70%);
  right: -60px; bottom: -40px; z-index: -1; filter: blur(2px);
}
.price-chip {
  position: absolute; left: -6%; bottom: 8%;
  background: var(--paper); border-radius: var(--radius-md);
  padding: .95rem 1.15rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft); text-align: left; min-width: 156px;
}
.price-chip__label { font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); display: block; }
.price-chip__num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--teal); display: block; line-height: 1.1; margin: .1rem 0; }
.price-chip__emi { font-size: .82rem; color: var(--coral-600); font-weight: 600; }
.keys-chip {
  position: absolute; right: -4%; top: 10%;
  background: var(--teal); color: #fff; border-radius: var(--radius-pill);
  padding: .55rem 1rem .55rem .7rem; font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: .5rem;
}
.keys-chip svg { width: 1.1rem; height: 1.1rem; color: var(--yellow); }

/* ---------- Stats strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat { background: var(--cream-2); padding: 1.4rem 1.2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem); color: var(--teal); line-height: 1; }
.stat__num .unit { color: var(--coral); }
.stat__label { font-size: .86rem; color: var(--muted); margin-top: .4rem; font-weight: 500; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- About / Story ---------- */
.about__grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.about__figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.about__figure img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(251,244,231,.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-md); padding: .8rem 1rem;
  box-shadow: var(--shadow-sm); font-family: var(--font-display);
}
.about__badge strong { display: block; color: var(--teal); font-size: 1.4rem; }
.about__badge span { font-size: .8rem; color: var(--muted); }
.steps { display: grid; gap: 1rem; margin-top: 1.6rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__num {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  background: var(--yellow-050); color: var(--yellow-600); border: 1.5px solid var(--yellow);
}
.step h3 { font-size: 1.08rem; margin-bottom: .15rem; }
.step p { margin: 0; font-size: .95rem; color: var(--muted); }
@media (min-width: 900px) { .about__grid { grid-template-columns: 0.95fr 1.05fr; } }

/* ---------- Section on teal ---------- */
.section--dark {
  background: var(--teal);
  color: #EAF1F3;
  background-image:
    radial-gradient(900px 500px at 100% 0%, rgba(240,180,41,.16), transparent 55%),
    radial-gradient(700px 500px at 0% 100%, rgba(238,108,77,.14), transparent 55%);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--yellow); }
.section--dark .eyebrow::before { background: var(--coral); }
.section--dark .lede, .section--dark .text-muted { color: #C4D3D8; }

/* ---------- Listings / Projects ---------- */
.listings { display: grid; gap: clamp(1.2rem, .8rem + 1.5vw, 1.8rem); grid-template-columns: 1fr; }
.card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--yellow-050); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.status {
  position: absolute; top: .8rem; left: .8rem;
  font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .02em;
  padding: .35rem .75rem; border-radius: var(--radius-pill); color: #fff;
  background: var(--teal); box-shadow: var(--shadow-sm);
}
.status--ready { background: #2E7D57; }
.status--soon { background: var(--coral-600); }
.status--new { background: var(--yellow-600); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__loc { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--muted); font-weight: 500; margin-bottom: .3rem; }
.card__loc svg { width: 1rem; height: 1rem; color: var(--coral); }
.card__body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.tag {
  font-size: .8rem; font-weight: 500; color: var(--teal-700);
  background: var(--cream); border: 1px solid var(--line);
  padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: .9rem; border-top: 1px solid var(--line-soft); }
.card__price small { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; }
.card__price strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--teal); font-weight: 700; }
.card__link { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--coral-600); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; }
.card__link:hover { text-decoration: underline; }
@media (min-width: 640px) { .listings { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .listings { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Signature: Home options / pricing ---------- */
.options { display: grid; gap: clamp(1.2rem, .8rem + 1.5vw, 1.6rem); grid-template-columns: 1fr; align-items: stretch; }
.plan {
  position: relative; background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--paper); border: 2px solid var(--yellow);
  box-shadow: var(--shadow-md);
}
.plan__flag {
  position: absolute; top: -.85rem; right: 1.3rem;
  background: var(--yellow); color: var(--teal-900);
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  padding: .35rem .85rem; border-radius: var(--radius-pill);
  letter-spacing: .03em; box-shadow: var(--shadow-sm);
}
.plan__type { font-family: var(--font-display); font-weight: 600; color: var(--coral-600); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem); color: var(--teal); line-height: 1; margin: .4rem 0 .2rem; }
.plan__emi { font-weight: 600; color: var(--ink); }
.plan__emi b { color: var(--coral-600); }
.plan__size { font-size: .9rem; color: var(--muted); margin: .35rem 0 1.1rem; }
.plan__feats { display: grid; gap: .6rem; margin-bottom: 1.4rem; }
.plan__feats li { display: flex; gap: .55rem; align-items: flex-start; font-size: .94rem; color: var(--teal-700); }
.plan__feats svg { width: 1.15rem; height: 1.15rem; color: #2E7D57; flex: none; margin-top: .1rem; }
.plan .btn { margin-top: auto; }
@media (min-width: 780px) { .options { grid-template-columns: repeat(3, 1fr); } }

.loan-note {
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  display: grid; gap: 1.6rem; align-items: center; grid-template-columns: 1fr;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.loan-note__icon {
  width: 3.4rem; height: 3.4rem; border-radius: 16px; flex: none;
  background: var(--yellow-050); display: grid; place-items: center;
  border: 1.5px solid var(--yellow);
}
.loan-note__icon svg { width: 1.7rem; height: 1.7rem; color: var(--yellow-600); }
.loan-note h3 { font-size: var(--step-h3); margin-bottom: .4rem; }
.loan-note p { margin: 0; color: var(--muted); }
.loan-note__inner { display: flex; gap: 1.1rem; align-items: flex-start; }
.footnote { font-size: .8rem; color: var(--muted); margin-top: 1.1rem; max-width: 60ch; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.6rem, .4rem + 1vw, 1rem); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); position: relative; background: var(--yellow-050); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-wide img { aspect-ratio: 2/1; }
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
  .gallery .g-tall { grid-row: span 2; }
  .gallery .g-tall img { aspect-ratio: auto; height: 100%; }
  .gallery .g-wide { grid-column: span 2; }
}

/* ---------- Why us / team ---------- */
.team { display: grid; gap: clamp(1.2rem, .8rem + 1.5vw, 1.7rem); grid-template-columns: 1fr; }
.member {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; backdrop-filter: blur(4px);
}
.member__avatar {
  width: 3.4rem; height: 3.4rem; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--teal-900);
  background: var(--yellow); margin-bottom: 1rem;
}
.member:nth-child(2) .member__avatar { background: var(--coral); color: #fff; }
.member:nth-child(3) .member__avatar { background: #6FB99A; color: var(--teal-900); }
.member h3 { color: #fff; font-size: 1.25rem; margin-bottom: .15rem; }
.member__role { color: var(--yellow); font-weight: 600; font-size: .9rem; font-family: var(--font-display); margin-bottom: .7rem; }
.member p { color: #C4D3D8; font-size: .95rem; margin: 0; }
@media (min-width: 760px) { .team { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: clamp(1.2rem, .8rem + 1.5vw, 1.7rem); grid-template-columns: 1fr; }
.quote {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.stars { display: inline-flex; gap: .15rem; color: var(--yellow); margin-bottom: .9rem; }
.stars svg { width: 1.15rem; height: 1.15rem; }
.quote blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; color: var(--teal-800); line-height: 1.6; }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.quote__who strong { font-family: var(--font-display); color: var(--teal); display: block; font-size: .98rem; }
.quote__who span { font-size: .82rem; color: var(--muted); }
.quote__pic { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--coral-050); color: var(--coral-600); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Contact / Visit ---------- */
.contact__grid { display: grid; gap: clamp(1.6rem, 1rem + 3vw, 3rem); grid-template-columns: 1fr; align-items: start; }
.contact__info h2 { font-size: var(--step-h2); }
.contact__actions { display: grid; gap: .8rem; margin: 1.4rem 0 1.8rem; }
.contact-line {
  display: flex; align-items: center; gap: .9rem; text-decoration: none; color: var(--teal);
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: .9rem 1.1rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-line:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-line__icon { width: 2.6rem; height: 2.6rem; flex: none; border-radius: 12px; display: grid; place-items: center; }
.contact-line__icon svg { width: 1.3rem; height: 1.3rem; }
.contact-line.wa .contact-line__icon { background: #E4F5EA; color: #1FA855; }
.contact-line.call .contact-line__icon { background: var(--yellow-050); color: var(--yellow-600); }
.contact-line__txt small { display: block; font-size: .76rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.contact-line__txt strong { font-family: var(--font-display); font-size: 1.05rem; }
.office { display: grid; gap: 1rem; }
.office__item { display: flex; gap: .8rem; align-items: flex-start; }
.office__item svg { width: 1.25rem; height: 1.25rem; color: var(--coral); flex: none; margin-top: .2rem; }
.office__item strong { font-family: var(--font-display); color: var(--teal); display: block; font-size: .98rem; }
.office__item span { color: var(--muted); font-size: .92rem; }

.form-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: var(--step-h3); margin-bottom: .3rem; }
.form-card > p { color: var(--muted); font-size: .95rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--teal-800); margin-bottom: .4rem; }
.field label .req { color: var(--coral-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream-2); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: .8rem .95rem;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(43,74,90,.14); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: #9AA6AC; }
.field-row { display: grid; gap: 0; }
@media (min-width: 540px) { .field-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.form-reassure { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--muted); margin-top: 1rem; }
.form-reassure svg { width: 1.05rem; height: 1.05rem; color: #2E7D57; flex: none; }
.hp { position: absolute; left: -9999px; }
@media (min-width: 920px) { .contact__grid { grid-template-columns: 1fr 1.05fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #B9C7CD; padding-block: clamp(2.8rem, 2rem + 3vw, 4.5rem) 2rem; }
.footer__top { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-bottom: 2.4rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #98A8AF; max-width: 34ch; margin-top: 1rem; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a { display: block; color: #A9B8BE; text-decoration: none; padding: .3rem 0; font-size: .95rem; }
.footer__col a:hover { color: var(--yellow); }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #E6EEF0; transition: background-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--yellow); color: var(--teal-900); transform: translateY(-2px); }
.socials svg { width: 1.2rem; height: 1.2rem; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  font-size: .86rem; color: #8FA0A7;
}
.footer__bar a { color: #C4D3D8; }
.studio-credit a { color: var(--yellow); font-weight: 600; text-decoration: none; }
.studio-credit a:hover { text-decoration: underline; }
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; } }

/* ---------- Thank you ---------- */
.thanks { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.thanks__card {
  max-width: 40rem; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  box-shadow: var(--shadow-md);
}
.thanks__mark {
  width: 5rem; height: 5rem; border-radius: 50%; margin: 0 auto 1.4rem;
  background: var(--yellow-050); border: 2px solid var(--yellow); display: grid; place-items: center;
}
.thanks__mark svg { width: 2.4rem; height: 2.4rem; color: var(--yellow-600); }
.thanks h1 { font-size: var(--step-h2); }
.thanks p { color: var(--muted); max-width: 46ch; margin-inline: auto; }
.thanks .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- Reveal motion ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); will-change: transform, opacity; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card:hover, .plan:hover, .contact-line:hover { transform: none; }
  .card:hover .card__media img, .gallery figure:hover img { transform: none; }
}
