/* ════════════════════════════════════════════════════════════════
   HOLOMUA HOME BUYERS — Shared Design System
   Palette: sand / brown / gold · Tribal kapa pattern motif
   ════════════════════════════════════════════════════════════════ */

:root {
  --sand: #e8dfc0;
  --sand-light: #f2ead6;
  --sand-dark: #d4c89a;
  --taupe: #9e8e7a;
  --taupe-dark: #7a6a58;
  --brown: #4a3728;
  --brown-dark: #2e2018;
  --gold: #c9a96e;
  --gold-light: #e0c48a;
  --white: #faf8f2;
  --text-dark: #1a1208;
  --text-mid: #3d2e1e;
  --green: #6dbf8a;
  --red: #c97070;
  --tribal-pattern: url('/assets/tribal-pattern-tile.webp');
  --shadow-card: 0 4px 24px rgba(74, 55, 40, 0.10);
  --shadow-card-hover: 0 16px 48px rgba(74, 55, 40, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--brown-dark);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

::selection { background: var(--gold); color: var(--brown-dark); }

/* ── TRIBAL KAPA PATTERN ── */
.tribal-bg {
  position: relative;
  overflow: hidden;
}
.tribal-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tribal-pattern);
  background-repeat: repeat;
  background-size: 4000px auto;
  background-position: center top;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.section-sand.tribal-bg::before,
.section-sand-light.tribal-bg::before {
  opacity: 0.13;
  mix-blend-mode: multiply;
}
.section-brown.tribal-bg::before {
  opacity: 0.10;
  mix-blend-mode: screen;
  filter: invert(1);
}
.tribal-bg > * { position: relative; z-index: 1; }

/* Shared fixed-position pattern grid keeps the motif continuous across sections */
.section-sand.tribal-bg::before,
.section-sand-light.tribal-bg::before,
.section-brown.tribal-bg::before {
  background-attachment: fixed;
}

/* ── WAVE DIVIDERS ──
   Two pattern layers, both background-attachment: fixed, so the kapa grid
   flows unbroken through every wave transition. */
.wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider.bg-sand { background: #e8dfc0; }
.wave-divider.bg-brown { background: #2e2018; }
.wave-divider.bg-sand-light { background: #f2ead6; }
.wave-divider.tribal-bg::before {
  background-attachment: fixed;
  background-size: 4000px auto;
  background-position: center top;
}
.wave-divider.bg-sand.tribal-bg::before,
.wave-divider.bg-sand-light.tribal-bg::before {
  opacity: 0.13;
  mix-blend-mode: multiply;
}
.wave-divider.bg-brown.tribal-bg::before {
  opacity: 0.10;
  mix-blend-mode: screen;
  filter: invert(1);
}
.wave-divider.tribal-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tribal-pattern);
  background-repeat: repeat;
  background-size: 4000px auto;
  background-position: center top;
  background-attachment: fixed;
  pointer-events: none;
  z-index: 3;
  -webkit-mask: linear-gradient(to bottom, transparent 0%, transparent 35%, black 65%, black 100%);
  mask: linear-gradient(to bottom, transparent 0%, transparent 35%, black 65%, black 100%);
}
.wave-divider.to-sand.tribal-bg::after,
.wave-divider.to-sand-light.tribal-bg::after {
  opacity: 0.13;
  mix-blend-mode: multiply;
}
.wave-divider.to-brown.tribal-bg::after {
  opacity: 0.10;
  mix-blend-mode: screen;
  filter: invert(1);
}
.wave-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.wave-divider.over-hero {
  height: 80px;
  margin-top: -80px;
  z-index: 5;
  background: transparent;
}
.wave-divider.over-hero.tribal-bg::before { display: none; }
.wave-divider.over-hero.tribal-bg::after {
  -webkit-mask: linear-gradient(to bottom, transparent 0%, transparent 50%, black 70%, black 100%);
  mask: linear-gradient(to bottom, transparent 0%, transparent 50%, black 70%, black 100%);
}

/* ── ICONS (inline SVG) ── */
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.35);
  margin-bottom: 1rem;
}
.icon-badge .icon { width: 26px; height: 26px; }
.icon-badge.badge-dark {
  background: var(--brown-dark);
  color: var(--gold);
  box-shadow: 0 4px 14px rgba(46, 32, 24, 0.3);
}

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brown-dark);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(201, 169, 110, 0.55);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-secondary {
  background: rgba(232, 223, 192, 0.06);
  color: var(--sand);
  border: 2px solid rgba(232, 223, 192, 0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.12);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--brown-dark);
  color: var(--sand);
  box-shadow: 0 4px 20px rgba(46, 32, 24, 0.3);
}
.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 32, 24, 0.4);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(232, 223, 192, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: height 0.3s var(--ease), box-shadow 0.3s;
}
nav.scrolled {
  height: 74px;
  box-shadow: 0 6px 30px rgba(46, 32, 24, 0.18);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 84px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
nav.scrolled .nav-logo img { height: 62px; }
.nav-links {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta):not(.nav-phone)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--taupe-dark); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brown-dark) !important;
  font-weight: 700 !important;
}
.nav-phone .icon { color: var(--gold); width: 16px; height: 16px; }
.nav-cta {
  background: var(--brown-dark);
  color: var(--sand) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--brown) !important;
  color: var(--sand) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (homepage) ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 2rem 6rem;
  position: relative;
  overflow: hidden;
  /* Photo painted directly on the section as well, so the hero never renders
     without it even if the .hero-bg layer is unavailable. */
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat var(--brown-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat;
  animation: heroZoom 24s var(--ease) both;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 10, 6, 0.55) 0%, rgba(15, 10, 6, 0.25) 45%, rgba(46, 32, 24, 0.92) 100%);
  z-index: 1;
}
.hero > *:not(.hero-bg) { position: relative; z-index: 2; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.95);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s var(--ease) both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  line-height: 1.06;
  color: var(--white);
  max-width: 950px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(242, 234, 214, 0.92);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s var(--ease) 0.2s both;
}
.hero-badges {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.75rem;
  animation: fadeUp 0.7s var(--ease) 0.3s both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sand);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(15, 10, 6, 0.35);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.badge .icon { color: var(--gold); width: 15px; height: 15px; }
.hero-cta-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s var(--ease) 0.4s both;
}
.hero-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(232, 223, 192, 0.75);
  animation: fadeUp 0.7s var(--ease) 0.5s both;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--brown-dark);
  padding: 190px 2rem 90px;
  text-align: center;
}
.page-hero-inner { max-width: 820px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .lede {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--taupe);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--brown-dark);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.proof-item { display: flex; align-items: center; gap: 0.75rem; color: var(--sand); }
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.proof-label { font-size: 0.84rem; color: var(--taupe); line-height: 1.35; }
.proof-divider { width: 1px; height: 42px; background: rgba(201, 169, 110, 0.2); }

