/* ==========================================================================
   Aangan Estates — Suburban Homes in Pune
   Design language: Warm Suburban Homey — cream paper, olive green, warm gold,
   terracotta brick. Courtyard (aangan) arch motif runs throughout.
   ========================================================================== */

:root {
  /* Brand palette */
  --olive:        #3A4A2E;
  --olive-deep:   #29361F;
  --olive-soft:   #55663F;
  --gold:         #C99A4E;
  --gold-deep:    #A9792F;
  --brick:        #A24B2C;
  --brick-soft:   #C4744F;

  /* Surfaces */
  --cream:        #FBF6EC;
  --cream-2:      #F4EAD6;
  --cream-3:      #EEDFC5;
  --paper:        #FFFDF8;
  --ink:          #2B2820;
  --ink-soft:     #5B554A;

  /* Utility */
  --line:         #E4D6BC;
  --shadow-sm:    0 1px 2px rgba(41, 54, 31, .06), 0 4px 14px rgba(41, 54, 31, .06);
  --shadow-md:    0 10px 30px rgba(41, 54, 31, .12), 0 2px 8px rgba(41, 54, 31, .06);
  --shadow-lg:    0 24px 60px rgba(41, 54, 31, .18);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-arch: 999px 999px 22px 22px;

  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--olive-deep);
  font-optical-sizing: auto;
}

/* --------------------------------------------------------- Skip link --- */
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--olive);
  color: var(--cream);
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------------- Focus states --- */
:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------- Utilities --- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 {
  font-size: clamp(1.85rem, 1.2rem + 3vw, 3.05rem);
  margin-top: .7rem;
}
.section-head p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
  max-width: 38rem;
}

/* ------------------------------------------------------------ Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(41, 54, 31, .22);
}
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--olive-deep);
  box-shadow: 0 8px 22px rgba(169, 121, 47, .28);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive);
}
.btn-ghost:hover { background: var(--olive); color: var(--cream); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25623c;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 98, 60, .28);
}
.btn-whatsapp:hover { background: #1c4c2f; transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active { transform: none; }
}

/* ------------------------------------------------------------- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(41, 54, 31, .07);
}
.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(--olive-deep);
}
.brand svg { flex: none; }
.brand-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: .22rem;
}

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
  list-style: none;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: .35rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--olive-deep);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--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); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-140%);
    transition: transform .32s var(--ease);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem .2rem; font-size: 1.06rem; }
  .nav-links a::after { display: none; }
  .header-cta { margin-top: 1.1rem; }
  .header-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::before {
  /* faint blueprint-free courtyard glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(201, 154, 78, .16), transparent 60%),
    radial-gradient(50% 60% at 8% 90%, rgba(58, 74, 46, .08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 5.4vw, 4.5rem);
  font-weight: 540;
  margin-top: 1.1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--brick);
  font-weight: 500;
}
.hero-lede {
  margin-top: 1.3rem;
  font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 32rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.9rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 2.4rem;
  padding-top: 1.7rem;
  border-top: 1px dashed var(--line);
}
.hero-stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  color: var(--olive);
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero-stat span {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

.hero-figure {
  position: relative;
  isolation: isolate;
}
.hero-photo {
  position: relative;
  border-radius: var(--r-arch);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  border: 1px solid rgba(255,255,255,.4);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41,54,31,.28), transparent 42%);
}
.hero-badge {
  position: absolute;
  left: -1.1rem; bottom: 1.6rem;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .9rem 1.15rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 15rem;
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,154,78,.22);
  flex: none;
}
.hero-badge b { font-family: var(--ff-display); color: var(--olive-deep); display: block; font-size: 1rem; }
.hero-badge span { font-size: .78rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-photo { aspect-ratio: 5 / 4; }
  .hero-badge { left: .6rem; }
}

/* ------------------------------------------------------------ Marquee --- */
.trust-strip {
  background: var(--olive-deep);
  color: var(--cream);
  padding-block: clamp(1.4rem, 3vw, 2rem);
}
.trust-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
}
.trust-item svg { color: var(--gold); flex: none; }

