/* ============================================================
   Heritage & Co. — Restored heritage homes, with stories.
   Ornate warm heritage design system (Jaipur, Rajasthan)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --brown:        #3A241C;
  --brown-deep:   #26140D;
  --brown-soft:   #4E342A;
  --gold:         #C08A3C;
  --gold-light:   #DCAE60;
  --gold-deep:    #9E6B27;
  --red:          #7A241B;
  --red-deep:     #5C1913;
  --cream:        #F7EFE0;
  --cream-2:      #FBF6EC;
  --paper:        #FEFBF4;
  --ink:          #2C1B13;
  --ink-soft:     #5A4436;
  --line:         rgba(58, 36, 28, 0.16);
  --line-gold:    rgba(192, 138, 60, 0.42);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;

  --shadow-sm: 0 4px 18px rgba(38, 20, 13, 0.10);
  --shadow-md: 0 18px 44px rgba(38, 20, 13, 0.16);
  --shadow-lg: 0 34px 80px rgba(38, 20, 13, 0.26);

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 6px;
  --arch: 46% 46% 8px 8px / 34% 34% 8px 8px;
  --ease: cubic-bezier(0.22, 0.61, 0.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(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: 1200;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 0.7rem 1.15rem;
  border-radius: 4px;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.75rem, 8vw, 7rem); position: relative; }
main { display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; color: var(--brown); }
h1 { font-size: clamp(2.75rem, 7.5vw, 5.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
p  { max-width: 66ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 2.1rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: "";
  width: 2.1rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lead { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--ink-soft); font-weight: 500; line-height: 1.45; }

.section-head { max-width: 60ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.85rem; }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); }
.section-head.center p { margin-inline: auto; }

/* ---------- Ornament: gold rule with lozenge ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; color: var(--gold);
  margin: 1rem 0;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; flex: 1; max-width: 5rem;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}
.ornament span { width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid var(--gold); }
.ornament span::after { content: ""; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brown-deep);
  --fg: var(--cream-2);
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }

.btn--gold { --bg: var(--gold); --fg: var(--brown-deep); box-shadow: 0 10px 26px rgba(192, 138, 60, 0.34); }
.btn--gold:hover { --bg: var(--gold-light); }

.btn--ghost {
  --bg: transparent; --fg: var(--cream);
  border-color: rgba(247, 239, 224, 0.5);
}
.btn--ghost:hover { --bg: rgba(247, 239, 224, 0.1); border-color: var(--cream); }

.btn--outline {
  --bg: transparent; --fg: var(--brown);
  border-color: var(--line-gold);
}
.btn--outline:hover { --bg: var(--brown-deep); --fg: var(--cream); border-color: var(--brown-deep); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }

.text-link {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.06em;
  color: var(--red); border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px; transition: color 0.25s, border-color 0.25s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.text-link:hover { color: var(--gold-deep); border-color: var(--gold); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247, 239, 224, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(247, 239, 224, 0.96); box-shadow: 0 8px 30px rgba(38,20,13,0.09); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--brown); }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-text small { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.primary-nav { display: flex; align-items: center; gap: 1.9rem; }
.primary-nav a.nav-link {
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.08em;
  color: var(--ink-soft); position: relative; padding-block: 0.35rem;
  transition: color 0.25s;
}
.primary-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.primary-nav a.nav-link:hover { color: var(--brown); }
.primary-nav a.nav-link:hover::after { width: 100%; }

.header-cta { display: inline-flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 44px;
  border: 1px solid var(--line-gold);
  background: transparent; border-radius: 4px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 1.6px; background: var(--brown);
  transform: translate(-50%, -50%); transition: 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 900px) {
  .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--brown-deep);
    padding: 1rem var(--gutter) 2.25rem;
    border-bottom: 3px solid var(--gold);
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a.nav-link {
    color: var(--cream); font-size: 1.05rem; padding: 1.05rem 0;
    border-bottom: 1px solid rgba(247,239,224,0.12);
  }
  .primary-nav a.nav-link::after { display: none; }
  .primary-nav .btn { margin-top: 1.4rem; display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--brown-deep); color: var(--cream); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(38,20,13,0.55) 0%, rgba(38,20,13,0.35) 40%, rgba(38,20,13,0.9) 100%),
    linear-gradient(90deg, rgba(38,20,13,0.75) 0%, rgba(38,20,13,0.15) 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(6rem, 16vw, 11rem) clamp(4.5rem, 9vw, 7.5rem);
  max-width: 46rem;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.hero h1 { color: var(--cream-2); margin-top: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  color: rgba(247,239,224,0.82); margin-top: 1.5rem; font-weight: 500; line-height: 1.5;
  max-width: 38ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-meta {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(220, 174, 96, 0.28);
  padding-top: 1.9rem; padding-bottom: 2.6rem;
}
.hero-meta div b {
  display: block; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold-light); font-weight: 600; line-height: 1;
}
.hero-meta div span { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,239,224,0.7); }

/* decorative arch frame element at hero corner */
.hero-arch {
  position: absolute; right: clamp(-4rem, -4vw, 2rem); bottom: -2rem; z-index: 1;
  width: clamp(180px, 30vw, 360px); opacity: 0.5; pointer-events: none;
  color: var(--gold);
}
@media (max-width: 760px) { .hero-arch { display: none; } }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-copy p + p { margin-top: 1.1rem; }
.about-copy .lead { margin: 1.4rem 0; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold);
  margin-top: 2rem; border-radius: var(--radius); overflow: hidden;
}
.about-stats div { background: var(--cream-2); padding: 1.3rem 1.35rem; }
.about-stats b { font-family: var(--serif); font-size: 2rem; color: var(--red); font-weight: 600; display: block; line-height: 1; }
.about-stats span { font-size: 0.76rem; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; margin-top: 0.4rem; display: block; }

