/* ================================================================
   GADAKI HOUSE DESIGNERS  —  style.css  v5.0
   Premium · Refined · Authoritative · Mobile-first
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:        #071A2F;
  --navy-deep:   #040F1C;
  --navy-mid:    #0B2746;
  --navy-light:  #0E3060;
  --bronze:      #B88946;
  --gold:        #D6B16A;
  --gold-light:  #E8CB8E;
  --gold-pale:   #F5E8C8;
  --ivory:       #F8F5EF;
  --warm:        #F2EDE3;
  --warm-dark:   #EAE3D7;
  --white:       #FFFFFF;
  --charcoal:    #1A2535;
  --text:        #18160F;
  --body:        #36322A;
  --muted:       #6B6358;
  --subtle:      #9B958C;
  --border:      #E0D9CF;
  --border-lt:   #EAE4DA;
  --success:     #15803D;
  --danger:      #B91C1C;
  --nav-h:       70px;
  --r-xs:        6px;
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        22px;
  --r-xl:        30px;
  --r-2xl:       40px;
  --shadow-xs:   0 1px 4px rgba(18,14,8,.06);
  --shadow-sm:   0 2px 10px rgba(18,14,8,.08);
  --shadow-md:   0 8px 28px rgba(18,14,8,.11);
  --shadow-lg:   0 20px 56px rgba(18,14,8,.15);
  --shadow-xl:   0 40px 80px rgba(18,14,8,.20);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ivory); color: var(--text); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}
img { max-width: 100%; height: auto; display: block }
a   { text-decoration: none; color: inherit }
button, input, select, textarea { font: inherit; appearance: none; -webkit-appearance: none }
ul, ol { margin: 0; padding: 0; list-style: none }
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.1; font-weight: 600; margin: 0; letter-spacing: -.015em
}
p { margin: 0 0 1.1em; color: var(--body); line-height: 1.8 }
p:last-child { margin-bottom: 0 }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container  { width: min(1160px, 92%); margin: 0 auto }
.section    { padding: 80px 0 }
.section-sm { padding: 48px 0 }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.t-display { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -.03em; font-weight: 600 }
.t-h1      { font-size: clamp(30px, 4.8vw, 56px); letter-spacing: -.025em }
.t-h2      { font-size: clamp(24px, 3.2vw, 42px); letter-spacing: -.02em }
.t-h3      { font-size: clamp(18px, 2.2vw, 26px); letter-spacing: -.01em }
.t-lead    { font-size: clamp(15px, 1.8vw, 18px); line-height: 1.78; color: var(--muted) }
.t-label   { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 12px
}
.eyebrow::before {
  content: ''; flex-shrink: 0; width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--bronze), var(--gold))
}
.eyebrow.center::before { display: none }

/* ── SECTION HEAD ───────────────────────────────────────────── */
.sec-head         { margin-bottom: 52px }
.sec-head.center  { text-align: center }
.sec-head h2      { color: var(--navy); margin-top: 6px }
.sec-head p       { margin-top: 14px; max-width: 560px; font-size: 16.5px; color: var(--muted) }
.sec-head.center p { margin-left: auto; margin-right: auto }