/* ── SECTIONS ── */
section { width: 100%; }
.section-sand { background: var(--sand); }
.section-sand-light { background: var(--sand-light); }
.section-brown { background: var(--brown-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 5.5rem 2rem; }

.section-title-wrap { text-align: center; margin-bottom: 3.75rem; }
.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-eyebrow.on-sand { color: var(--taupe-dark); }
.section-title-dark,
.section-title-light {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.section-title-dark { color: var(--sand); }
.section-title-light { color: var(--brown-dark); }
.section-lead {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  color: var(--taupe-dark);
  max-width: 620px;
  margin: 1rem auto 0;
  line-height: 1.8;
}
.section-lead.on-brown { color: var(--taupe); }

/* ── PAIN CARDS ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1020px;
  margin: 3.25rem auto 0;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--brown-dark);
  margin-bottom: 0.55rem;
}
.pain-card p { font-size: 0.88rem; color: var(--taupe-dark); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}
.step {
  text-align: center;
  padding: 2.75rem 1.75rem 2.25rem;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3); }
.step-num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brown-dark);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
}
.step .icon-badge { margin-top: 0.75rem; background: var(--brown-dark); color: var(--gold); }
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.9rem; color: var(--taupe-dark); line-height: 1.65; }
.how-cta { text-align: center; margin-top: 3.5rem; }

/* ── SITUATIONS ── */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.25rem;
  max-width: 1020px;
  margin: 0 auto 0;
}
.situation-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 1.9rem 1.4rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s;
}
.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold);
}
.situation-card .icon-badge {
  width: 50px; height: 50px;
  background: var(--sand);
  color: var(--brown);
  box-shadow: none;
  border: 1.5px solid var(--sand-dark);
  margin-bottom: 0.85rem;
}
.situation-card .icon-badge .icon { width: 22px; height: 22px; }
.situation-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.situation-card p { font-size: 0.85rem; color: var(--taupe-dark); line-height: 1.55; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  max-width: 1020px;
  margin: 0 auto;
  align-items: center;
}
.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--sand);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.why-points { display: flex; flex-direction: column; gap: 1.35rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check .icon { width: 14px; height: 14px; stroke-width: 3; }
.why-point-text h4 {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--sand);
  margin-bottom: 0.25rem;
}
.why-point-text p { font-size: 0.88rem; color: var(--taupe); line-height: 1.65; }
.why-right {
  background: linear-gradient(160deg, #3a2a1e 0%, var(--brown-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.why-right::before {
  content: '"';
  position: absolute;
  top: -18px;
  left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(201, 169, 110, 0.14);
  line-height: 1;
}
.why-right blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sand);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  position: relative;
}
.kokua-word {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.kokua-def { font-size: 0.85rem; color: var(--taupe); }
.why-attrib { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* ── COMPARISON TABLE ── */
.compare-table {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: var(--brown-dark);
  box-shadow: 0 16px 50px rgba(46, 32, 24, 0.25);
  table-layout: fixed;
}
.compare-table table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.compare-table thead tr { background: var(--brown-dark); border-bottom: 2px solid var(--gold); }
.compare-table thead th {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  width: 25%;
}
.compare-table thead th:first-child { text-align: left; width: 50%; }
.compare-table thead th.col-us {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
}
.compare-table tbody tr { border-bottom: 1px solid rgba(201, 169, 110, 0.1); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: rgba(232, 223, 192, 0.04); }
.compare-table tbody td {
  padding: 1.05rem 1.25rem;
  font-size: 0.9rem;
  color: var(--sand-dark);
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody td:first-child { text-align: left; color: var(--sand); font-weight: 500; }
.compare-table tbody td.col-us {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-light);
  font-weight: 600;
}
.cell-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.check-yes { color: var(--green); }
.check-no { color: var(--red); }
.check-yes .icon, .check-no .icon { width: 16px; height: 16px; stroke-width: 2.5; }

/* ── LEAD FORM ── */
.form-section { padding: 5.5rem 2rem 6rem; position: relative; }
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.25rem 3.25rem 2.75rem;
  border: 2px solid var(--gold);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}
.form-eyebrow {
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 0.5rem;
}
.form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.form-sub {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--taupe-dark);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-field label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
}
.form-field label .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--taupe); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--brown-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-field select {
  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='%237a6a58' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b3a48e; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}
.form-field textarea { resize: vertical; min-height: 105px; }
.form-submit {
  width: 100%;
  padding: 1.15rem;
  background: var(--brown-dark);
  color: var(--sand);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.4rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-submit:hover {
  background: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46, 32, 24, 0.3);
}
.form-submit[disabled] { opacity: 0.65; cursor: wait; transform: none; }
.form-guarantee {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--taupe-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.form-guarantee .icon { width: 14px; height: 14px; color: var(--gold); }
.form-error {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #a33;
  background: rgba(201, 112, 112, 0.1);
  border: 1px solid rgba(201, 112, 112, 0.35);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.form-or-call {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--sand-dark);
  font-size: 0.92rem;
  color: var(--taupe-dark);
}
.form-or-call a {
  color: var(--brown-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.form-or-call a:hover { color: var(--gold); }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}
.form-success p { color: var(--taupe-dark); font-family: 'Lora', serif; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201, 169, 110, 0.22); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: padding 0.2s;
}
.faq-question span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--sand);
  transition: color 0.2s;
}
.faq-question:hover span:first-child { color: var(--gold-light); }
.faq-icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  display: inline-flex;
}
.faq-icon .icon { width: 20px; height: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0.25rem 1.6rem;
  font-family: 'Lora', serif;
  font-size: 0.96rem;
  color: var(--taupe);
  line-height: 1.85;
}
.faq-answer-inner strong { color: var(--sand); }
.faq-answer-inner ol { padding-left: 1.5rem; margin-top: 0.5rem; }
.faq-answer-inner li { margin-bottom: 0.5rem; }
.faq-cta { text-align: center; margin-top: 3.5rem; }
.faq-cta p {
  color: var(--taupe);
  margin-bottom: 1.25rem;
  font-family: 'Lora', serif;
  font-style: italic;
}

