/* ============================================================
   Right Homes — landing page styles
   ============================================================ */

:root {
  /* Brand palette */
  --teal-950: #07302d;
  --teal-900: #0c3a37;
  --teal-800: #134e49;
  --teal-700: #1c615a;
  --teal-600: #2a7068;

  /* accent glow + chrome tint (themeable) */
  --glow: 42, 112, 104;
  --header-tint: 9, 51, 48;

  --gold:      #c79a63;
  --gold-soft: #d8b888;
  --gold-deep: #b3833f;

  --cream:  #f5f0e7;
  --paper:  #f4efe6;
  --paper-2:#fbf8f3;
  --white:  #ffffff;

  --ink:        #14322f;
  --ink-soft:   #45605c;
  --ink-faint:  #6f8682;
  --line:       #e4ddd0;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 92px;

  --shadow-sm: 0 2px 10px rgba(8, 40, 38, 0.06);
  --shadow-md: 0 18px 45px rgba(8, 40, 38, 0.14);
  --shadow-lg: 0 30px 70px rgba(6, 34, 32, 0.30);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-display: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   PALETTE THEMES  (brand dark family + accent glow; gold stays)
   ============================================================ */
/* Burgundy + gold */
body[data-theme="burgundy"] {
  --teal-950: #2a0a12;
  --teal-900: #3a0f1a;
  --teal-800: #521623;
  --teal-700: #6a1e2f;
  --teal-600: #8a2d40;
  --glow: 138, 45, 64;
  --header-tint: 42, 10, 18;
  --ink: #3a0f1a;
  --ink-soft: #6b4750;
  --ink-faint: #8f6b73;
  --line: #e7dccf;
}
/* Richer emerald + gold */
body[data-theme="emerald"] {
  --teal-950: #04241d;
  --teal-900: #063528;
  --teal-800: #0a4d38;
  --teal-700: #106448;
  --teal-600: #188a5f;
  --glow: 23, 138, 95;
  --header-tint: 5, 40, 31;
  --ink: #0d2b22;
  --ink-soft: #3d5f54;
  --ink-faint: #6f8a80;
  --line: #e2ded0;
}
/* True red + gold */
body[data-theme="red"] {
  --teal-950: #3a0908;
  --teal-900: #520d0a;
  --teal-800: #6d130d;
  --teal-700: #8c1a12;
  --teal-600: #b0281c;
  --glow: 176, 40, 28;
  --header-tint: 58, 9, 8;
  --ink: #3a0f0c;
  --ink-soft: #6b4844;
  --ink-faint: #916b67;
  --line: #ecdcd6;
}
/* Oxblood + gold */
body[data-theme="oxblood"] {
  --teal-950: #2b0a08;
  --teal-900: #3a0d0a;
  --teal-800: #4e130e;
  --teal-700: #641c14;
  --teal-600: #7d2a1e;
  --glow: 125, 42, 30;
  --header-tint: 43, 10, 8;
  --ink: #3a120c;
  --ink-soft: #6b4a42;
  --ink-faint: #916d64;
  --line: #ead9d1;
}

/* ============================================================
   PALETTE SWITCHER (preview control)
   ============================================================ */
.theme-switch {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}
.theme-switch .ts-label {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f8682;
  margin-right: 2px;
}
.theme-switch button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s var(--ease), border-color 0.18s;
}
.theme-switch button:hover { transform: scale(1.12); }
.theme-switch button[aria-pressed="true"] { border-color: #14322f; transform: scale(1.12); }
.ts-teal     { background: linear-gradient(135deg, #2a7068, #07302d); }
.ts-burgundy { background: linear-gradient(135deg, #8a2d40, #2a0a12); }
.ts-emerald  { background: linear-gradient(135deg, #188a5f, #04241d); }
.ts-red      { background: linear-gradient(135deg, #b0281c, #3a0908); }
@media (max-width: 520px) {
  .theme-switch .ts-label { display: none; }
  .theme-switch { left: 12px; bottom: 12px; padding: 8px 10px; gap: 8px; }
}

/* ============================================================
   STICKY CONTACT ICONS (bottom-right, WhatsApp over email)
   ============================================================ */
.contact-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.16s var(--ease), box-shadow 0.16s;
}
.contact-fab__icon:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34); }
.contact-fab__icon svg { width: 28px; height: 28px; }
.contact-fab__icon.is-whatsapp { background: #25d366; }
.contact-fab__icon.is-mail { background: linear-gradient(150deg, var(--gold), var(--gold-deep)); }
.contact-fab__icon.is-mail svg { width: 26px; height: 26px; }
@media (max-width: 520px) {
  .contact-fab { right: 14px; bottom: 14px; gap: 12px; }
  .contact-fab__icon { width: 50px; height: 50px; }
  .contact-fab__icon svg { width: 25px; height: 25px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-soft);
  margin-bottom: 18px;
  text-indent: 0.26em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
  text-indent: 0;
}
.eyebrow-dark { color: var(--gold-deep); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 17ch;
}
.section-title.light { color: var(--cream); }

.section-lede {
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-lede.light { color: rgba(245, 240, 231, 0.82); }
.section-lede strong, .section-title strong { color: inherit; font-weight: 700; }

/* Check list */
.check-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.check-list.light li { color: var(--cream); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold-deep));
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(var(--header-tint), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(199, 154, 99, 0.22);
  box-shadow: 0 8px 30px rgba(6, 34, 32, 0.28);
}
.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.brand-wordmark {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 10px rgba(245, 240, 231, 0.35))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-wordmark { transform: translateY(-1px); }
.brand-logo {
  width: auto;
  height: 74px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}
.brand-words { display: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.34rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-indent: 0.18em;
}
.brand-sub {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(245, 240, 231, 0.62);
  margin-top: 6px;
  text-indent: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(245, 240, 231, 0.88);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 10px 16px;
  border: 1.5px solid rgba(245, 240, 231, 0.38);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(245, 240, 231, 0.7); }
.nav-cta {
  background: linear-gradient(150deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(179, 131, 63, 0.32);
}
.nav-cta:hover { background: var(--gold-deep); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 24px;
  margin-inline: auto;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 78px);
  padding-bottom: 96px;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 78% 6%, rgba(var(--glow), 0.55), transparent 60%),
    radial-gradient(900px 700px at 8% 100%, rgba(var(--header-tint), 0.9), transparent 55%),
    linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 45%, var(--teal-950) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(3rem, 6.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.hero-lede {
  font-size: 1.12rem;
  line-height: 1.66;
  color: rgba(245, 240, 231, 0.85);
  max-width: 48ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.25s, box-shadow 0.25s, color 0.2s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(150deg, var(--gold-soft), var(--gold-deep));
  color: #3a2a12;
  box-shadow: 0 10px 28px rgba(179, 131, 63, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(179, 131, 63, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 240, 231, 0.4);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 240, 231, 0.16);
}
.stat { display: flex; flex-direction: column; gap: 5px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
}
.stat-label { font-size: 0.86rem; color: rgba(245, 240, 231, 0.7); }

/* Hero visual */
.hero-visual {
  position: relative;
  padding-bottom: 26px;
  perspective: 1000px;
}
.hero-card { transition: transform 0.3s var(--ease); }
.hero-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 240, 231, 0.12);
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: clamp(380px, 46vw, 520px);
  object-fit: cover;
  display: block;
}
.hero-photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.sh-star { color: var(--gold-deep); }

.hero-card {
  position: absolute;
  left: -22px;
  bottom: -8px;
  width: min(290px, 72%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 18px 20px 20px;
  box-shadow: 0 24px 50px rgba(6, 34, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  will-change: transform;
}
.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.card-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.card-payout {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--teal-700);
  line-height: 1;
}
.card-chart {
  width: 100%;
  height: 64px;
  display: block;
  overflow: visible;
}
.card-chart rect { height: 0; y: 90px; transition: height 0.9s var(--ease), y 0.9s var(--ease); }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.stars { color: var(--gold); letter-spacing: 1px; }
.card-occ { font-weight: 700; color: var(--teal-700); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--teal-950);
  color: rgba(245, 240, 231, 0.78);
  border-top: 1px solid rgba(199, 154, 99, 0.18);
  border-bottom: 1px solid rgba(199, 154, 99, 0.18);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 17px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.trust-inner i { color: var(--gold); font-style: normal; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(72px, 9vw, 124px); }
.section-light { background: var(--paper); }
.section-dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(var(--glow), 0.4), transparent 60%),
    linear-gradient(160deg, var(--teal-900), var(--teal-950));
  color: var(--cream);
}
.section-head { margin-bottom: 56px; }

/* Split intro: text + property image */
.section-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: 84px;
}
.section-intro .section-head { margin-bottom: 0; }
.section-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 38vw, 460px);
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.section-intro.reverse .section-head { order: 2; }
.section-intro.reverse .section-media { order: 1; }

/* Alternating image + text rows */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5.5vw, 72px);
  align-items: center;
  margin-bottom: clamp(44px, 6vw, 78px);
}
.split:last-child { margin-bottom: 0; }
.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  height: clamp(300px, 34vw, 420px);
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split:hover .split-media img { transform: scale(1.04); }
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }
.split-icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(199, 154, 99, 0.18), rgba(199, 154, 99, 0.07));
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.split-icon.light {
  background: linear-gradient(155deg, var(--gold), var(--gold-deep));
  color: #fff;
}
.split-icon svg { width: 28px; height: 28px; }
.split-text h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 18ch;
}
.split-text h3.light { color: var(--cream); }
.split-text p {
  font-size: 1.06rem;
  line-height: 1.66;
  color: var(--ink-soft);
  max-width: 52ch;
}
.split-text p.light { color: rgba(245, 240, 231, 0.82); }
.split-text strong { color: var(--ink); font-weight: 700; }
.split-text p.light strong { color: var(--gold-soft); }