/* -------------------------------------------------------------- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.about-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure .tag {
  position: absolute;
  left: 1rem; top: 1rem;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  color: var(--olive-deep);
  font-weight: 600;
  font-size: .78rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.about-copy h2 {
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.7rem);
  margin-top: .7rem;
}
.about-copy p { margin-top: 1.1rem; color: var(--ink-soft); }
.about-points {
  list-style: none;
  padding: 0;
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}
.about-points li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.about-points .ic {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--olive);
  border: 1px solid var(--line);
}
.about-points b { font-family: var(--ff-display); color: var(--olive-deep); font-size: 1.05rem; }
.about-points span { display: block; color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { order: -1; }
}

/* ----------------------------------------------------------- Listings --- */
#listings { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.listing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.listing-head .section-head { margin-bottom: 0; }
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: clamp(1.2rem, 2.6vw, 1.9rem);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .card:hover .card-media img { transform: none; } }
.status {
  position: absolute;
  left: .85rem; top: .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--olive-deep);
  box-shadow: var(--shadow-sm);
}
.status.ready { background: #E7F0DE; color: #33502a; }
.status.soon { background: #FBEFD7; color: #8a6114; }
.status.new { background: #F6E1D6; color: #8f3d20; }
.card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card-locality {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; color: var(--gold-deep); font-weight: 600;
}
.card-body h3 { font-size: 1.3rem; margin-top: .35rem; }
.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .95rem;
  margin-top: .85rem;
  list-style: none;
  padding: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}
.card-specs li { display: inline-flex; align-items: center; gap: .38rem; }
.card-specs svg { color: var(--olive-soft); flex: none; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--line);
}
.card-price b {
  font-family: var(--ff-display);
  font-size: 1.28rem;
  color: var(--olive-deep);
  font-weight: 600;
}
.card-price span { display: block; font-size: .74rem; color: var(--ink-soft); letter-spacing: .03em; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  color: var(--brick);
  white-space: nowrap;
}
.card-link svg { transition: transform .2s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }

/* ------------------------------------------------ Neighbourhood guides --- */
.hoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
}
.hood {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.hood img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .6s var(--ease);
}
.hood::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,32,17,.9) 6%, rgba(24,32,17,.35) 55%, rgba(24,32,17,.1));
  z-index: -1;
}
.hood:hover img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .hood:hover img { transform: none; } }
.hood-body { padding: 1.5rem; width: 100%; }
.hood-body .k {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.hood-body h3 { color: var(--cream); font-size: 1.55rem; margin-top: .3rem; }
.hood-body p { font-size: .92rem; color: rgba(251,246,236,.85); margin-top: .55rem; }
.hood-meta {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem;
}
.hood-meta span {
  font-size: .76rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(251,246,236,.16);
  border: 1px solid rgba(251,246,236,.22);
  backdrop-filter: blur(2px);
}

/* --------------------------------------------------------- Aangan band --- */
.aangan-band {
  background:
    radial-gradient(70% 120% at 90% 0%, rgba(201,154,78,.18), transparent 55%),
    var(--olive-deep);
  color: var(--cream);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.aangan-band .arch-motif {
  position: absolute;
  right: -6%; top: -20%;
  width: min(46%, 420px);
  aspect-ratio: 1;
  border: 2px solid rgba(201,154,78,.22);
  border-radius: 999px 999px 0 0;
  opacity: .5;
  pointer-events: none;
}
.aangan-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.aangan-inner h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem);
  margin-top: .7rem;
}
.aangan-inner .eyebrow { color: var(--gold); }
.aangan-inner .eyebrow::before { background: var(--gold); }
.aangan-inner > div > p { color: rgba(251,246,236,.82); margin-top: 1rem; max-width: 34rem; }
.aangan-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .8rem;
}
.aangan-steps li {
  background: rgba(251,246,236,.06);
  border: 1px solid rgba(251,246,236,.14);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.aangan-steps li:hover { background: rgba(251,246,236,.1); border-color: rgba(201,154,78,.5); }
.aangan-steps .num {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold);
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(201,154,78,.5);
}
.aangan-steps b { color: var(--cream); font-family: var(--ff-display); font-size: 1.1rem; }
.aangan-steps span { display: block; color: rgba(251,246,236,.78); font-size: .9rem; margin-top: .15rem; }
.aangan-cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }

@media (max-width: 820px) {
  .aangan-inner { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: clamp(.7rem, 1.6vw, 1.1rem);
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) { .gallery-grid figure:hover img { transform: none; } }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .8rem;
  font-size: .8rem;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(24,32,17,.72));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-grid figure:hover figcaption,
.gallery-grid figure:focus-within figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-auto-rows: 140px; }
}

