/* =========================================================================
   GOLDEN UMRAH — Design System
   Display: Marcellus  ·  Body: Mulish
   Palette: deep emerald + metallic gold on warm ivory (theme-able)
   ========================================================================= */

/* ---- Theme: Emerald & Gold (default) ---------------------------------- */
:root,
:root[data-theme="emerald"] {
  --bg:          #F4EFE3;
  --bg-2:        #EFE8D7;
  --surface:     #FFFFFF;
  --surface-2:   #FBF7EE;
  --ink:         #1A2620;
  --ink-soft:    #5A6960;
  --ink-faint:   #8A9890;
  --primary:     #0E4233;
  --primary-2:   #0A3024;
  --primary-ink: #F4EFE3;
  --gold:        #B5904A;
  --gold-2:      #806326;
  --gold-soft:   #E4D2A6;
  --line:        #E2DAC8;
  --line-strong: #CDC2A8;
  --band:        #0E4233;
  --band-2:      #0A3327;
  --band-ink:    #EEE7D4;
  --band-soft:   #A9BCB1;
  --shadow:      18px 30px 60px -30px rgba(20, 45, 35, .35);
  --shadow-sm:   0 10px 24px -16px rgba(20, 45, 35, .45);
}

/* ---- Theme: Midnight & Gold ------------------------------------------- */
:root[data-theme="midnight"] {
  --bg:          #0B1320;
  --bg-2:        #0E1827;
  --surface:     #14202F;
  --surface-2:   #182A3C;
  --ink:         #ECE6D6;
  --ink-soft:    #9FACB6;
  --ink-faint:   #6E7E8A;
  --primary:     #C9A24B;
  --primary-2:   #B58E36;
  --primary-ink: #0B1320;
  --gold:        #D8BC76;
  --gold-2:      #C9A24B;
  --gold-soft:   #5A4E2E;
  --line:        #23344A;
  --line-strong: #324A63;
  --band:        #060D17;
  --band-2:      #0B1726;
  --band-ink:    #ECE6D6;
  --band-soft:   #8C9AA6;
  --shadow:      18px 30px 70px -28px rgba(0, 0, 0, .7);
  --shadow-sm:   0 10px 24px -14px rgba(0, 0, 0, .6);
}

/* ---- Theme: Ivory Minimal --------------------------------------------- */
:root[data-theme="ivory"] {
  --bg:          #FBFAF5;
  --bg-2:        #F5F2E9;
  --surface:     #FFFFFF;
  --surface-2:   #FBFAF5;
  --ink:         #1E2D26;
  --ink-soft:    #65736B;
  --ink-faint:   #95A199;
  --primary:     #13503C;
  --primary-2:   #0E3D2E;
  --primary-ink: #FFFFFF;
  --gold:        #A98637;
  --gold-2:      #8C6C25;
  --gold-soft:   #E8DCBE;
  --line:        #ECE7DA;
  --line-strong: #DCD4C1;
  --band:        #F0ECE0;
  --band-2:      #E9E3D3;
  --band-ink:    #1E2D26;
  --band-soft:   #6F7D74;
  --shadow:      20px 30px 60px -34px rgba(30, 45, 38, .28);
  --shadow-sm:   0 10px 22px -16px rgba(30, 45, 38, .3);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mulish", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  transition: background .4s ease, color .4s ease;
}

h1, h2, h3, h4, .display {
  font-family: "Marcellus", "Marcellus SC", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold-soft); color: var(--primary-2); }

.wrap { width: min(1240px, 92vw); margin-inline: auto; }

/* visually-hidden, still announced to screen readers */
.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; }
.wrap-narrow { width: min(960px, 92vw); margin-inline: auto; }

section { position: relative; }