/* ── ABOUT (homepage section + about page) ── */
.about-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-grid p {
  font-family: 'Lora', serif;
  font-size: 0.98rem;
  color: var(--brown);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-grid p strong, .about-grid p em { color: var(--brown-dark); }

.about-content { padding: 5.5rem 2rem; }
.about-inner { max-width: 760px; margin: 0 auto; }
.about-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  margin: 2.75rem 0 1.1rem;
}
.about-inner h2:first-child { margin-top: 0; }
.about-inner p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0 1rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.value-card p { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--taupe-dark); line-height: 1.65; margin: 0; }

/* ── CTA BAND ── */
.cta-band { padding: 5.5rem 2rem; text-align: center; }
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--sand);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p {
  font-family: 'Lora', serif;
  color: var(--taupe);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
.cta-band-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 2rem 6rem; }
.contact-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.contact-info-card {
  background: var(--brown-dark);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 16px 50px rgba(46, 32, 24, 0.3);
}
.contact-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.contact-info-card .sub {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1.9rem;
}
.contact-line { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-line .line-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line .line-icon .icon { width: 19px; height: 19px; }
.contact-line .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.15rem;
}
.contact-line a {
  color: var(--sand);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
.contact-line a:hover { color: var(--gold-light); }
.contact-line .value { color: var(--sand); font-size: 0.95rem; line-height: 1.55; }
.service-area {
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.service-area h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-area p { font-size: 0.9rem; color: var(--taupe); line-height: 1.7; }
.service-area strong { color: var(--sand); }
.contact-form-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem 2.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.contact-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: #0f0a06;
  padding: 3.5rem 2rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto 2.25rem;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-logo img { height: 96px; width: auto; display: block; margin-bottom: 0.85rem; }
.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a .icon { width: 15px; height: 15px; color: var(--gold); }
.footer-cta-link { color: var(--gold) !important; font-weight: 700; }
.footer-bottom {
  max-width: 1060px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(158, 142, 122, 0.6); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--brown-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.85rem 0.5rem;
  border-radius: 8px;
}
.sticky-cta .cta-call {
  background: transparent;
  color: var(--sand);
  border: 1.5px solid rgba(201, 169, 110, 0.55);
}
.sticky-cta .cta-offer {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
}
.sticky-cta .icon { width: 16px; height: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1rem; height: 64px; }
  nav.scrolled { height: 60px; }
  .nav-logo img { height: 50px !important; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(232, 223, 192, 0.98);
    padding: 0.5rem 2rem 1.25rem;
    gap: 0;
    border-bottom: 2px solid var(--gold);
    z-index: 99;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; width: 100%; }
  .nav-links a {
    display: flex;
    width: 100%;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    font-size: 1.05rem;
    touch-action: manipulation;
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { background: none !important; color: var(--brown) !important; padding: 1.15rem 0 !important; border-radius: 0; }

  /* iOS doesn't support background-attachment: fixed — fall back to scroll.
     With scroll attachment each element anchors the pattern to its own top,
     which breaks the shared grid at wave seams. main.js sets --pat-y on each
     .tribal-bg element to its negative document offset, re-anchoring every
     pattern layer to one continuous, document-wide grid. !important guards
     against any higher-specificity desktop rule leaking through. */
  .tribal-bg::before,
  .wave-divider.tribal-bg::before,
  .wave-divider.tribal-bg::after {
    background-attachment: scroll !important;
    background-size: 2200px auto !important;
    background-position: left var(--pat-x, 0px) top var(--pat-y, 0px) !important;
  }

  /* The lower pattern layer of each wave must be revealed by the wave's own
     curve, not a straight gradient — otherwise the pattern visibly breaks on
     whichever side the curve rises above / dips below the gradient band.
     main.js builds an SVG mask from each wave's actual path (--wave-mask);
     the gradient is only a no-JS fallback. */
  .wave-divider.tribal-bg::after {
    -webkit-mask-image: var(--wave-mask, linear-gradient(to bottom, transparent 0%, transparent 35%, black 65%, black 100%)) !important;
    mask-image: var(--wave-mask, linear-gradient(to bottom, transparent 0%, transparent 35%, black 65%, black 100%)) !important;
    -webkit-mask-size: 100% 100% !important;
    mask-size: 100% 100% !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
  }

  .hero { padding: 120px 1.25rem 5rem; min-height: 92svh; }
  .page-hero { padding: 130px 1.5rem 64px; }
  .section-pad { padding: 4rem 1.25rem; }
  .form-section { padding: 4rem 1.25rem 4.5rem; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-wrap { padding: 2.25rem 1.5rem 2rem; }
  .contact-form-card { padding: 2.25rem 1.5rem 1.85rem; }
  .contact-info-card { padding: 2rem 1.5rem; }

  /* Compare table — stacked cards */
  .compare-table {
    font-size: 0.9rem;
    border: none;
    background: transparent;
    box-shadow: none;
    max-width: 100%;
  }
  .compare-table table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td,
  .compare-table th { display: block; width: 100%; }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    background: var(--brown-dark);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
  }
  .compare-table tbody tr:nth-child(even) { background: var(--brown-dark); }
  .compare-table tbody td { padding: 0.5rem 0; text-align: left; border: none; }
  .compare-table tbody td:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    text-align: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    font-weight: 600;
  }
  .compare-table tbody td.col-us,
  .compare-table tbody td:not(:first-child) {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
  }
  .compare-table tbody td.col-us {
    background: rgba(201, 169, 110, 0.12);
    margin-bottom: 0.4rem;
  }
  .compare-table tbody td:not(.col-us):not(:first-child) {
    background: rgba(201, 112, 112, 0.08);
  }
  .compare-table tbody td.col-us::before {
    content: 'Holomua';
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
  }
  .compare-table tbody td:not(.col-us):not(:first-child)::before {
    content: 'Traditional';
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 700;
  }
  .compare-table .cell-inner { white-space: normal; gap: 0.4rem; }


  /* Static curve-shaped masks for each wave variant (mobile). Generated
     from each wave's own SVG path so the lower pattern layer is revealed
     exactly where the destination color is painted - no JS required. */
  .wave-divider.wave-m1.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C30%20C360%2C60%201080%2C0%201440%2C30%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C30%20C360%2C60%201080%2C0%201440%2C30%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }
  .wave-divider.wave-m2.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C480%2C60%20960%2C0%201440%2C30%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C480%2C60%20960%2C0%201440%2C30%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }
  .wave-divider.wave-m3.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C30%20C360%2C0%201080%2C60%201440%2C20%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C30%20C360%2C0%201080%2C60%201440%2C20%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }
  .wave-divider.wave-m4.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C40%20C480%2C0%20960%2C60%201440%2C20%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C40%20C480%2C0%20960%2C60%201440%2C20%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }
  .wave-divider.wave-m5.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C480%2C60%20960%2C0%201440%2C40%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C480%2C60%20960%2C0%201440%2C40%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }
  .wave-divider.wave-m6.tribal-bg::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C360%2C60%201080%2C0%201440%2C40%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%2061%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%2C20%20C360%2C60%201080%2C0%201440%2C40%20L1440%2C61%20L0%2C61%20Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") !important;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 70px; }
  .proof-bar { gap: 1.25rem 2rem; padding: 1.4rem 1.25rem; }
  .proof-divider { display: none; }
  .cta-band-buttons .btn-primary,
  .cta-band-buttons .btn-secondary { width: 100%; }
  .hero-cta-wrap { width: 100%; flex-direction: column; align-items: stretch; padding: 0 0.5rem; }
}