.about-figure { position: relative; }
.about-figure .frame { position: relative; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-figure .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-figure .frame::before {
  content: ""; position: absolute; inset: 10px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(247, 239, 224, 0.55); border-radius: calc(46% - 8px) calc(46% - 8px) 4px 4px / 32% 32% 4px 4px;
}
.about-figure .seal {
  position: absolute; left: -1.4rem; bottom: 1.8rem; z-index: 3;
  width: clamp(96px, 14vw, 128px); height: clamp(96px, 14vw, 128px);
  background: var(--red-deep); color: var(--gold-light);
  border-radius: 50%; display: grid; place-items: center; text-align: center;
  border: 2px solid var(--gold); box-shadow: var(--shadow-md);
  font-family: var(--serif); line-height: 1.15;
}
.about-figure .seal b { font-size: 1.9rem; display: block; }
.about-figure .seal span { font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--sans); color: var(--cream); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 26rem; margin-inline: auto; order: -1; }
}

/* ============================================================
   LISTINGS (signature block)
   ============================================================ */
.listings { background: var(--brown-deep); color: var(--cream); position: relative; }
.listings::before {
  content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(220,174,96,0.14) 1px, transparent 0);
  background-size: 26px 26px;
}
.listings .wrap { position: relative; z-index: 1; }
.listings .section-head h2 { color: var(--cream-2); }
.listings .section-head p { color: rgba(247,239,224,0.72); }
.listings .eyebrow { color: var(--gold-light); }
.listings .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.listings .eyebrow.center::after { background: linear-gradient(90deg, var(--gold-light), transparent); }

.listing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.listing-card {
  background: linear-gradient(180deg, #34201780, #26140d);
  border: 1px solid rgba(220,174,96,0.26);
  border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.listing-thumb { position: relative; overflow: hidden; }
.listing-thumb img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform 0.7s var(--ease); }
.listing-card:hover .listing-thumb img { transform: scale(1.06); }
.listing-thumb .status {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 2px; color: var(--brown-deep);
  background: var(--gold-light); font-weight: 500;
}
.listing-thumb .status.reserved { background: var(--red); color: var(--cream); }
.listing-thumb .era {
  position: absolute; bottom: 0.85rem; right: 0.9rem; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--cream); background: rgba(38,20,13,0.66); padding: 0.2rem 0.7rem; border-radius: 2px;
  border: 1px solid rgba(220,174,96,0.4);
}
.listing-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.listing-body h3 { color: var(--cream-2); }
.listing-locale { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.4rem; }
.listing-specs {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; margin-top: 1rem;
  font-size: 0.86rem; color: rgba(247,239,224,0.82);
}
.listing-specs span { display: inline-flex; align-items: center; gap: 0.4rem; }
.listing-specs span::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.restoration-note {
  margin-top: 1.15rem; padding: 0.95rem 1.05rem;
  background: rgba(122, 36, 27, 0.22);
  border-left: 2px solid var(--red); border-radius: 0 4px 4px 0;
  font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  color: rgba(247,239,224,0.9); line-height: 1.4;
}
.restoration-note b { font-family: var(--sans); font-style: normal; display: block; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.35rem; font-weight: 500; }
.listing-foot {
  margin-top: auto; padding-top: 1.3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(220,174,96,0.2);
}
.listing-price { font-family: var(--serif); font-size: 1.45rem; color: var(--gold-light); font-weight: 600; line-height: 1.1; }
.listing-price small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,239,224,0.55); }
.listing-enquire {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown-deep); background: var(--gold); padding: 0.7rem 1rem; border-radius: 3px;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.listing-enquire:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream-2); }
.gallery-grid {
  display: grid; gap: clamp(0.8rem, 1.6vw, 1.15rem);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 20vw, 220px);
}
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 7px; border: 1px solid rgba(247,239,224,0.28);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1rem 0.85rem; color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  background: linear-gradient(180deg, transparent, rgba(38,20,13,0.82));
  transform: translateY(10px); opacity: 0; transition: 0.4s var(--ease);
}
.gallery-grid figure:hover figcaption { transform: translateY(0); opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(130px, 34vw, 190px); }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

/* ============================================================
   WHY US / TEAM
   ============================================================ */