/* ---- Typographic helpers ---------------------------------------------- */
.eyebrow {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.lede { color: var(--ink-soft); }

/* ---- 8-point star divider (simple geometry) --------------------------- */
.star {
  width: 1em; height: 1em;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}
.rule-star {
  display: flex; align-items: center; gap: 18px;
  color: var(--gold);
  justify-content: center;
}
.rule-star::before, .rule-star::after {
  content: ""; height: 1px; width: 90px;
  background: linear-gradient(to var(--dir, right), transparent, var(--gold));
}
.rule-star::after { --dir: left; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6em;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-gold {
  background: #8A6A2A; /* deep gold — white text passes WCAG AA (≥4.5:1) */
  color: #fff;
}
.btn-gold:hover { background: #6E5421; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-on-dark { color: var(--band-ink); border-color: rgba(255,255,255,.4); }
.btn-on-dark:hover { background: var(--band-ink); color: var(--band); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  color: var(--gold-2); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(5px); }

/* =======================================================================
   UTILITY BAR + HEADER
   ======================================================================= */
.utilbar {
  background: var(--primary-2);
  color: var(--band-soft);
  font-size: .82rem;
  letter-spacing: .02em;
}
.utilbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 42px; padding-block: 6px; white-space: nowrap; }
.utilbar a { color: var(--band-ink); }
.utilbar .u-group { display: flex; align-items: center; gap: 22px; }
.utilbar .u-item { display: inline-flex; align-items: center; gap: 8px; }
.utilbar svg { width: 15px; height: 15px; color: var(--gold); }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
header.site.scrolled { box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--bg) 96%, transparent); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 13px; flex: none; }
.brand .mark {
  width: 48px; height: 48px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.brand .mark img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.brand .mark .star { width: 20px; height: 20px; }
.brand .name { line-height: 1; max-width: 220px; }
.brand .name b { font-family: "Marcellus", serif; font-weight: 400; font-size: 1.35rem; letter-spacing: .08em; display: block; color: var(--ink); white-space: nowrap; }
.brand .name span { display: block; margin-top: 4px; font-size: .56rem; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }

nav.primary { display: flex; align-items: center; gap: 34px; }
nav.primary a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
nav.primary a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
nav.primary a:hover, nav.primary a.active { color: var(--ink); }
nav.primary a:hover::after, nav.primary a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .9rem; color: var(--ink);
}
.icon-btn-call .ring {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--primary);
  transition: background .2s, color .2s;
}
.icon-btn-call:hover .ring { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }
.icon-btn-call .ring svg { width: 17px; height: 17px; }
.icon-btn-call small { display: block; font-weight: 500; font-size: .68rem; color: var(--ink-faint); letter-spacing: .04em; text-transform: uppercase; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 8px; }
.menu-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60;
  background: color-mix(in srgb, var(--primary-2) 96%, transparent);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; padding: 28px 7vw;
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.5,0,.2,1);
  color: var(--band-ink);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav.open ~ .fab { display: none; }
.mobile-nav .m-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav a.m-link { font-family: "Marcellus", serif; font-size: 1.8rem; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--band-ink); }
.mobile-nav .m-close { background: none; border: none; color: var(--band-ink); cursor: pointer; }
.mobile-nav .m-close svg { width: 30px; height: 30px; }
.mobile-nav .m-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* =======================================================================
   HERO
   ======================================================================= */
.hero { position: relative; isolation: isolate; padding-top: 0; }
.hero .hero-media { position: absolute; inset: 0; z-index: -2; }
.hero image-slot { width: 100%; height: 100%; }
/* hero is a background — suppress empty-slot star/caption, keep the gradient */
#hero-bg .is-ph { display: none; }
.hero .scrim {
  position: absolute; inset: 0; z-index: -1;
  --scrim: .55;
  background:
    linear-gradient(180deg, rgba(8,28,21,calc(var(--scrim) + .07)) 0%, rgba(8,28,21,calc(var(--scrim) * .55)) 38%, rgba(8,28,21,calc(var(--scrim) + .11)) 100%),
    radial-gradient(120% 80% at 80% 10%, rgba(181,144,74,.18), transparent 60%);
}
.hero .wrap { position: relative; min-height: 86vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 0 220px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  max-width: 16ch;
  margin: 22px 0 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .sub { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 54ch; }
.hero .hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero .hero-cta .btn-ghost { color: #fff; }
.hero .hero-cta .btn-ghost:hover { background: #fff; color: var(--primary); }

/* package finder */
.finder {
  position: relative;
  margin-top: -86px; z-index: 5;
}
.finder .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
}
.finder .f-field { padding: 20px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.finder .f-field label { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-2); font-weight: 700; }
.finder .f-field select, .finder .f-field input {
  border: none; background: none; font-family: "Mulish", sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--ink); padding: 2px 18px 2px 0; cursor: pointer;
  appearance: none; outline: none; width: 100%;
}
.finder .f-field .with-caret { position: relative; display: block; }
.finder .f-field .with-caret::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-60%) rotate(45deg);
  width: 7px; height: 7px; border-right: 1.5px solid var(--ink-faint); border-bottom: 1.5px solid var(--ink-faint);
  pointer-events: none;
}
.finder .f-submit { display: grid; }
.finder .f-submit .btn { border-radius: 0; height: 100%; }