/* ── CHIP ───────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; padding: 5px 14px;
  border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase
}
.chip-gold  { background: rgba(214,177,106,.13); color: var(--bronze); border: 1px solid rgba(184,137,70,.28) }
.chip-white { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.22) }
.chip-navy  { background: rgba(7,26,47,.07); color: var(--navy); border: 1px solid rgba(7,26,47,.14) }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-md); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; position: relative; overflow: hidden
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s
}
.btn:hover::after { background: rgba(255,255,255,.07) }

.btn-primary {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--gold) 100%);
  color: #040F1C;
  box-shadow: 0 4px 18px rgba(184,137,70,.30), inset 0 1px 0 rgba(255,255,255,.2)
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,137,70,.42), inset 0 1px 0 rgba(255,255,255,.2) }
.btn-primary:active { transform: translateY(0) }

.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 4px 16px rgba(7,26,47,.25) }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px) }

.btn-ghost {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-xs)
}
.btn-ghost:hover { background: var(--warm); border-color: var(--warm-dark) }

.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.38); color: #fff }
.btn-outline:hover { border-color: var(--gold); color: var(--gold) }

.btn-sm   { padding: 9px 20px; font-size: 12.5px; border-radius: var(--r-sm) }
.btn-lg   { padding: 16px 36px; font-size: 15px; border-radius: var(--r-lg) }
.btn-block { width: 100%; justify-content: center }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s
}
.site-nav.solid {
  background: rgba(4,15,28,.96);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.28)
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px }

.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700;
  color: #fff; white-space: nowrap; letter-spacing: -.02em; line-height: 1
}
.nav-logo span { color: var(--gold) }
.nav-logo small { display: block; font-size: 9.5px; font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 2px }

.nav-links { display: flex; align-items: center; gap: 2px }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 7px 13px; border-radius: var(--r-sm); transition: color .2s, background .2s; letter-spacing: .01em
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07) }
.nav-cta {
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  color: var(--navy-deep) !important; font-weight: 700;
  padding: 8px 18px !important; margin-left: 8px;
  box-shadow: 0 3px 12px rgba(184,137,70,.30)
}
.nav-cta:hover { background: var(--gold-light) !important; color: #040F1C !important; transform: translateY(-1px) }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.nav-mobile-wrap { display: none; align-items: center; gap: 10px }
.hamburger {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: flex; flex-direction: column; gap: 5.5px;
  border-radius: var(--r-sm); transition: background .2s
}
.hamburger:hover { background: rgba(255,255,255,.08) }
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.9); border-radius: 2px; transition: transform .3s, opacity .3s, width .3s }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0 }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(2px) }
.drawer-overlay.show { opacity: 1; pointer-events: all }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 84vw);
  background: var(--navy-deep); z-index: 400;
  transform: translateX(100%); transition: transform .36s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 48px rgba(0,0,0,.45), -1px 0 0 rgba(255,255,255,.04)
}
.mobile-drawer.open { transform: translateX(0) }
.drawer-inner { display: flex; flex-direction: column; height: 100%; overflow-y: auto }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.06) }
.drawer-close {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65); width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; font-size: 14px; display: grid; place-items: center; transition: all .2s; flex-shrink: 0
}
.drawer-close:hover { background: rgba(255,255,255,.14); color: #fff }
.drawer-nav { padding: 12px 12px; flex: 1 }
.drawer-nav a {
  display: flex; align-items: center; gap: 11px; padding: 13px 14px;
  border-radius: var(--r-md); font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.72); transition: all .2s; margin-bottom: 3px
}
.drawer-nav a:hover { background: rgba(255,255,255,.07); color: #fff }
.drawer-cta { padding: 14px 16px 32px; border-top: 1px solid rgba(255,255,255,.06) }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 60px;
  background: var(--navy-deep);
  position: relative; overflow: hidden
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=55') center/cover no-repeat;
  opacity: .08
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 45%, rgba(184,137,70,.18) 0%, transparent 60%),
              linear-gradient(160deg, rgba(4,15,28,.0) 0%, rgba(4,15,28,.4) 100%)
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center }
.hero-copy { padding-right: 8px }
.hero-tag  { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px }
.hero h1   { color: #fff; font-size: clamp(34px, 4.8vw, 62px); margin-bottom: 20px; letter-spacing: -.03em }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400 }
.hero-desc  { font-size: 16.5px; color: rgba(255,255,255,.72); line-height: 1.8; max-width: 490px; margin-bottom: 28px }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; align-items: center }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 7px 16px;
  font-size: 12.5px; color: rgba(255,255,255,.85); letter-spacing: .01em;
  white-space: nowrap;
}
.trust-pill svg { color: var(--gold); flex-shrink: 0; width: 13px; height: 13px; min-width: 13px }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px }

/* Gold accent line */
.gold-rule { width: 48px; height: 2px; background: linear-gradient(90deg, var(--bronze), var(--gold)); border-radius: 2px; margin-bottom: 20px }