/* --------------------------------------------------------------- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
.agent {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.agent:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) { .agent:hover { transform: none; } }
.agent-avatar {
  width: 92px; height: 92px;
  margin: 0 auto .95rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--olive-deep);
  background: radial-gradient(circle at 30% 25%, var(--cream-3), var(--gold));
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line), var(--shadow-sm);
}
.agent h3 { font-size: 1.2rem; }
.agent .role { color: var(--gold-deep); font-weight: 600; font-size: .86rem; margin-top: .15rem; }
.agent p { color: var(--ink-soft); font-size: .9rem; margin-top: .7rem; }
.agent .langs {
  margin-top: .85rem;
  font-size: .76rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ------------------------------------------------------- Testimonials --- */
#testimonials { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.quote .mark {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: .6;
  color: var(--gold);
  height: 1.4rem;
}
.quote blockquote { color: var(--ink); font-size: 1.02rem; margin-top: .6rem; }
.quote .stars { color: var(--gold-deep); margin-top: 1rem; letter-spacing: .1em; font-size: .95rem; }
.quote figcaption {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.quote .who {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--cream);
  background: var(--olive);
  flex: none;
}
.quote figcaption b { display: block; color: var(--olive-deep); font-family: var(--ff-display); }
.quote figcaption span { font-size: .82rem; color: var(--ink-soft); }

/* ------------------------------------------------------------- Visit ---- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}
.visit-info h2 {
  font-size: clamp(1.85rem, 1.2rem + 3vw, 2.85rem);
  margin-top: .7rem;
}
.visit-info > p { color: var(--ink-soft); margin-top: 1rem; max-width: 32rem; }
.visit-facts {
  list-style: none;
  padding: 0;
  margin-top: 1.9rem;
  display: grid;
  gap: 1.15rem;
}
.visit-facts li { display: flex; gap: .9rem; align-items: flex-start; }
.visit-facts .ic {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--olive);
  color: var(--cream);
}
.visit-facts b { font-family: var(--ff-display); color: var(--olive-deep); font-size: 1.02rem; }
.visit-facts span, .visit-facts a { display: block; color: var(--ink-soft); font-size: .94rem; text-decoration: none; }
.visit-facts a:hover { color: var(--brick); }
.visit-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.9rem;
}

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.45rem; }
.form-card .hint { color: var(--ink-soft); font-size: .92rem; margin-top: .35rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: .86rem;
  color: var(--olive-deep);
  margin-bottom: .4rem;
}
.field label .req { color: var(--brick); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9a917f; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(201,154,78,.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .4rem; }
.form-reassure {
  text-align: center;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.form-reassure svg { color: var(--olive-soft); flex: none; }

@media (max-width: 820px) {
  .visit-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------- Footer --- */
.site-footer {
  background: var(--olive-deep);
  color: color-mix(in srgb, var(--cream) 82%, transparent);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; max-width: 26rem; font-size: .95rem; }
.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(251,246,236,.08);
  border: 1px solid rgba(251,246,236,.16);
  color: var(--cream);
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--olive-deep); transform: translateY(-3px); border-color: var(--gold); }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: .6rem; }
.footer-col a { text-decoration: none; color: color-mix(in srgb, var(--cream) 80%, transparent); font-size: .94rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: .94rem; line-height: 1.7; }
.footer-bottom {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(251,246,236,.14);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .86rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- Thank-you page ----- */
.ty-main {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
}
.ty-card {
  max-width: 42rem;
}
.ty-mark {
  width: 88px; height: 88px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, var(--cream-3), var(--gold));
  color: var(--olive-deep);
  box-shadow: var(--shadow-md);
}
.ty-card h1 {
  font-size: clamp(2.1rem, 1.4rem + 3.5vw, 3.4rem);
}
.ty-card h1 em { font-style: italic; color: var(--brick); }
.ty-card p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1.1rem; }
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-top: 2rem;
}
.ty-note { margin-top: 2.2rem; font-size: .9rem; color: var(--ink-soft); }

/* ------------------------------------------------ Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* contact-page hero tweak */
.contact-hero {
  background:
    radial-gradient(60% 90% at 88% 0%, rgba(201,154,78,.16), transparent 55%),
    var(--cream);
  padding-block: clamp(2.5rem, 6vw, 4rem) 0;
}
.contact-hero .eyebrow { justify-content: center; }
.contact-hero .inner { max-width: 44rem; margin-inline: auto; text-align: center; }
.contact-hero h1 {
  font-size: clamp(2.2rem, 1.4rem + 4vw, 3.6rem);
  margin-top: .8rem;
}
.contact-hero h1 em { font-style: italic; color: var(--brick); }
.contact-hero p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.1rem; }
.contact-hero .eyebrow::before { display: none; }