/* =======================================================================
   TRUST STRIP
   ======================================================================= */
.trust { border-bottom: 1px solid var(--line); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust .stat { padding: 46px 24px; text-align: center; border-right: 1px solid var(--line); }
.trust .stat:last-child { border-right: none; }
.trust .stat b { font-family: "Marcellus", serif; font-size: 2.6rem; color: var(--primary); display: block; line-height: 1; }
[data-theme="midnight"] .trust .stat b { color: var(--gold); }
.trust .stat span { display: block; margin-top: 10px; color: var(--ink-soft); font-size: .9rem; letter-spacing: .04em; }

/* =======================================================================
   WHY / FEATURES
   ======================================================================= */
.features { padding: 110px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: var(--line); }
.feature {
  background: var(--surface); padding: 40px 34px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s, transform .3s;
}
.feature:hover { background: var(--surface-2); }
.feature .ficon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  border: 1px solid var(--gold-soft); background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.feature .ficon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.4rem; }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* =======================================================================
   PACKAGES
   ======================================================================= */
.packages { padding: 30px 0 110px; }
.pkg-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.pkg-tab {
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: .86rem;
  letter-spacing: .03em; padding: 10px 22px; border-radius: 40px;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: all .2s;
}
.pkg-tab:hover { border-color: var(--gold); color: var(--ink); }
.pkg-tab.active { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
[data-theme="midnight"] .pkg-tab.active { background: var(--gold); color: var(--primary-ink); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s, border-color .3s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.pkg-card.hidden { display: none; }

.pkg-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-media image-slot { width: 100%; height: 100%; }
.pkg-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 13px; background: var(--gold); color: #1A1304;
}
.pkg-badge.lux { background: var(--primary); color: var(--primary-ink); }
.pkg-badge.eco { background: var(--surface); color: var(--primary); border: 1px solid var(--primary); }

.pkg-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pkg-name { font-size: 1.55rem; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .86rem; color: var(--ink-soft); }
.pkg-meta .m { display: inline-flex; align-items: center; gap: 7px; }
.pkg-meta svg { width: 15px; height: 15px; color: var(--gold-2); }
.pkg-stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.pkg-divide { height: 1px; background: var(--line); margin: 2px 0; }
.pkg-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.pkg-price small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-faint); }
.pkg-price b { font-family: "Marcellus", serif; font-size: 2rem; color: var(--ink); line-height: 1; }
.pkg-price b sup { font-size: .9rem; color: var(--ink-soft); }
.pkg-actions { display: flex; gap: 8px; }
.pkg-actions .btn { padding: 12px 18px; font-size: .85rem; }
.pkg-wa {
  width: 46px; flex: none; padding: 0; background: #25803a; color: #fff; border: none;
  display: grid; place-items: center; border-radius: 2px; cursor: pointer; transition: background .2s, transform .2s;
}
.pkg-wa:hover { background: #1d6a2f; transform: translateY(-2px); }
.pkg-wa svg { width: 20px; height: 20px; }

/* ---- Card layout variant: OVERLAY ------------------------------------- */
[data-cards="overlay"] .pkg-card { background: var(--primary-2); border-color: transparent; }
[data-cards="overlay"] .pkg-media { aspect-ratio: 3/4; }
[data-cards="overlay"] .pkg-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,18,.92) 8%, rgba(7,24,18,.35) 48%, rgba(7,24,18,.05) 100%);
  z-index: 1;
}
[data-cards="overlay"] .pkg-body {
  position: absolute; inset: 0; z-index: 2; justify-content: flex-end; padding: 28px;
}
[data-cards="overlay"] .pkg-name,
[data-cards="overlay"] .pkg-meta,
[data-cards="overlay"] .pkg-price b,
[data-cards="overlay"] .pkg-price b sup { color: #fff; }
[data-cards="overlay"] .pkg-meta { color: rgba(255,255,255,.82); }
[data-cards="overlay"] .pkg-divide { background: rgba(255,255,255,.18); }
[data-cards="overlay"] .pkg-card { aspect-ratio: 3/4.05; }

/* ---- Card layout variant: HORIZONTAL ---------------------------------- */
[data-cards="horizontal"] .pkg-grid { grid-template-columns: 1fr 1fr; }
[data-cards="horizontal"] .pkg-card { flex-direction: row; }
[data-cards="horizontal"] .pkg-media { aspect-ratio: auto; width: 44%; flex: none; }
[data-cards="horizontal"] .pkg-body { width: 56%; }

/* =======================================================================
   GOLDEN DIFFERENCE BAND
   ======================================================================= */
.band { background: var(--band); color: var(--band-ink); overflow: hidden; }
.band .wrap { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 72px; padding: 100px 0; }
.band .b-media { position: relative; }
.band .b-media image-slot { width: 100%; aspect-ratio: 4/5; }
.band .b-media .frame { position: absolute; inset: 16px; border: 1px solid var(--gold); pointer-events: none; z-index: 3; }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before { background: var(--gold); }
.band h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 18px 0 22px; color: var(--band-ink); }
.band p { color: var(--band-soft); font-size: 1.06rem; }
.band .b-list { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 16px; }
.band .b-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--band-ink); }
.band .b-list .star { color: var(--gold); margin-top: 7px; flex: none; width: 13px; height: 13px; }
.band .b-list b { font-weight: 700; }
.band .b-list span { color: var(--band-soft); font-weight: 400; }
[data-theme="ivory"] .band h2, [data-theme="ivory"] .band .b-list li { color: var(--ink); }

/* =======================================================================
   VISA & TRAVEL GUIDE
   ======================================================================= */
.guide { padding: 110px 0; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card {
  border: 1px solid var(--line); background: var(--surface); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color .3s, transform .3s;
}
.guide-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.guide-card .g-num { font-family: "Marcellus", serif; font-size: 1.1rem; color: var(--gold-2); }
.guide-card h3 { font-size: 1.4rem; }
.guide-card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }

/* =======================================================================
   HOW IT WORKS
   ======================================================================= */
.steps { padding: 0 0 110px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 34px 28px 34px 0; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; right: 28px; left: 80px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step .s-num {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Marcellus", serif; font-size: 1.4rem; color: var(--primary);
  border: 1px solid var(--gold); background: var(--surface); margin-bottom: 22px;
}
[data-theme="midnight"] .step .s-num { color: var(--gold); }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: .95rem; padding-right: 18px; }

/* =======================================================================
   TESTIMONIALS
   ======================================================================= */
.testi { background: var(--bg-2); padding: 110px 0; border-block: 1px solid var(--line); }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 28px; transition: transform .5s cubic-bezier(.5,0,.2,1); }
.testi-card {
  background: var(--surface); border: 1px solid var(--line); padding: 40px 38px;
  flex: 0 0 calc((100% - 56px) / 3); display: flex; flex-direction: column; gap: 20px;
}
.testi-card .quote-mark { font-family: "Marcellus", serif; font-size: 3.4rem; color: var(--gold-soft); line-height: .6; height: 26px; }
.testi-card .t-stars { color: var(--gold); letter-spacing: 3px; }
.testi-card p { font-size: 1.08rem; line-height: 1.6; color: var(--ink); flex: 1; }
.testi-card .t-who { display: flex; align-items: center; gap: 14px; }
.testi-card .t-av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; }
.testi-card .t-av image-slot { width: 100%; height: 100%; }
.testi-card .t-who b { display: block; font-weight: 700; }
.testi-card .t-who span { font-size: .85rem; color: var(--ink-soft); }
.testi-nav { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
/* 24px touch target (WCAG) via transparent border; visible dot stays small via content-box */
.testi-dot { width: 24px; height: 24px; border-radius: 50%; border: 7px solid transparent; background: var(--line-strong); background-clip: content-box; cursor: pointer; transition: all .25s; padding: 0; }
.testi-dot.active { background: var(--gold); background-clip: content-box; width: 44px; border-radius: 12px; }

/* =======================================================================
   FAQ
   ======================================================================= */
.faq { padding: 110px 0; }
.faq .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font-family: "Marcellus", serif; font-size: 1.25rem; color: var(--ink);
}
.faq-q .pm { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold); transition: transform .3s, opacity .3s; }
.faq-q .pm::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .pm::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a p { padding: 0 4px 28px; color: var(--ink-soft); max-width: 60ch; }