/* ── FORM CARD ──────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(184,137,70,.14);
  overflow: hidden
}
.form-head {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden
}
.form-head::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,177,106,.12) 0%, transparent 70%)
}
.form-head h2 { color: #fff; font-size: 22px; margin-bottom: 4px; position: relative }
.form-head p  { color: rgba(255,255,255,.65); font-size: 13px; margin: 0; position: relative }

.step-track  { display: flex; align-items: center; margin-top: 18px; position: relative }
.st-node {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.22); background: transparent;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55);
  transition: all .32s ease
}
.st-node.active { border-color: var(--gold); background: var(--gold); color: var(--navy-deep); box-shadow: 0 0 0 4px rgba(214,177,106,.22) }
.st-node.done   { border-color: var(--bronze); background: var(--bronze); color: #fff }
.st-line { flex: 1; height: 1px; background: rgba(255,255,255,.15); max-width: 60px; transition: background .4s }
.st-line.done { background: var(--bronze) }
.st-labels { display: flex; margin-top: 8px }
.st-lbl { flex: 1; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); transition: color .3s }
.st-lbl:first-child { text-align: left }
.st-lbl:last-child  { text-align: right }
.st-lbl.active { color: var(--gold) }
.st-lbl.done   { color: rgba(255,255,255,.60) }

.form-body { padding: 24px 26px }
.f-step    { display: none }
.f-step.active { display: block; animation: slideUp .3s ease both }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }

.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.f-field { display: flex; flex-direction: column; gap: 5px }
.f-field.full { grid-column: 1 / -1 }
.f-field label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--navy); padding-left: 1px
}
.f-field input,
.f-field select,
.f-field textarea {
  border: 1.5px solid #D8D3CB; border-radius: var(--r-sm);
  padding: 11px 13px; font-size: 14.5px; color: var(--text);
  background: #FAFAF8; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: var(--subtle) }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(184,137,70,.13);
  background: var(--white)
}
.f-field input.err, .f-field select.err {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(185,28,28,.10) !important
}
.f-errmsg { font-size: 11.5px; color: var(--danger); margin-top: 2px }
.f-field textarea { min-height: 90px; resize: vertical }

.f-nav { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-lt) }
.f-step-lbl { font-size: 11.5px; font-weight: 600; color: var(--subtle) }
.btn-fnext, .btn-fsubmit {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  color: #040F1C; border: none; border-radius: var(--r-sm);
  padding: 11px 20px; font-size: 13.5px; font-weight: 800; cursor: pointer;
  box-shadow: 0 4px 16px rgba(184,137,70,.30); transition: all .22s; letter-spacing: .01em
}
.btn-fnext:hover, .btn-fsubmit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,137,70,.42) }
.btn-fback {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--warm); color: var(--muted); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s
}
.btn-fback:hover { background: var(--warm-dark); color: var(--navy) }
.form-privacy { font-size: 11.5px; color: var(--subtle); text-align: center; padding: 0 6px 16px; line-height: 1.55 }
.hidden-hp { display: none !important }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.04)
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative; transition: background .25s
}
.stat-item:last-child { border-right: none }
.stat-item:hover { background: rgba(255,255,255,.03) }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px }
.stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62) }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px }
.svc-card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px 28px;
  border: 1px solid var(--border-lt); box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
  position: relative; overflow: hidden
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .32s ease
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(184,137,70,.2) }
.svc-card:hover::before { transform: scaleX(1) }
.svc-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--ivory), var(--warm));
  display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 18px;
  border: 1px solid var(--border-lt)
}
.svc-card h3 { color: var(--navy); font-size: 21px; margin-bottom: 10px }
.svc-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.72 }

/* ── PROCESS ────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; position: relative }
.process-grid::before {
  content: ''; position: absolute; top: 26px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent)
}
.proc-step { text-align: center; padding: 0 20px; position: relative }
.proc-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px;
  border: 1.5px solid var(--border); background: var(--white);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--bronze);
  box-shadow: var(--shadow-sm); transition: all .3s ease; position: relative
}
.proc-step:hover .proc-num {
  background: var(--gold); color: var(--navy-deep);
  border-color: var(--gold); box-shadow: 0 6px 20px rgba(184,137,70,.30)
}
.proc-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--navy); margin-bottom: 8px }
.proc-step p  { font-size: 13.5px; color: var(--muted); line-height: 1.65 }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px }
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-lt);
  position: relative; transition: transform .25s, box-shadow .25s
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md) }
.testi-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; line-height: .75;
  color: var(--gold-pale); margin-bottom: -12px; font-weight: 700; font-style: italic
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 13px }
.testi-card blockquote { font-size: 15px; line-height: 1.8; color: var(--text); font-style: italic; margin: 0 0 20px }
.testi-author { display: flex; align-items: center; gap: 12px }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold-pale) }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--navy) }
.testi-loc  { font-size: 12px; color: var(--subtle); margin-top: 2px }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start }
.blog-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border-lt); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease; text-decoration: none; color: inherit
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md) }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--warm); transition: transform .5s ease }
.blog-card:hover .blog-card-img { transform: scale(1.05) }
.blog-img-wrap { overflow: hidden }
.blog-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column }
.blog-cat  { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); margin-bottom: 8px }
.blog-body h2 { font-size: 18.5px; color: var(--navy); line-height: 1.22; margin-bottom: 9px }
.blog-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin: 0 }
.blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-lt) }
.blog-read  { font-size: 12.5px; font-weight: 700; color: var(--bronze); transition: color .2s; display: inline-flex; align-items: center; gap: 5px }
.blog-read:hover { color: var(--navy) }
.blog-time  { font-size: 11.5px; color: var(--subtle) }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-strip { background: var(--navy); padding: 56px 0 }
.nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center }
.nl-copy h2 { color: #fff; font-size: clamp(22px, 3vw, 34px); margin-bottom: 8px }
.nl-copy p  { color: rgba(255,255,255,.65); font-size: 15.5px; margin: 0; line-height: 1.7 }
.nl-form { display: flex; gap: 10px }
.nl-form input {
  flex: 1; border: 1.5px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.07); border-radius: var(--r-md);
  padding: 12px 16px; font-size: 14px; color: #fff; outline: none;
  transition: border-color .2s, background .2s
}
.nl-form input::placeholder { color: rgba(255,255,255,.50) }
.nl-form input:focus { border-color: var(--gold); background: rgba(255,255,255,.11) }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 740px; margin: 0 auto }
.faq-item { border-bottom: 1px solid var(--border) }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left; gap: 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--navy)
}
.faq-q:hover { color: var(--bronze) }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--warm); display: grid; place-items: center;
  color: var(--bronze); font-size: 16px; font-style: normal;
  transition: transform .3s, background .3s; border: 1px solid var(--border-lt)
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy-deep); border-color: var(--gold) }
.faq-ans {
  max-height: 0; overflow: hidden; font-size: 15px; color: var(--body);
  line-height: 1.82; transition: max-height .38s ease, padding-bottom .3s
}
.faq-item.open .faq-ans { max-height: 300px; padding-bottom: 20px }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 76px 0; text-align: center; position: relative; overflow: hidden
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,70,.10) 0%, transparent 70%)
}
.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative }
.cta-band p  { color: rgba(255,255,255,.65); max-width: 440px; margin: 0 auto 30px; font-size: 16px; line-height: 1.72; position: relative }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(158deg, var(--navy-deep) 0%, var(--charcoal) 100%);
  padding: calc(var(--nav-h) + 56px) 0 58px;
  position: relative; overflow: hidden
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px; background: var(--ivory); clip-path: ellipse(55% 100% at 50% 100%)
}
.page-hero h1    { color: #fff }
.page-hero .lead { color: rgba(255,255,255,.68); margin-top: 14px; max-width: 540px }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.about-img  {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-lg);
  box-shadow: 20px 20px 0 var(--gold-pale), 0 20px 60px rgba(0,0,0,.12)
}
.val-list li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 0; border-bottom: 1px solid var(--border-lt);
  font-size: 14.5px; color: var(--text); line-height: 1.6
}
.val-list li:last-child { border-bottom: none }
.val-chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  color: var(--navy-deep); display: grid; place-items: center;
  font-size: 9px; font-weight: 900
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 58px; align-items: start }
.c-detail     { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px }
.c-icon       { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--warm); border: 1px solid var(--border-lt); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0 }
.c-key        { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted) }
.c-val        { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-top: 2px }
.wa-cta {
  display: flex; align-items: center; gap: 14px;
  background: #F0FDF4; border: 1.5px solid #A7F3D0; border-radius: var(--r-md);
  padding: 16px 18px; margin-top: 24px; text-decoration: none; transition: box-shadow .25s, transform .25s
}
.wa-cta:hover { box-shadow: 0 6px 22px rgba(37,211,102,.2); transform: translateY(-1px) }
.wa-icon { width: 44px; height: 44px; background: #25D366; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0 }
.wa-icon svg { width: 22px; height: 22px; fill: #fff }
.contact-form-box { background: var(--white); border-radius: var(--r-xl); padding: 32px 30px; box-shadow: var(--shadow-md); border: 1px solid var(--border-lt) }
.contact-form-box h3 { color: var(--navy); font-size: 26px; margin-bottom: 4px }

/* ── ARTICLE ────────────────────────────────────────────────── */
.article-hero { background: linear-gradient(158deg, var(--navy-deep) 0%, var(--charcoal) 100%); padding: calc(var(--nav-h) + 56px) 0 48px }
.article-hero .blog-cat { display: block; margin-bottom: 14px }
.article-hero h1    { color: #fff; max-width: 800px; font-size: clamp(28px, 4.8vw, 52px) }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.65) }
.article-main   { background: var(--ivory); padding: 52px 0 80px }
.article-layout { display: grid; grid-template-columns: 1fr 310px; gap: 30px; align-items: start }
.article-body   { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border-lt) }
.article-feat-img { width: 100%; max-height: 480px; object-fit: cover; display: block }
.article-content  { padding: 36px 40px }
.article-content h2 { font-size: clamp(20px, 2.8vw, 28px); color: var(--navy); margin: 32px 0 13px; padding-top: 6px }
.article-content h2:first-child { margin-top: 0 }
.article-content h3 { font-size: 21px; color: var(--charcoal); margin: 24px 0 10px }
.article-content p  { font-size: 16px; line-height: 1.88; color: #222831; margin-bottom: 18px }
.article-content ul, .article-content ol { color: #222831; font-size: 15.5px; line-height: 1.8; padding-left: 22px; margin-bottom: 18px }
.article-content li { margin-bottom: 7px }
.article-content a  { color: var(--bronze); font-weight: 600; border-bottom: 1.5px solid rgba(184,137,70,.28) }
.article-content a:hover { color: var(--navy); border-bottom-color: var(--navy) }
.article-content strong { color: var(--navy); font-weight: 700 }
.article-content blockquote {
  border-left: 3px solid var(--gold); background: var(--warm);
  padding: 18px 22px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0; font-style: italic; color: var(--text); font-size: 16px; line-height: 1.78
}
.article-cta-box {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--r-lg); padding: 28px; margin: 32px 0
}
.article-cta-box h3 { color: #fff; font-size: 22px; margin-bottom: 8px }
.article-cta-box .btn-primary { color: #040F1C !important }
.article-cta-box p  { color: rgba(255,255,255,.70); font-size: 14.5px; margin-bottom: 16px; line-height: 1.7 }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 22px) }
.sb-card { background: var(--white); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-md); margin-bottom: 18px; border: 1px solid var(--border-lt) }
.sb-card h3 { color: var(--navy); font-size: 21px; margin-bottom: 9px; line-height: 1.22 }
.sb-card p  { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.65 }
.sb-related h4 { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--subtle); margin-bottom: 13px }
.rel-link { display: flex; align-items: flex-start; font-size: 13.5px; font-weight: 600; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--border-lt); line-height: 1.35; transition: color .2s; text-decoration: none }
.rel-link:last-child { border-bottom: none }
.rel-link:hover { color: var(--bronze) }