/* Block heading */
.block-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  color: var(--ink);
  margin-bottom: 34px;
  text-align: center;
}
.block-heading.light { color: var(--cream); }

/* Lease steps */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 92px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.32rem;
  margin: 4px 0 10px;
  color: var(--ink);
}
.step p { color: var(--ink-soft); font-size: 0.98rem; }
.step-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 700;
}

/* Service grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 154, 99, 0.5);
}
.svc-icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(199, 154, 99, 0.16), rgba(199, 154, 99, 0.06));
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.svc-icon svg { width: 27px; height: 27px; }
.svc-card h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.svc-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   AIRBNB — feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: clamp(44px, 6vw, 78px) 0 96px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 154, 99, 0.2);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(199, 154, 99, 0.45);
}
.feature-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--gold), var(--gold-deep));
  color: #fff;
}
.feature-icon svg { width: 27px; height: 27px; }
.feature-text h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--cream);
  margin-bottom: 9px;
}
.feature-text p { color: rgba(245, 240, 231, 0.8); font-size: 0.99rem; }
.feature-text strong { color: var(--gold-soft); }

/* Comparison table */
.compare { overflow-x: auto; border-radius: var(--radius); }
.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(245, 240, 231, 0.12);
  font-size: 0.97rem;
}
.compare-table thead th {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.18);
}
.compare-table thead th.col-rh { color: var(--gold-soft); }
.compare-table tbody th {
  font-weight: 600;
  color: rgba(245, 240, 231, 0.92);
}
.compare-table td.no { color: rgba(245, 240, 231, 0.55); }
.compare-table td.yes { color: #fff; font-weight: 600; }
.compare-table td.no::before  { content: "\2715"; color: #c98a7a; margin-right: 9px; }
.compare-table td.yes::before { content: "\2713"; color: var(--gold-soft); margin-right: 9px; font-weight: 700; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr { transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.05); }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background:
    radial-gradient(800px 500px at 15% 0%, rgba(var(--glow), 0.45), transparent 60%),
    linear-gradient(160deg, var(--teal-900), var(--teal-950));
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-list { list-style: none; display: grid; gap: 26px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(199, 154, 99, 0.18);
  color: var(--gold-soft);
}
.ci-icon svg { width: 23px; height: 23px; }
.contact-list h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.14rem;
  color: var(--cream);
  margin-bottom: 3px;
}
.contact-list p { color: rgba(245, 240, 231, 0.82); }
.contact-link { color: var(--gold-soft); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-link:hover { border-bottom-color: var(--gold-soft); }
.todo { font-size: 0.78rem; color: rgba(245, 240, 231, 0.45); font-style: italic; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(199, 154, 99, 0.25);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 154, 99, 0.25);
  border-radius: var(--radius);
  padding: 36px 34px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 231, 0.82);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--cream);
  background: rgba(var(--header-tint), 0.55);
  border: 1.5px solid rgba(245, 240, 231, 0.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 240, 231, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(var(--header-tint), 0.8);
}
.field select option { color: #14322f; }
.form-note { font-size: 0.92rem; min-height: 1em; text-align: center; }
.form-note.ok { color: var(--gold-soft); }
.form-note.err { color: #e7a795; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-950); color: rgba(245, 240, 231, 0.78); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 44px;
  padding-block: 60px;
  align-items: start;
}
.footer-wordmark {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(245, 240, 231, 0.35))
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
  margin-bottom: 20px;
}
.footer-logo {
  width: auto;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  margin-bottom: 18px;
}
.footer-tag {
  font-size: 0.96rem;
  color: rgba(245, 240, 231, 0.6);
  max-width: 34ch;
  line-height: 1.6;
}
.footer-links-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.footer-links { display: grid; gap: 12px; align-content: start; }
.footer-links a { font-size: 0.96rem; color: rgba(245, 240, 231, 0.78); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-meta p { font-size: 0.94rem; color: rgba(245, 240, 231, 0.62); margin-bottom: 10px; line-height: 1.55; }
.footer-bar {
  border-top: 1px solid rgba(245, 240, 231, 0.12);
  padding-block: 20px;
  font-size: 0.85rem;
  color: rgba(245, 240, 231, 0.5);
}

/* ============================================================
   INTRO ANIMATION
   ============================================================ */
body.intro-active { overflow: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 700px at 50% 44%, #ffffff 0%, #f4eee2 48%, #e7ddcb 78%, #ddd0ba 100%);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
}
.intro.done {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(8px);
  pointer-events: none;
}
.intro.hidden { display: none; }

.intro-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 24px;
}