.whyus { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.why-card {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card .ic { width: 44px; height: 44px; color: var(--red); margin-bottom: 1.1rem; }
.why-card h3 { font-size: 1.4rem; }
.why-card p { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.98rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 3.75rem); }
.agent {
  text-align: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.5rem 1.75rem; box-shadow: var(--shadow-sm);
}
.agent .avatar {
  width: 92px; height: 92px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--cream); background: linear-gradient(150deg, var(--red), var(--brown));
  border: 2px solid var(--gold);
}
.agent h3 { font-size: 1.5rem; }
.agent .role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.3rem; }
.agent p { font-size: 0.94rem; color: var(--ink-soft); margin: 0.9rem auto 0; }

@media (max-width: 820px) { .why-grid, .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--red-deep); color: var(--cream); position: relative; overflow: hidden; }
.testi::before {
  content: "\201C"; position: absolute; top: -2.5rem; left: 2rem;
  font-family: var(--serif); font-size: 22rem; line-height: 1; color: rgba(220,174,96,0.12);
}
.testi .wrap { position: relative; z-index: 1; }
.testi .section-head h2 { color: var(--cream-2); }
.testi .eyebrow { color: var(--gold-light); }
.testi .eyebrow.center::after { background: linear-gradient(90deg, var(--gold-light), transparent); }
.testi .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.quote {
  background: rgba(38,20,13,0.32); border: 1px solid rgba(220,174,96,0.28);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
.quote .stars { color: var(--gold-light); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.95rem; }
.quote blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--cream-2); font-style: italic; }
.quote figcaption { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid rgba(220,174,96,0.24); }
.quote figcaption b { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-light); display: block; }
.quote figcaption span { font-size: 0.76rem; letter-spacing: 0.1em; color: rgba(247,239,224,0.7); }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .lead { margin: 1.2rem 0 1.8rem; }
.info-list { display: flex; flex-direction: column; gap: 1.35rem; margin-top: 1.5rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: var(--brown-deep); border: 1px solid var(--gold-deep);
}
.info-list .ic svg { width: 20px; height: 20px; }
.info-list b { font-family: var(--serif); font-size: 1.2rem; color: var(--brown); display: block; }
.info-list span, .info-list a { font-size: 0.95rem; color: var(--ink-soft); }
.info-list a:hover { color: var(--red); }
.quick-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.btn-wa { --bg: #1e6f4c; --fg: #fff; }
.btn-wa:hover { --bg: #24815a; }

/* Form */
.enquiry-card {
  background: var(--paper); border: 1px solid var(--line-gold);
  border-radius: 8px; padding: clamp(1.5rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-md); position: relative;
}
.enquiry-card::before {
  content: ""; position: absolute; inset: 8px; border: 1px solid var(--line-gold);
  border-radius: 5px; pointer-events: none;
}
.enquiry-card > * { position: relative; }
.enquiry-card h3 { font-size: 1.7rem; }
.enquiry-card > p { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 4px; padding: 0.8rem 0.9rem; width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(192,138,60,0.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233A241C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.form-foot { margin-top: 1.5rem; }
.reassurance { font-size: 0.84rem; color: var(--ink-soft); margin-top: 1rem; display: flex; gap: 0.5rem; align-items: center; }
.reassurance svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--brown-deep); color: rgba(247,239,224,0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand-text small { color: var(--gold-light); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.95rem; max-width: 34ch; color: rgba(247,239,224,0.7); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--cream); border: 1px solid rgba(220,174,96,0.35); transition: 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--brown-deep); transform: translateY(-3px); border-color: var(--gold); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.94rem; color: rgba(247,239,224,0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem;
  border-top: 1px solid rgba(220,174,96,0.2);
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: 0.84rem; color: rgba(247,239,224,0.6);
}
.footer-bottom a { color: var(--gold-light); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.footer-bottom a:hover { border-color: var(--gold-light); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   MOTION / REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.09s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .listing-card:hover, .why-card:hover, .footer-social a:hover { transform: none !important; }
  * { animation: none !important; }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thanks {
  min-height: 100dvh; display: grid; place-items: center; text-align: center;
  background: var(--brown-deep); color: var(--cream); padding: 3rem var(--gutter);
  position: relative; overflow: hidden;
}
.thanks::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(220,174,96,0.16) 1px, transparent 0);
  background-size: 28px 28px;
}
.thanks-inner { position: relative; z-index: 1; max-width: 40rem; }
.thanks .seal-lg {
  width: 96px; height: 96px; margin: 0 auto 2rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold);
  color: var(--brown-deep); border: 3px solid var(--gold-light);
  box-shadow: 0 0 0 8px rgba(192,138,60,0.16);
}
.thanks .seal-lg svg { width: 46px; height: 46px; }
.thanks h1 { color: var(--cream-2); }
.thanks h1 em { font-style: italic; color: var(--gold-light); }
.thanks p { margin: 1.4rem auto 0; color: rgba(247,239,224,0.82); font-size: 1.1rem; }
.thanks .actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }
