/* ==========================================================
   Utkarsh Barasia — Fractional CFO site
   Design tokens
   ========================================================== */
:root{
  --bg:            #0a0e17;
  --bg-alt:        #0d1220;
  --bg-alt2:       #101627;
  --card:          #111826;
  --card-border:   rgba(233,214,175,0.12);
  --line:          rgba(255,255,255,0.09);
  --cream:         #f3ecdc;
  --cream-soft:    #d9d2c2;
  --muted:         #97a0b3;
  --muted-dim:     #6d7689;
  --gold:          #c9a05a;
  --gold-light:    #e7c98a;
  --wa-green:      #25d366;
  --footer-bg:     #05070c;
  --cream-bg:      #efe8d8;
  --cream-bg-text: #2a2620;

  --serif: 'Playfair Display', 'Georgia', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --dev:   'Noto Sans Devanagari', var(--sans);

  --maxw: 1320px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--cream-soft);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--serif); color: var(--cream); font-weight:500; margin:0; line-height:1.15; }
h1 em, h2 em, h3 em, h4 em{ font-style: italic; color: var(--gold-light); font-weight:500; }
p{ margin:0; }

.section-wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }
.section{ padding: 100px 0; border-top: 1px solid var(--line); }
.section-alt{ background: var(--bg-alt); }
#home{ border-top:none; }

.label{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display:flex; align-items:center; gap:14px;
  margin-bottom: 18px;
}
.label.gold{ color: var(--gold); }
.label i{ display:inline-block; width:38px; height:1px; background: var(--gold); flex:none; }
.tiny-label{ font-size:11px; letter-spacing:1.6px; text-transform:uppercase; color: var(--muted-dim); }