/* golden texture layers behind the badge */
.intro-aura,
.intro-shimmer {
  position: absolute;
  top: clamp(110px, 18vw, 155px);
  left: 50%;
  width: clamp(420px, 62vw, 660px);
  height: clamp(420px, 62vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.intro-aura {
  background:
    radial-gradient(circle, rgba(216, 184, 136, 0.50) 0%, rgba(199, 154, 99, 0.22) 38%, transparent 66%);
  opacity: 0;
  animation: rhAura 2.6s var(--ease) 0.45s forwards;
}
.intro-shimmer {
  background:
    conic-gradient(from 0deg,
      rgba(243, 220, 160, 0) 0deg,
      rgba(243, 220, 160, 0.45) 40deg,
      rgba(199, 154, 99, 0) 110deg,
      rgba(243, 220, 160, 0) 200deg,
      rgba(240, 207, 140, 0.4) 290deg,
      rgba(243, 220, 160, 0) 360deg);
  -webkit-mask: radial-gradient(circle, transparent 40%, #000 50%, #000 64%, transparent 70%);
  mask: radial-gradient(circle, transparent 40%, #000 50%, #000 64%, transparent 70%);
  opacity: 0;
  animation: rhShimmerIn 1.2s var(--ease) 0.8s forwards, rhSpin 14s linear 0.8s infinite;
}

.intro-badge {
  position: relative;
  width: clamp(230px, 38vw, 330px);
  height: clamp(230px, 38vw, 330px);
  display: grid;
  place-items: center;
}
.intro-burst {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 244, 0.95) 0%, rgba(243, 220, 160, 0.55) 40%, transparent 70%);
  opacity: 0;
  z-index: 1;
  animation: rhBurst 1s var(--ease) 0.5s forwards;
}
.intro-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.55);
  filter: blur(14px) drop-shadow(0 18px 40px rgba(120, 90, 40, 0.28));
  animation: rhPop 1.25s cubic-bezier(0.18, 1.3, 0.4, 1) 0.2s forwards;
  animation-play-state: paused;
  z-index: 3;
}
.intro-logo.is-ready { animation-play-state: running; }
.intro-rings {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  z-index: 2;
  overflow: visible;
}
.intro-rings circle { transform-box: fill-box; transform-origin: center; }
.ring-gold {
  stroke-dasharray: 1024;
  stroke-dashoffset: 1024;
  filter: drop-shadow(0 1px 4px rgba(160, 118, 47, 0.45));
  animation: rhRingDraw 1.5s var(--ease) 0.95s forwards;
}
.intro-shine {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
  -webkit-mask: radial-gradient(circle, #000 62%, transparent 65%);
  mask: radial-gradient(circle, #000 62%, transparent 65%);
}
.intro-shine::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: rotate(22deg);
  animation: rhShine 1.2s var(--ease) 1.35s forwards;
}
.intro-tagline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.34em;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2vw, 1.08rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-indent: 0.32em;
}
.intro-tagline .iw {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  background: linear-gradient(100deg, #8a6322 0%, #c79a63 35%, #f0d295 50%, #b3833f 70%, #8a6322 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rhWordIn 0.7s var(--ease) forwards;
}
.intro-tagline .iw:nth-child(1) { animation-delay: 1.5s; }
.intro-tagline .iw:nth-child(2) { animation-delay: 1.62s; }
.intro-tagline .iw:nth-child(3) { animation-delay: 1.74s; }
.intro-tagline .iw:nth-child(4) { animation-delay: 1.86s; }
.intro-tagline .iw:nth-child(5) { animation-delay: 1.98s; }

@keyframes rhPop {
  0%   { opacity: 0; transform: scale(0.55); filter: blur(14px) drop-shadow(0 18px 40px rgba(120, 90, 40, 0.28)); }
  55%  { opacity: 1; }
  70%  { transform: scale(1.05); filter: blur(0) drop-shadow(0 18px 40px rgba(120, 90, 40, 0.28)); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 18px 40px rgba(120, 90, 40, 0.28)); }
}
@keyframes rhBurst {
  0%   { opacity: 0; transform: scale(0.5); }
  45%  { opacity: 0.95; }
  100% { opacity: 0; transform: scale(1.35); }
}
@keyframes rhRingDraw { to { stroke-dashoffset: 0; } }
@keyframes rhAura {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  55%  { opacity: 1; }
  100% { opacity: 0.78; transform: translate(-50%, -50%) scale(1); }
}
@keyframes rhShimmerIn { to { opacity: 0.85; } }
@keyframes rhSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes rhShine {
  from { left: -70%; }
  to   { left: 135%; }
}
@keyframes rhWordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* staggered children inside revealed grids */
.card-grid.in .svc-card,
.feature-grid.in .feature,
.steps.in .step {
  animation: rhStagger 0.7s var(--ease) both;
}
.card-grid.in .svc-card:nth-child(1){animation-delay:.05s}
.card-grid.in .svc-card:nth-child(2){animation-delay:.12s}
.card-grid.in .svc-card:nth-child(3){animation-delay:.19s}
.card-grid.in .svc-card:nth-child(4){animation-delay:.26s}
.card-grid.in .svc-card:nth-child(5){animation-delay:.33s}
.card-grid.in .svc-card:nth-child(6){animation-delay:.4s}
.feature-grid.in .feature:nth-child(1){animation-delay:.05s}
.feature-grid.in .feature:nth-child(2){animation-delay:.14s}
.feature-grid.in .feature:nth-child(3){animation-delay:.23s}
.steps.in .step:nth-child(1){animation-delay:.05s}
.steps.in .step:nth-child(3){animation-delay:.16s}
.steps.in .step:nth-child(5){animation-delay:.27s}
@keyframes rhStagger {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .intro { display: none !important; }
  body.intro-active { overflow: auto; }
  .card-chart rect { height: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; }
  .section-intro { grid-template-columns: 1fr; gap: 30px; margin-bottom: 56px; }
  .section-intro.reverse .section-head,
  .section-intro.reverse .section-media { order: 0; }
  .section-media img { min-height: 260px; max-height: 380px; }
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split.reverse .split-media,
  .split.reverse .split-text { order: 0; }
  .split-media img { height: clamp(240px, 50vw, 340px); }
  .value-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .brand-logo { width: auto; height: 60px; }
  .brand-wordmark { height: 42px; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 22px 26px;
    background: rgba(var(--header-tint), 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199, 154, 99, 0.22);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 20px 40px rgba(6, 34, 32, 0.4);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-top: 6px; }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 26px; }
  .stat-num { font-size: 1.7rem; }
  .hero-card { left: 0; width: min(260px, 80%); }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-card { position: static; width: 100%; margin-top: 16px; backdrop-filter: none; }
}