/* =======================================================================
   CTA BAND
   ======================================================================= */
.cta { background: var(--primary); color: var(--primary-ink); position: relative; overflow: hidden; }
.cta .glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 0%, color-mix(in srgb, var(--gold) 28%, transparent), transparent 60%); }
.cta .wrap { position: relative; text-align: center; padding: 96px 0; display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { color: var(--gold-soft); }
.cta .eyebrow::before { display: none; }
.cta h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: #fff; margin: 16px 0 18px; max-width: 18ch; }
[data-theme="midnight"] .cta h2 { color: var(--primary-ink); }
.cta p { color: color-mix(in srgb, var(--primary-ink) 78%, transparent); max-width: 52ch; font-size: 1.1rem; }
.cta .cta-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }
[data-theme="midnight"] .cta p, [data-theme="midnight"] .cta .eyebrow { color: var(--primary-2); }

/* =======================================================================
   FOOTER
   ======================================================================= */
footer.site { background: var(--band-2); color: var(--band-soft); padding: 80px 0 0; }
[data-theme="ivory"] footer.site { color: var(--ink-soft); }
footer.site .f-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid color-mix(in srgb, var(--band-ink) 14%, transparent); }
footer.site .brand .name b { color: var(--band-ink); }
footer.site .brand .name span { color: var(--gold); }
[data-theme="ivory"] footer.site .brand .name b { color: var(--ink); }
footer.site .f-about { max-width: 34ch; margin: 18px 0 22px; font-size: .95rem; }
footer.site h3 { color: var(--band-ink); font-family: "Mulish", sans-serif; font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
[data-theme="ivory"] footer.site h3 { color: var(--ink); }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
footer.site ul a { font-size: .95rem; transition: color .2s; }
footer.site ul a:hover { color: var(--gold); }
footer.site .f-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; flex-wrap: wrap; font-size: .85rem; }
footer.site .f-certs { display: flex; gap: 14px; align-items: center; }
footer.site .f-certs .cert { border: 1px solid color-mix(in srgb, var(--band-ink) 22%, transparent); padding: 6px 12px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--band-soft); }

/* =======================================================================
   FLOATING WHATSAPP
   ======================================================================= */
.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%; background: #25803a; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,128,58,.7);
  cursor: pointer; transition: transform .25s; border: none;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 30px; height: 30px; }