.accent{ color: var(--gold); }
.body-lg{ font-size: 18px; color: var(--muted); max-width: 640px; margin-bottom: 16px; }
.dev{ font-family: var(--dev); color: var(--gold-light); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 14px 24px;
  font-size: 14.5px;
  font-weight:500;
  border-radius: 3px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all .2s ease;
}
.btn .arrow{ transition: transform .2s ease; }
.btn:hover .arrow{ transform: translateX(3px); }
.btn-solid{ background: var(--cream); color:#1a1610; }
.btn-solid:hover{ background: var(--gold-light); }
.btn-ghost{ background:transparent; color: var(--cream-soft); border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-outline{ background:transparent; border-color: rgba(255,255,255,0.22); color: var(--cream); }
.btn-outline:hover{ border-color: var(--gold); }
.btn-outline-sm{ background:transparent; border:1px solid rgba(255,255,255,0.2); color: var(--cream-soft); padding:11px 18px; font-size:13.5px; }
.btn-outline-sm:hover{ border-color: var(--gold); color:var(--gold-light); }
.btn-wa-solid{ background: var(--wa-green); color:#08210f; }
.btn-wa-solid:hover{ filter: brightness(1.08); }
.btn-link{ background:none; border:none; padding:0; color: var(--gold-light); font-size:14px; display:inline-flex; align-items:center; gap:6px; }
.btn-link:hover{ color: var(--gold); }
.full-width{ width:100%; justify-content:center; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(10,14,23,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  max-width: var(--maxw); margin:0 auto; padding: 0 48px;
  height: 76px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 24px;
}
.logo{ display:flex; align-items:baseline; gap:10px; flex:none; }
.logo-en{ font-family: var(--serif); font-size:21px; color: var(--cream); }
.logo-div{ font-family: var(--dev); font-size:15px; color: var(--muted); }

.main-nav{ display:flex; align-items:center; gap:34px; font-size:14.5px; color: var(--cream-soft); }
.main-nav > a{ opacity:.85; transition: opacity .2s, color .2s; }
.main-nav > a:hover{ opacity:1; color: var(--gold-light); }

.nav-dropdown{ position:relative; }
.nav-dropdown-btn{
  background:none; border:none; color: inherit; font-size:14.5px;
  display:flex; align-items:center; gap:6px; opacity:.85;
}
.nav-dropdown-btn:hover{ opacity:1; color: var(--gold-light); }
.nav-dropdown-menu{
  position:absolute; top: calc(100% + 14px); left:50%; transform: translateX(-50%) translateY(-8px);
  background: var(--card); border:1px solid var(--card-border); border-radius:8px;
  min-width: 300px; padding: 10px;
  opacity:0; visibility:hidden; transition: all .18s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.nav-dropdown.is-open .nav-dropdown-menu{ opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a{ display:block; padding:10px 12px; font-size:13.5px; color: var(--cream-soft); border-radius:5px; }
.nav-dropdown-menu a:hover{ background: rgba(233,201,138,0.08); color: var(--gold-light); }

.nav-actions{ display:flex; align-items:center; gap:12px; flex:none; }
.nav-actions .btn{ padding:11px 18px; font-size:13.5px; }
.wa-btn{ }
/* On dark/outline buttons the WhatsApp glyph would otherwise inherit the
   plain text colour and blend in — force the brand green so it reads
   clearly as the WhatsApp icon. Solid-green WhatsApp buttons (btn-wa-solid)
   keep their dark icon for contrast against the green fill. */
.btn-outline.wa-btn svg,
.footer-wa-link svg{
  color: var(--wa-green);
  flex: none;
}

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
.hamburger span{ width:22px; height:1.5px; background: var(--cream); display:block; }

.mobile-menu{
  display:none; flex-direction:column; gap:2px;
  background: var(--bg-alt); border-top:1px solid var(--line);
  padding: 10px 24px 24px;
}
.mobile-menu a{ padding:14px 4px; border-bottom:1px solid var(--line); font-size:15px; }
.mobile-menu .btn{ margin-top:14px; justify-content:center; }
.mobile-menu.is-open{ display:flex; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{ padding: 90px 0 70px; }
.hero-grid{
  max-width: var(--maxw); margin:0 auto; padding: 0 48px;
  display:grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items:start;
}
.eyebrow{ display:flex; align-items:center; gap:16px; margin-bottom: 26px; }
.eyebrow span{ font-size:12px; letter-spacing:2.4px; text-transform:uppercase; color: var(--muted); border-bottom:1px solid var(--line); padding-bottom:10px; }
.eyebrow i{ width:44px; height:1px; background: var(--gold); }

.hero-copy h1{ font-size: clamp(38px,4.6vw,58px); letter-spacing:-0.5px; margin-bottom: 22px; }
.devanagari-line{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:22px; }
.devanagari-line .dev{ font-size:19px; }
.devanagari-line .translit{ font-size:12px; letter-spacing:2px; color: var(--muted); text-transform:uppercase; }

.hero-desc{ font-size:17px; color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.hero-desc strong{ color: var(--cream-soft); font-weight:600; }
.hero-desc em{ color: var(--gold-light); font-style:italic; }

.hero-btn-row{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:14px; }
.hero-btn-row.small{ margin-bottom: 40px; }

.hero-stats{ display:grid; grid-template-columns: repeat(4,auto); gap: 40px; padding-top: 30px; border-top:1px solid var(--line); }
.hero-stats div{ display:flex; flex-direction:column; gap:6px; }
.hero-stats strong{ font-family: var(--serif); font-size:26px; color: var(--cream); }
.hero-stats span{ font-size:11px; letter-spacing:1.4px; color: var(--muted-dim); }

.hero-photo{ position:relative; }
.hero-photo-tag{
  position:absolute; top:0; left:0; z-index:2;
  font-size:11px; letter-spacing:1.6px; text-transform:uppercase; color: var(--gold-light);
  background: var(--bg); padding:8px 14px; border:1px solid var(--card-border);
}
.hero-photo img{ width:100%; aspect-ratio: 4/4.6; object-fit:cover; border:1px solid var(--card-border); filter: grayscale(15%); }
.hero-photo-caption{
  position:relative; margin-top:-2px;
  background: var(--bg); border:1px solid var(--card-border); border-top:none;
  padding: 18px 20px; display:flex; flex-direction:column; gap:4px;
}
.hero-photo-caption strong{ font-family: var(--serif); font-size:17px; color: var(--cream); }
.hero-photo-caption .role{ font-size:11px; letter-spacing:1.4px; color: var(--muted-dim); text-transform:uppercase; margin-top:4px; }

/* ==========================================================
   SHARED: two-col / section-head
   ========================================================== */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:70px; margin-bottom: 60px; }
.two-col h2{ font-size: clamp(28px,3vw,38px); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom: 46px; flex-wrap:wrap; }
.section-head h2{ font-size: clamp(24px,2.6vw,32px); text-align:right; max-width: 560px; }
.section-head .label{ margin-bottom:0; }
.head-right{ margin-left:auto; }
.section-intro{ margin-top:14px; text-align:left; }

.numbered-list{ display:flex; flex-direction:column; gap:16px; margin-top: 26px; }
.numbered-list li{ display:flex; gap:16px; font-size:15px; color: var(--muted); border-top:1px solid var(--line); padding-top:16px; }
.numbered-list li:first-child{ border-top:none; padding-top:0; }
.numbered-list li span{ color: var(--gold); font-family: var(--serif); font-style:italic; font-size:14px; flex:none; width:20px; }

.stat-grid{ display:grid; grid-template-columns: repeat(6,1fr); border:1px solid var(--line); }
.stat-grid > div{ padding: 30px 24px; border-left:1px solid var(--line); }
.stat-grid > div:first-child{ border-left:none; }
.stat-grid strong{ display:block; font-family: var(--serif); font-size: 25px; color: var(--cream); margin-bottom:8px; }
.stat-grid em{ display:block; font-style:normal; font-size:11px; letter-spacing:1.4px; color: var(--gold); text-transform:uppercase; margin-bottom:10px; border-bottom:1px solid var(--line); padding-bottom:10px; }
.stat-grid p{ font-size:13px; color: var(--muted-dim); margin-top:10px; }

/* ==========================================================
   REGIONS
   ========================================================== */
.region-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:0; border:1px solid var(--line); }
.region-card{
  position:relative; overflow:hidden; border-left:1px solid var(--line);
  min-height: 240px; display:flex; flex-direction:column; justify-content:flex-end;
  padding: 22px 18px;
  background: linear-gradient(180deg, #0c1224 0%, #131c34 100%);
}
.region-card:first-child{ border-left:none; }
.region-illustration{ position:absolute; inset:0; opacity:.9; }
/* Real photo sits above the SVG skyline; a gradient overlay keeps the
   tag + caption text readable on top of any image. If region-photo
   fails to load (see onerror in HTML) it hides itself and the gold
   SVG skyline underneath shows instead. */
.region-photo{
  position:absolute; inset:0; z-index:1;
  width:100%; height:100%; object-fit:cover;
  filter: saturate(0.85) brightness(0.7);
}
.region-card::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(10,14,23,0.05) 0%, rgba(10,14,23,0.85) 85%);
}
.region-tag{ position:relative; z-index:2; font-size:11px; letter-spacing:1.6px; color: var(--gold-light); text-transform:uppercase; margin-bottom:8px; }
.region-card p{ position:relative; z-index:2; font-size:13.5px; color: var(--cream-soft); }

/* ==========================================================
   PILLS
   ========================================================== */
.pill-grid{ display:flex; flex-wrap:wrap; gap:14px; }
.pill{
  padding: 13px 22px; border:1px solid rgba(255,255,255,0.18); border-radius:3px;
  font-size:14.5px; color: var(--cream-soft); transition: all .2s;
}
.pill:hover{ border-color: var(--gold); color: var(--gold-light); }

/* ==========================================================
   WHO / WHEN
   ========================================================== */
.floating-tag{
  display:inline-flex; flex-direction:column; gap:2px;
  background: var(--card); border:1px solid var(--card-border);
  padding: 14px 18px; border-radius:6px; margin-bottom: 40px;
  font-size:14px; color: var(--cream);
}
.floating-tag .dev{ font-size:14px; }

.who-when-columns{ display:grid; grid-template-columns: 1.4fr 1fr; gap: 36px; margin-top: 26px; align-items:start; }

.ww-block-head{ display:flex; align-items:baseline; justify-content:space-between; gap:20px; margin-bottom: 22px; }
.ww-block-head .label{ margin-bottom:0; white-space:nowrap; }
.ww-block-note{ font-family: var(--serif); font-style:italic; font-size:13.5px; color: var(--muted-dim); white-space:nowrap; }

/* left: 2x4 bordered archetype grid */
.ww-archetype-grid{ display:grid; grid-template-columns: 1fr 1fr; border:1px solid var(--line); }
.ww-cell{ padding: 26px 30px; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.ww-cell:nth-child(-n+2){ border-top:none; }
.ww-cell:nth-child(odd){ border-left:none; }
.ww-cell h4{ font-size:17px; margin: 12px 0 8px; font-weight:500; }
.ww-cell p{ font-size:13.5px; color: var(--muted-dim); }

/* right: single-column trigger list, subtle card rows */
.ww-trigger-list{ display:flex; flex-direction:column; gap: 3px; }
.ww-trigger{ display:flex; align-items:center; gap:18px; background: var(--card); padding: 17px 20px; }
.ww-trigger p{ font-size:14.5px; color: var(--cream-soft); font-weight:500; }
.ww-trigger .ww-num{ margin-bottom:0; }

.ww-num{ display:block; font-family: var(--serif); font-style:italic; color: var(--gold); font-size:12.5px; flex:none; }
.ww-cell .ww-num{ margin-bottom: 0; }

.inline-cta{ display:inline-flex; gap:8px; align-items:center; margin-top:40px; color: var(--gold-light); font-size:15px; border-bottom:1px solid var(--gold); padding-bottom:4px; }
.inline-cta:hover{ color: var(--gold); }

/* ==========================================================
   PRACTICE — head, jump tabs, always-expanded pillar list
   ========================================================== */
.practice-head{ display:grid; grid-template-columns: 320px 1fr; gap: 60px; margin-bottom: 46px; }
.practice-head-left .label{ margin-bottom: 16px; }
.practice-head-left .body-lg{ max-width: 300px; }
.practice-head-right h2{ font-size: clamp(26px,3vw,36px); margin-bottom: 16px; }
.practice-head-right .body-lg{ max-width: 620px; }

.pillar-tabs{ display:grid; grid-template-columns: repeat(6,1fr); border:1px solid var(--line); margin-bottom: 2px; }
.pillar-tab{
  text-align:left; background:none; border:none; border-left:1px solid var(--line);
  padding: 22px 22px 24px; color:inherit; cursor:pointer; transition: background .2s;
}
.pillar-tab:first-child{ border-left:none; }
.pillar-tab:hover{ background: rgba(233,201,138,0.06); }
.pillar-tab-num{ display:block; font-family: var(--serif); font-style:italic; color: var(--gold); font-size:12px; margin-bottom: 16px; }
.pillar-tab-title{ display:block; font-family: var(--serif); font-size: 15px; line-height:1.35; color: var(--cream-soft); }
.pillar-tab:hover .pillar-tab-title{ color: var(--gold-light); }

.pillar-list{ border:1px solid var(--line); border-top:none; }
.pillar-row{
  display:grid; grid-template-columns: 64px 1.5fr 1fr 1fr;
  gap: 10px 40px; align-items:start;
  padding: 44px 32px; border-top:1px solid var(--line);
  scroll-margin-top: 110px;
  transition: background .5s ease;
}
.pillar-num{ font-family: var(--serif); font-style:italic; font-size: 24px; color: var(--cream-soft); opacity:.6; }
.pillar-row h3{ font-size: clamp(22px,2.4vw,28px); align-self:center; font-weight:500; }
.pillar-row ul{ display:flex; flex-direction:column; gap:12px; padding-top: 4px; }
.pillar-row li{ font-size:14.5px; color: var(--muted); position:relative; padding-left:16px; }
.pillar-row li::before{ content:'·'; position:absolute; left:0; color: var(--gold); }

/* highlight briefly when a jump-tab target lands */
.pillar-row.is-target-flash{ background: rgba(233,201,138,0.05); }

/* ==========================================================
   ENGAGEMENT MODEL
   ========================================================== */
.steps-grid{ display:grid; grid-template-columns: repeat(5,1fr); border:1px solid var(--line); }
.step-card{ padding: 30px 22px; border-left:1px solid var(--line); }
.step-card:first-child{ border-left:none; }
.step-card span{ display:block; font-family: var(--serif); font-style:italic; color: var(--gold); font-size:14px; margin-bottom:16px; }
.step-card h4{ font-size:18px; margin-bottom:10px; }
.step-card p{ font-size:13.5px; color: var(--muted-dim); }

/* ==========================================================
   CASE / ENGAGEMENTS
   ========================================================== */
.case-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.case-card{ border:1px solid var(--card-border); background: var(--card); display:flex; flex-direction:column; }
.case-card img{ width:100%; height:200px; object-fit:cover; filter: saturate(0.7) brightness(0.85); }
.case-body{ padding: 26px 24px; display:flex; flex-direction:column; flex:1; }
.case-tag{ font-size:10.5px; letter-spacing:1.2px; color: var(--muted-dim); text-transform:uppercase; margin-bottom:14px; }
.case-body h3{ font-size:30px; margin-bottom:4px; }
.case-sub{ font-size:11px; letter-spacing:1.2px; color: var(--gold); text-transform:uppercase; border-bottom:1px solid var(--line); padding-bottom:12px; margin-bottom:12px; }
.case-note{ font-size:13.5px; color: var(--muted-dim); margin-bottom:16px; }
.case-body h4{ font-size:18px; margin-bottom:12px; }
.case-body p:not(.case-tag):not(.case-sub):not(.case-note){ font-size:14px; color: var(--muted); margin-bottom:22px; flex:1; }
.case-download{ align-self:flex-start; }

/* ==========================================================
   PROTOTYPES
   ========================================================== */
.proto-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.proto-card{ border:1px solid var(--card-border); background: var(--card); }
.proto-card img{ width:100%; height:230px; object-fit:cover; }
.proto-body{ padding: 26px 26px 28px; }
.proto-live{ font-family: var(--serif); font-size:20px; color: var(--cream); margin-bottom:10px; }
.proto-live span{ font-family: var(--sans); font-size:10px; letter-spacing:1.2px; color: var(--gold); text-transform:uppercase; vertical-align:middle; margin-left:8px; border:1px solid var(--gold); padding:3px 8px; border-radius:20px; }
.proto-body h4{ font-size:19px; margin: 10px 0 12px; }
.proto-body p:not(.case-tag):not(.case-note){ font-size:14px; color: var(--muted); margin-bottom:22px; }
.proto-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; border-top:1px solid var(--line); padding-top:18px; flex-wrap:wrap; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.quote-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
blockquote{ margin:0; border:1px solid var(--card-border); background: var(--card); padding: 30px 26px; display:flex; flex-direction:column; gap:18px; }
.quote-mark{ font-family: var(--serif); font-size:44px; color: var(--gold); line-height:1; }
blockquote p{ font-size:15px; color: var(--cream-soft); line-height:1.7; flex:1; }
blockquote footer{ display:flex; flex-direction:column; gap:4px; border-top:1px solid var(--line); padding-top:14px; }
blockquote footer strong{ font-size:14px; color: var(--cream); }
blockquote footer span{ font-size:10.5px; letter-spacing:1.2px; color: var(--muted-dim); text-transform:uppercase; }

/* ==========================================================
   INSIGHTS
   ========================================================== */
.insights{ background: var(--cream-bg); color: var(--cream-bg-text); }
.insights .label{ color:#6b6252; }
.insights .label.gold{ color:#9c7a3b; }
.insights h2, .insights h3, .insights h4{ color:#211d16; }
.insights h2 em, .insights h3 em{ color:#8a6a2e; }
.insights .body-lg{ color:#5c554a; }
.insights .section-intro{ text-align:right; margin-left:auto; }

.insight-feature{ display:grid; grid-template-columns: 1.2fr 1fr; gap:0; border:1px solid rgba(0,0,0,0.1); margin-bottom:50px; background:#fff; }
.insight-feature img{ width:100%; height:100%; object-fit:cover; min-height:280px; }
.insight-feature-body{ padding: 40px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.insight-feature-body h3{ font-size:24px; }
.insight-feature-body p{ color:#5c554a; font-size:14.5px; }
.insight-feature-body .case-tag{ color:#9c7a3b; }

.insight-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.insight-card{ background:#fff; border:1px solid rgba(0,0,0,0.08); cursor:pointer; transition: transform .2s; }
.insight-card:hover{ transform: translateY(-4px); }
.insight-card img{ width:100%; height:150px; object-fit:cover; }
.insight-card .case-tag{ color:#9c7a3b; margin: 16px 18px 8px; }
.insight-card h4{ font-size:16px; margin: 0 18px 16px; line-height:1.35; }
.insight-foot{ display:flex; justify-content:space-between; align-items:center; padding: 14px 18px; border-top:1px solid rgba(0,0,0,0.08); font-size:11px; letter-spacing:1px; color:#8a8272; text-transform:uppercase; }
.insight-foot .arrow{ color:#9c7a3b; font-size:14px; }

/* ==========================================================
   CONTACT / BOOKING
   ========================================================== */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; border-top:1px solid var(--line); padding-top:44px; margin-bottom: 30px; }
.direct-box{ display:flex; flex-direction:column; gap:6px; border:1px solid var(--card-border); background: var(--card); padding:18px 20px; margin-bottom:14px; border-radius:4px; }
.direct-box a{ font-size:15.5px; color: var(--cream-soft); display:flex; align-items:center; gap:8px; }
.direct-box a:hover{ color: var(--gold-light); }
.contact-col h3{ font-size:22px; margin-bottom:14px; }
.contact-col p{ font-size:14.5px; color: var(--muted); margin-bottom:18px; }
.phone-display{ font-family: var(--serif); font-size:18px !important; color: var(--cream) !important; margin-bottom:18px !important; }
.contact-footnote{ font-size:11px; letter-spacing:1px; color: var(--muted-dim); text-transform:uppercase; border-top:1px solid var(--line); padding-top:24px; margin-bottom:70px; }
.booking-head{ margin-bottom:34px; }
.booking-head h2{ text-align:left; font-size:clamp(22px,2.4vw,28px); }

/* ---- booker widget ---- */
.booker{ background:#fff; color:#1c1c1c; border-radius:10px; overflow:hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.booker-step{ display:grid; grid-template-columns: 260px 1fr 300px; min-height: 560px; }
.booker-left{ padding: 34px 28px; border-right:1px solid #e6e6e6; }
.booker-host{ font-size:13px; color:#666; margin-bottom:6px; }
.booker-left h3{ font-family: var(--serif); font-size:22px; color:#141414; margin-bottom:18px; }
.booker-meta{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:#444; margin-bottom:14px; }
.duration-toggle{ gap:8px; }
.dur-btn{ background:#f2f2f2; border:1px solid #ddd; border-radius:20px; padding:6px 14px; font-size:12.5px; color:#444; }
.dur-btn.is-active{ background:#141414; color:#fff; border-color:#141414; }

.booker-cal{ padding: 34px 30px; border-right:1px solid #e6e6e6; }
.booker-cal h4{ font-size:17px; color:#141414; margin-bottom:20px; }
.cal-nav{ display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:16px; font-size:14.5px; font-weight:600; color:#141414; }
.cal-nav button{ background:none; border:none; font-size:20px; color:#141414; width:28px; height:28px; border-radius:50%; }
.cal-nav button:hover{ background:#f0f0f0; }
.cal-weekdays{ display:grid; grid-template-columns: repeat(7,1fr); text-align:center; font-size:11px; color:#999; margin-bottom:8px; }
.cal-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:4px; }
.cal-day{ aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:13.5px; border-radius:50%; color:#333; background:none; border:none; }
.cal-day.is-disabled{ color:#ccc; cursor:default; pointer-events:none; }
.cal-day.is-blank{ visibility:hidden; }
.cal-day.is-available{ background:#eaf1ff; color:#1c53d6; font-weight:600; cursor:pointer; }
.cal-day.is-available:hover{ background:#d6e4ff; }
.cal-day.is-selected{ background:#1c53d6 !important; color:#fff !important; }
.tz-row{ display:flex; align-items:center; gap:8px; margin-top:22px; font-size:12.5px; color:#555; }

.booker-slots{ padding: 34px 26px; display:flex; flex-direction:column; }
#selectedDateLabel{ font-size:14.5px; font-weight:600; color:#141414; margin-bottom:16px; display:block; }
.slot-list{ display:flex; flex-direction:column; gap:10px; overflow-y:auto; max-height:460px; padding-right:6px; }
.slot-btn{ border:1px solid #1c53d6; color:#1c53d6; background:#fff; padding:12px; border-radius:6px; font-size:14px; font-weight:600; text-align:center; }
.slot-btn:hover{ background:#eaf1ff; }
.slot-empty{ font-size:13.5px; color:#888; }

.back-link{ background:none; border:none; color:#1c53d6; font-size:13.5px; padding: 24px 0 0 28px; }
.booker-summary{ padding: 6px 28px 10px; font-size:14px; color:#333; }
#bookingForm{ padding: 10px 28px 30px; max-width:520px; }
#bookingForm label{ display:block; font-size:13px; font-weight:600; color:#333; margin-bottom:16px; }
#bookingForm input, #bookingForm textarea{
  width:100%; margin-top:8px; padding:11px 12px; border:1px solid #ccc; border-radius:5px; font-size:14.5px; font-family:inherit; color:#1c1c1c;
}
#bookingForm input:focus, #bookingForm textarea:focus{ outline:2px solid #1c53d6; border-color:#1c53d6; }
.policy-note{ font-size:11.5px; color:#888; margin-bottom:18px; }
.policy-note a{ color:#1c53d6; text-decoration:underline; }
#bookingForm .btn-solid{ background:#141414; color:#fff; }
#bookingForm .btn-solid:hover{ background:#1c53d6; }

.confirm-box{ padding: 60px 40px; text-align:center; max-width:520px; margin:0 auto; }
.confirm-check{ width:56px; height:56px; border-radius:50%; background:#e6f7ec; color:#1f9d4c; font-size:26px; display:flex; align-items:center; justify-content:center; margin:0 auto 22px; }
.confirm-box h3{ font-family: var(--serif); font-size:24px; color:#141414; margin-bottom:14px; }
.confirm-box p{ font-size:14.5px; color:#444; margin-bottom:26px; line-height:1.7; }
.confirm-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:22px; }
.confirm-actions .btn-outline-sm{ border-color:#ccc; color:#333; }
#bookAnother{ color:#1c53d6; }

.booker-footer{ display:flex; gap:20px; padding: 16px 28px; border-top:1px solid #eee; font-size:12px; color:#777; }
.booker-footer a:hover{ color:#1c53d6; text-decoration:underline; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background: var(--footer-bg); padding: 80px 0 0; border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap:60px; padding-bottom:60px; }
.footer-dev{ font-size:16px; margin-bottom:16px; }
.footer-brand h3{ font-size: clamp(22px,2.4vw,30px); max-width:480px; }
.footer-col{ display:flex; flex-direction:column; gap:14px; }
.footer-col .tiny-label{ margin-bottom:8px; }
.footer-col a{ font-size:14.5px; color: var(--muted); }
.footer-wa-link{ display:inline-flex; align-items:center; gap:8px; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 24px 0; border-top:1px solid var(--line); font-size:12.5px; color: var(--muted-dim); flex-wrap:wrap; gap:12px; }

/* ==========================================================
   SCROLL COMPANION (sticky photo + caption bubble)
   ========================================================== */
.scroll-companion{
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.scroll-companion.is-visible{
  opacity: 1;
  visibility: visible;
}
.sc-photo{
  width: 64px; height: 64px; flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 14px 34px rgba(0,0,0,0.55);
  background: var(--bg);
}
.sc-photo img{ width:100%; height:100%; object-fit:cover; }
.sc-bubble{
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 190px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.5);
}
.sc-bubble::after{
  content:'';
  position: absolute; right: -6px; top: 50%;
  width: 12px; height: 12px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--card);
  border-right: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.sc-dev{ font-family: var(--dev); color: var(--gold-light); font-size: 13.5px; transition: opacity .25s ease, transform .25s ease; }
.sc-en{ font-size: 12px; color: var(--cream-soft); transition: opacity .25s ease, transform .25s ease; }
.sc-bubble.is-changing .sc-dev,
.sc-bubble.is-changing .sc-en{ opacity: 0; transform: translateY(5px); }

@media (max-width: 1200px){
  .scroll-companion{ display:none; } /* keeps narrower viewports free of overlap with content */
}
@media (prefers-reduced-motion: reduce){
  .scroll-companion{ transition:none; }
  .sc-dev, .sc-en{ transition:none; }
}

/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
.wa-float{
  position: fixed; left: 28px; bottom: 28px; z-index: 600;
  width: 58px; height:58px; border-radius:50%;
  background: var(--wa-green); color:#08210f;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================
   MODAL
   ========================================================== */
.modal-overlay{
  position:fixed; inset:0; background: rgba(5,7,12,0.78); z-index:900;
  display:none; align-items:center; justify-content:center; padding: 24px;
}
.modal-overlay.is-open{ display:flex; }
.modal-box{
  background: var(--card); border:1px solid var(--card-border); border-radius:10px;
  max-width: 620px; width:100%; max-height:82vh; overflow-y:auto;
  padding: 44px 40px; position:relative;
}
.modal-close{ position:absolute; top:16px; right:20px; background:none; border:none; color: var(--muted); font-size:26px; line-height:1; }
.modal-close:hover{ color: var(--gold-light); }
.modal-box h3{ font-size:24px; margin-bottom:16px; padding-right:20px; }
.modal-box p{ font-size:15px; color: var(--muted); line-height:1.8; }
.modal-box .case-tag{ margin-bottom:14px; }

/* ==========================================================
   REVEAL ANIMATION
   ========================================================== */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .wa-float{ animation:none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; gap:30px; }
  .practice-head{ grid-template-columns:1fr; gap:24px; }
  .pillar-tabs{ grid-template-columns: repeat(3,1fr); }
  .pillar-tab:nth-child(3n+1){ border-left:none; }
  .pillar-tab:nth-child(n+4){ border-top:1px solid var(--line); }
  .pillar-row{ grid-template-columns: 50px 1fr 1fr; }
  .pillar-row ul:last-child{ grid-column: 2 / -1; }
  .stat-grid{ grid-template-columns: repeat(3,1fr); }
  .stat-grid > div:nth-child(3n+1){ border-left:none; }
  .stat-grid > div{ border-top:1px solid var(--line); }
  .stat-grid > div:nth-child(-n+3){ border-top:none; }
  .region-grid{ grid-template-columns: repeat(3,1fr); }
  .region-card:nth-child(3n+1){ border-left:none; }
  .who-when-columns{ grid-template-columns:1fr; gap:36px; }
  .steps-grid{ grid-template-columns: repeat(3,1fr); }
  .step-card:nth-child(3n+1){ border-left:none; }
  .step-card{ border-top:1px solid var(--line); }
  .case-grid{ grid-template-columns: repeat(2,1fr); }
  .proto-grid{ grid-template-columns:1fr; }
  .quote-grid{ grid-template-columns: repeat(2,1fr); }
  .insight-grid{ grid-template-columns: repeat(2,1fr); }
  .insight-feature{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr 1fr; }
  .booker-step{ grid-template-columns: 1fr; }
  .booker-left, .booker-cal{ border-right:none; border-bottom:1px solid #eee; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1/-1; }
}

@media (max-width: 760px){
  .section-wrap{ padding: 0 24px; }
  .nav-wrap{ padding: 0 20px; }
  .section{ padding: 64px 0; }
  .main-nav, .nav-actions{ display:none; }
  .hamburger{ display:flex; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .section-head h2{ text-align:left; }
  .stat-grid{ grid-template-columns: repeat(2,1fr); }
  .stat-grid > div:nth-child(2n+1){ border-left:none; }
  .stat-grid > div:nth-child(-n+2){ border-top:none; }
  .region-grid{ grid-template-columns: repeat(2,1fr); }
  .region-card:nth-child(2n+1){ border-left:none; }
  .steps-grid{ grid-template-columns:1fr; }
  .step-card{ border-left:none !important; border-top:1px solid var(--line); }
  .step-card:first-child{ border-top:none; }
  .case-grid{ grid-template-columns:1fr; }
  .quote-grid{ grid-template-columns:1fr; }
  .insight-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .acc-body-inner{ grid-template-columns:1fr; padding-left:30px; }
  .practice-head{ grid-template-columns:1fr; gap:20px; }
  .pillar-tabs{ grid-template-columns: repeat(2,1fr); }
  .pillar-tab{ border-left:none !important; border-top:1px solid var(--line); }
  .pillar-tab:nth-child(-n+2){ border-top:none; }
  .pillar-row{ grid-template-columns:1fr; gap:14px; padding:32px 22px; }
  .pillar-num{ font-size:20px; }
  .pillar-row ul{ padding-top:0; }
  .ww-archetype-grid{ grid-template-columns:1fr; }
  .ww-cell{ border-left:none !important; border-top:1px solid var(--line); }
  .ww-cell:first-child{ border-top:none; }
  .ww-block-head{ flex-direction:column; align-items:flex-start; gap:6px; }
  .wa-float{ width:52px; height:52px; left:18px; bottom:18px; }
  
}