/* ── THANK YOU ──────────────────────────────────────────────── */
.ty-wrap { min-height: 80vh; display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 60px; background: var(--ivory) }
.ty-box { max-width: 580px; margin: 0 auto; text-align: center; background: var(--white); border-radius: var(--r-xl); padding: 52px 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-lt) }
.ty-icon { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, #D1FAE5, #A7F3D0); margin: 0 auto 22px; display: grid; place-items: center; font-size: 2rem }
.ty-box h1 { color: var(--navy); font-size: 36px; margin-bottom: 14px }
.ty-steps  { text-align: left; margin: 22px 0 }
.ty-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); padding: 9px 0 }
.ty-step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-pale); color: var(--navy); border: 1px solid rgba(184,137,70,.3); display: grid; place-items: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px }

/* ── PRIVACY ────────────────────────────────────────────────── */
.privacy-content { max-width: 760px }
.privacy-content h2 { color: var(--navy); font-size: 24px; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-lt) }
.privacy-content p, .privacy-content li { color: var(--body); font-size: 15.5px; line-height: 1.82 }
.privacy-content ul { padding-left: 22px; list-style: disc; margin: 10px 0 }

/* ── ALERTS ─────────────────────────────────────────────────── */
.alert { padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 14px }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA }
.alert-success { background: #F0FDF4; color: #14532D; border: 1px solid #BBF7D0 }


/* ── FORM CONTROL (contact page & general forms) ────────── */
.form-control {
  width: 100%;
  border: 1.5px solid #D8D3CB;
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text);
  background: #FAFAF8;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--subtle) }
.form-control:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(184,137,70,.13);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 100px }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6358' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px }
.form-group { margin-bottom: 16px }
.form-group label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.12);
  transition: transform .25s, box-shadow .25s
}
.wa-float:hover { transform: scale(1.09) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.55) }
.wa-float svg { width: 28px; height: 28px; fill: #fff }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease }
.reveal.in { opacity: 1; transform: none }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: #020D18; padding: 52px 0 22px }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 22px }
.f-brand .nav-logo { display: block; margin-bottom: 14px }
.f-brand p  { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.72; max-width: 220px; margin: 0 }
.f-col h4  { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px }
.f-col a   { display: block; font-size: 13.5px; color: rgba(255,255,255,.60); margin-bottom: 9px; transition: color .2s; line-height: 1.4 }
.f-col a:hover { color: var(--gold) }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s }
.footer-bottom a:hover { color: var(--gold) }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 36px }
  .hero         { min-height: auto; padding: calc(var(--nav-h) + 32px) 0 44px }
  .hero-copy    { max-width: 100% }
  .about-grid   { grid-template-columns: 1fr; gap: 36px }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px }
  .nl-inner     { grid-template-columns: 1fr; gap: 24px }
  .article-layout { grid-template-columns: 1fr }
  .article-sidebar { position: static }
  .stats-bar    { grid-template-columns: repeat(2,1fr) }
  .cards-4      { grid-template-columns: repeat(2,1fr) }
}
@media (max-width: 820px) {
  .section   { padding: 56px 0 }
  .cards-3   { grid-template-columns: 1fr }
  .blog-grid { grid-template-columns: repeat(2,1fr) }
  .testi-grid { grid-template-columns: 1fr }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 28px }
  .process-grid::before { display: none }
  .footer-grid { grid-template-columns: 1fr 1fr }
  .footer-bottom { flex-direction: column; text-align: center }
  .f-grid    { grid-template-columns: 1fr }
  .f-field.full { grid-column: 1 }
  .form-body { padding: 18px 16px }
  .f-nav     { flex-wrap: wrap }
  .f-nav .f-step-lbl { order: 3; width: 100%; text-align: center; padding-top: 6px }
  .nl-form   { flex-direction: column }
  .article-content { padding: 22px 18px }
  .ty-box    { padding: 36px 22px }
}
@media (max-width: 540px) {
  :root { --nav-h: 62px }
  .container  { width: calc(100% - 28px) }
  .blog-grid  { grid-template-columns: 1fr }
  .stats-bar  { grid-template-columns: 1fr 1fr }
  .footer-grid { grid-template-columns: 1fr; gap: 22px }
  .nav-links  { display: none }
  .nav-mobile-wrap { display: flex !important }
  .cards-4    { grid-template-columns: 1fr }
  .hero-trust { gap: 8px }
  .trust-pill { font-size: 12px; padding: 6px 11px }
}

/* Reveal stagger */
.cards-3 .svc-card:nth-child(2).reveal { transition-delay: .12s }
.cards-3 .svc-card:nth-child(3).reveal { transition-delay: .24s }
.testi-grid .testi-card:nth-child(2).reveal { transition-delay: .12s }
.testi-grid .testi-card:nth-child(3).reveal { transition-delay: .24s }
.blog-grid .blog-card:nth-child(2).reveal { transition-delay: .10s }
.blog-grid .blog-card:nth-child(3).reveal { transition-delay: .20s }

/* Smooth focus ring */
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px }

/* Selection colour */
::selection { background: rgba(184,137,70,.22); color: var(--navy-deep) }

/* Gold divider rule */
.gold-divider { border: none; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0 }

.wa-key { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #16A34A; margin-bottom: 2px }
.wa-val { font-size: 15px; font-weight: 700; color: var(--navy) }