.fab .pulse { position: absolute; inset: 0; border-radius: 50%; background: #25803a; animation: pulse 2.4s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 70%, 100% { transform: scale(1.7); opacity: 0; } }

/* =======================================================================
   REVEAL ANIMATION
   ======================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 1040px) {
  .utilbar .u-group:first-child .u-item:nth-child(2),
  .utilbar .u-group:last-child .u-item:first-child { display: none; }
  nav.primary, header.site .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .finder .card { grid-template-columns: 1fr 1fr; }
  .finder .f-field:nth-child(2n) { border-right: none; }
  .finder .f-submit { grid-column: 1 / -1; }
  .finder .f-submit .btn { padding: 16px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  .trust .stat:nth-child(2) { border-right: none; }
  .trust .stat { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .step:not(:last-child)::after { display: none; }
  .band .wrap { grid-template-columns: 1fr; gap: 44px; padding: 70px 0; }
  .faq .wrap { grid-template-columns: 1fr; gap: 30px; }
  .guide-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc((100% - 28px) / 2); }
  footer.site .f-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .feature-grid, .pkg-grid { grid-template-columns: 1fr; }
  [data-cards="horizontal"] .pkg-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  footer.site .f-top { grid-template-columns: 1fr; }
  .hero .wrap { min-height: 78vh; padding: 90px 0 170px; }
}

/* =======================================================================
   CONTACT PAGE
   ======================================================================= */
/* page banner */
.page-hero { background: var(--primary); color: var(--primary-ink); position: relative; overflow: hidden; }
.page-hero .glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% 0%, color-mix(in srgb, var(--gold) 26%, transparent), transparent 60%); }
.page-hero .wrap { position: relative; padding: 110px 0 96px; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; margin: 18px 0 16px; }
[data-theme="midnight"] .page-hero h1 { color: var(--primary-ink); }
.page-hero p { color: color-mix(in srgb, var(--primary-ink) 80%, transparent); max-width: 56ch; font-size: 1.1rem; }
.crumbs { font-size: .82rem; letter-spacing: .04em; color: color-mix(in srgb, var(--primary-ink) 70%, transparent); margin-bottom: 8px; }
.crumbs a { color: var(--gold-soft); }
.crumbs a:hover { text-decoration: underline; }

/* contact body layout */
.contact { padding: 90px 0; }
.contact .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }

/* info column */
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 30px; }
.info-list { display: grid; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line); background: var(--surface); padding: 22px 24px;
  transition: border-color .25s, transform .25s;
}
.info-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.info-card .ic {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  border: 1px solid var(--gold-soft); background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.info-card .ic svg { width: 21px; height: 21px; }
.info-card h3 { font-family: "Mulish", sans-serif; font-weight: 800; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 6px; }
.info-card .big { font-family: "Marcellus", serif; font-size: 1.3rem; color: var(--ink); line-height: 1.25; display: block; }
.info-card a.big:hover { color: var(--gold-2); }
.info-card small { display: block; color: var(--ink-soft); font-size: .9rem; margin-top: 2px; }

/* form column */
.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--gold); box-shadow: var(--shadow);
  padding: 40px 40px 44px;
}
.contact-form h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 8px; }
.contact-form .form-sub { color: var(--ink-soft); font-size: .98rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-2); font-weight: 700; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: "Mulish", sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 2px;
  padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%), linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: .86rem; color: var(--ink-soft); }
.form-status { margin-top: 18px; font-size: .95rem; font-weight: 600; color: var(--primary); display: none; }
.form-status.show { display: block; }
[data-theme="midnight"] .form-status { color: var(--gold); }

/* map */
.map-wrap { margin-top: 18px; border: 1px solid var(--line); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(.2); }

@media (max-width: 1040px) {
  .contact .wrap { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .contact { padding: 60px 0; }
  .contact-form { padding: 28px 22px 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero .wrap { padding: 80px 0 64px; }
}

/* =======================================================================
   FAQ PAGE
   ======================================================================= */
.faq-page { padding: 80px 0 100px; }
.faq-page .wrap { display: block; width: min(900px, 92vw); margin-inline: auto; }
.faq-page .faq-list { border-top: 1px solid var(--line); }
/* category divider rows inside the single accordion list */
.faq-cat-head { padding: 40px 4px 16px; scroll-margin-top: 130px; }
.faq-cat-head:first-child { padding-top: 8px; }
.faq-cat-head .eyebrow { margin: 0; }
/* quick category jump pills */
.faq-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.faq-jump a {
  font-weight: 700; font-size: .82rem; letter-spacing: .03em;
  padding: 9px 18px; border-radius: 40px;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
  transition: all .2s;
}
.faq-jump a:hover { border-color: var(--gold); color: var(--ink); }
/* help card after the questions */
.faq-help {
  margin-top: 56px; text-align: center;
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
  background: var(--surface); padding: 44px 32px; box-shadow: var(--shadow-sm);
}
.faq-help h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.faq-help p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 26px; }
.faq-help .faq-help-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .faq-page { padding: 56px 0 70px; }
  .faq-help { padding: 32px 22px; }
}
