:root{
  --ink:#0B0C0A;
  --surface:#14150F;
  --surface-2:#191A13;
  --line:#292B1F;
  --line-soft:#1E1F17;
  --amber:#C08A2E;
  --amber-bright:#DDAE55;
  --emerald:#1F5C46;
  --emerald-bright:#3A8F6C;
  --paper:#F1EEE3;
  --muted:#948E7C;
  --muted-2:#5C5748;
  --max:1180px;
  --serif:'Fraunces', serif;
  --sans:'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

::selection{ background:var(--amber); color:var(--ink); }
:focus-visible{ outline:2px solid var(--amber); outline-offset:3px; }

.eyebrow{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--amber);
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:20px; height:1px;
  background:var(--amber);
  display:inline-block;
}
.eyebrow.em{ color:var(--emerald-bright); }
.eyebrow.em::before{ background:var(--emerald-bright); }
h1,h2,h3{ font-family:var(--serif); font-weight:500; letter-spacing:-0.01em; }
.italic{ font-style:italic; font-weight:400; color:var(--amber-bright); }

/* ---------- NAV ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(11,12,10,0.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease;
}
header.scrolled{ border-bottom-color:var(--line-soft); }
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 32px; max-width:var(--max); margin:0 auto;
}
.logo{ font-family:var(--serif); font-size:21px; letter-spacing:0.01em; font-weight:500; display:flex; align-items:center; }
.logo img{ height:32px; width:auto; display:block; }
.logo span{ color:var(--amber); }
.nav-links{ display:flex; gap:32px; align-items:center; }
.nav-links a{
  font-size:14px; color:var(--paper); transition:color .2s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--amber-bright); }
.btn{
  font-family:var(--sans); font-size:14px; font-weight:500;
  padding:12px 24px; border-radius:100px;
  display:inline-flex; align-items:center; gap:8px;
  transition:all .25s ease; cursor:pointer; border:1px solid transparent;
  white-space:nowrap;
}
.btn-gold{ background:var(--amber); color:var(--ink); }
.btn-gold:hover{ background:var(--amber-bright); transform:translateY(-1px); }
.btn-ghost{ border-color:var(--line); color:var(--paper); background:transparent; }
.btn-ghost:hover{ border-color:var(--emerald-bright); color:var(--emerald-bright); }
.nav-cta{ display:flex; align-items:center; gap:14px; }

.mobile-strip{
  display:none;
  gap:8px; overflow-x:auto; -webkit-overflow-scrolling:touch;
  padding:0 20px 14px; scrollbar-width:none;
}
.mobile-strip::-webkit-scrollbar{ display:none; }
.mobile-strip a{
  flex-shrink:0; font-size:13px; color:var(--paper);
  padding:8px 16px; border:1px solid var(--line); border-radius:100px;
  white-space:nowrap; transition:all .2s ease;
}
.mobile-strip a:active, .mobile-strip a:hover, .mobile-strip a.active{ color:var(--amber-bright); border-color:var(--amber); }

@media (max-width:940px){
  .nav-links{ display:none; }
  .nav-cta .btn-ghost{ display:none; }
  nav{ padding:16px 20px 12px; }
  .mobile-strip{ display:flex; }
}

/* ---------- HERO ---------- */
.hero{
  padding:172px 0 110px;
  position:relative;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(11,12,10,0.15) 0%, var(--ink) 88%);
}
.hero-bg.em{ background:linear-gradient(180deg, rgba(11,12,10,0.15) 0%, var(--ink) 88%); }
.hero-canvas{
  position:absolute; inset:0; z-index:-2; width:100%; height:100%; display:block;
}
.hero::before{
  content:'';
  position:absolute; top:-20%; right:-10%;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(192,138,46,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center;
}
@media (max-width:940px){ .hero-grid{ grid-template-columns:1fr; gap:56px; } }

.hero h1{
  font-size:clamp(34px, 4.6vw, 54px);
  line-height:1.12;
  margin:22px 0 24px;
}
.hero p.sub{
  font-size:18px; color:var(--muted); max-width:500px; margin-bottom:36px; line-height:1.7;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.btn-lg{ padding:16px 30px; font-size:15px; }

/* page hero illustration frame (subpages) */
.hero-illustration{
  background:var(--surface); border:1px solid var(--line); border-radius:20px;
  aspect-ratio:4/3.4; display:flex; align-items:center; justify-content:center; padding:24px;
}
.hero-illustration svg{ width:100%; height:100%; }

/* breadcrumb */
.crumb{ font-size:13px; color:var(--muted-2); margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.crumb a{ color:var(--muted); transition:color .2s ease; }
.crumb a:hover{ color:var(--amber-bright); }

/* automation mockup */
.mock{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:8px;
  position:relative;
}
.mock-toggle{
  display:flex; justify-content:center; gap:6px; padding:14px 0 18px;
}
.mock-toggle button{
  font-family:var(--sans); font-size:12px; letter-spacing:0.06em; text-transform:uppercase;
  padding:8px 18px; border-radius:100px; border:1px solid var(--line);
  background:transparent; color:var(--muted); cursor:pointer; transition:all .2s ease;
}
.mock-toggle button.active{ background:var(--amber); color:var(--ink); border-color:var(--amber); font-weight:500; }
.mock-card{
  background:var(--surface-2);
  border-radius:14px;
  padding:28px 26px;
  min-height:290px;
}
.mock-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:20px; }
.mock-head .label{ font-family:var(--serif); font-size:17px; }
.mock-head .time{ font-family:var(--serif); font-style:italic; font-size:22px; transition:color .3s ease; }
.mock-head .time.bad{ color:#8a5a3a; }
.mock-head .time.good{ color:var(--emerald-bright); }
.mock-task{
  display:flex; align-items:center; gap:12px; padding:12px 0; border-top:1px solid var(--line);
  font-size:13.5px; color:var(--muted);
}
.mock-task:first-of-type{ border-top:none; }
.mock-dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; transition:background .3s ease; }
.mock-dot.bad{ background:#8a5a3a; }
.mock-dot.good{ background:var(--emerald-bright); }
.mock-badge{
  font-size:11px; letter-spacing:0.05em; text-transform:uppercase; color:var(--muted-2);
  border:1px solid var(--line); border-radius:100px; padding:4px 10px; display:inline-block; margin-top:18px;
  transition:all .3s ease;
}
.mock-badge.on{ color:var(--emerald-bright); border-color:var(--emerald); }

/* ---------- STATS STRIP ---------- */
.stats{
  border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  padding:40px 0;
}
.stats-row{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:28px; }
.stat{ text-align:left; }
.stat .num{ font-family:var(--serif); font-size:34px; color:var(--amber-bright); }
.stat .label{ font-size:13px; color:var(--muted); margin-top:4px; }

/* ---------- SECTION SHELL ---------- */
section{ padding:120px 0; }
@media (max-width:640px){ section{ padding:80px 0; } }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:18px; line-height:1.18; }
.section-head p{ color:var(--muted); font-size:16px; margin-top:18px; max-width:560px; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

/* ---------- PROBLEM ---------- */
.problem-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center; }
@media (max-width:860px){ .problem-grid{ grid-template-columns:1fr; } }
.problem-copy p{ font-size:18px; color:var(--muted); line-height:1.85; margin-bottom:20px; }
.problem-copy strong{ color:var(--paper); font-weight:500; }
.flow-compare{ margin-top:36px; display:flex; flex-direction:column; gap:14px; }
.flow-row{ display:flex; align-items:center; flex-wrap:wrap; gap:0; }
.flow-tag{ font-size:11px; letter-spacing:0.06em; text-transform:uppercase; width:64px; flex-shrink:0; color:var(--muted-2); }
.flow-row.after .flow-tag{ color:var(--emerald-bright); }
.flow-row .step{ font-family:var(--serif); font-style:italic; font-size:14.5px; padding:6px 0; }
.flow-row.before .step{ color:var(--muted); }
.flow-row.after .step{ color:var(--emerald-bright); }
.flow-row .arrow{ color:var(--line); margin:0 10px; font-family:var(--sans); font-style:normal; }
.problem-img{
  border-radius:18px; overflow:hidden; border:1px solid var(--line); aspect-ratio:4/5;
  background:var(--surface); display:flex; align-items:center; justify-content:center;
}
.problem-img svg{ width:80%; height:80%; }

/* ---------- GAPS LIST ---------- */
.gaps{ display:grid; grid-template-columns:1fr 1fr; gap:0 60px; }
@media (max-width:760px){ .gaps{ grid-template-columns:1fr; } }
.gap-item{
  display:flex; gap:18px; padding:26px 0; border-bottom:1px solid var(--line-soft);
}
.gap-mark{ font-family:var(--serif); font-style:italic; color:var(--emerald-bright); font-size:20px; flex-shrink:0; width:24px; }
.gap-item h3{ font-family:var(--sans); font-weight:500; font-size:16px; margin-bottom:6px; }
.gap-item p{ font-size:14px; color:var(--muted); line-height:1.6; }

/* ---------- IMAGE BANNER ---------- */
.img-banner{
  position:relative; border-radius:20px; overflow:hidden; min-height:340px;
  display:flex; align-items:flex-end; padding:44px;
  background:var(--surface);
}
.img-banner::before{
  content:''; position:absolute; inset:0; z-index:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(58,143,108,0.4) 1px, transparent 0);
  background-size:26px 26px;
}
.img-banner::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:radial-gradient(ellipse at 30% 100%, rgba(192,138,46,0.16) 0%, transparent 55%), linear-gradient(0deg, var(--ink) 0%, transparent 70%);
}
.img-banner-text{ position:relative; z-index:2; max-width:560px; }
.img-banner-text .eyebrow{ margin-bottom:14px; }
.img-banner-text p{ font-family:var(--serif); font-style:italic; font-size:24px; line-height:1.4; color:var(--paper); }

/* ---------- PROCESS TIMELINE ---------- */
.timeline{ position:relative; margin-top:20px; }
.timeline-line{
  position:absolute; top:22px; left:0; right:0; height:1px; background:var(--line);
}
.timeline-track{
  display:flex; justify-content:space-between; position:relative; gap:20px; flex-wrap:wrap;
}
.t-step{ flex:1; min-width:150px; position:relative; }
.t-num{
  width:44px; height:44px; border-radius:50%; background:var(--ink); border:1px solid var(--amber);
  color:var(--amber-bright); font-family:var(--serif); font-size:16px;
  display:flex; align-items:center; justify-content:center; margin-bottom:22px; position:relative; z-index:2;
}
.t-step h3{ font-family:var(--sans); font-size:16px; font-weight:500; margin-bottom:8px; }
.t-step p{ font-size:13.5px; color:var(--muted); line-height:1.6; }
@media (max-width:760px){
  .timeline-line{ display:none; }
  .timeline-track{ flex-direction:column; gap:36px; }
}

/* ---------- SERVICES (grouped by category) ---------- */
.service-cat{
  display:flex; align-items:center; gap:16px; margin:52px 0 6px;
}
.service-cat:first-child{ margin-top:0; }
.service-cat .cat-label{
  font-family:var(--serif); font-style:italic; font-size:19px; color:var(--amber-bright); white-space:nowrap;
}
.service-cat.growth .cat-label{ color:var(--emerald-bright); }
.service-cat .cat-line{ height:1px; background:var(--line); flex:1; }
.menu-list{ margin-top:0; }
.menu-item{
  display:flex; justify-content:space-between; align-items:baseline;
  gap:24px; padding:22px 0; border-bottom:1px dashed var(--line);
}
.menu-item:first-child{ border-top:1px dashed var(--line); }
.menu-left{ flex:1; }
.menu-name{ font-family:var(--serif); font-size:19px; color:var(--paper); margin-bottom:7px; }
.menu-desc{ font-size:14px; color:var(--muted); max-width:520px; line-height:1.6; }
.menu-outcome{
  font-size:12px; letter-spacing:0.04em; color:var(--emerald-bright);
  white-space:nowrap; text-align:right; flex-shrink:0; padding-top:6px;
}
@media (max-width:640px){
  .menu-item{ flex-direction:column; gap:10px; }
  .menu-outcome{ text-align:left; }
  .service-cat{ margin-top:40px; }
}

/* ---------- FEATURE GRID (subpages: what's included) ---------- */
.feature-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; margin-top:10px; }
@media (max-width:760px){ .feature-grid{ grid-template-columns:1fr; } }
.feature{ background:var(--surface); padding:32px; transition:background .25s ease, transform .15s ease, box-shadow .15s ease; will-change:transform; }
.feature:hover{ background:var(--surface-2); box-shadow:0 20px 40px -20px rgba(0,0,0,0.5); }
.feature .f-icon{
  width:40px; height:40px; border-radius:10px; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  font-family:var(--serif); font-style:italic; font-size:17px; color:var(--amber-bright);
}
.feature:nth-child(even) .f-icon{ color:var(--emerald-bright); }
.feature h3{ font-family:var(--sans); font-weight:500; font-size:16px; margin-bottom:8px; }
.feature p{ font-size:14px; color:var(--muted); line-height:1.65; }

/* ---------- USE CASE LIST (numbered, for subpages) ---------- */
.usecases{ display:flex; flex-direction:column; margin-top:10px; }
.usecase{
  display:grid; grid-template-columns:64px 1fr; gap:24px; padding:30px 0; border-bottom:1px solid var(--line-soft);
}
.usecase:first-child{ border-top:1px solid var(--line-soft); }
.usecase .u-num{ font-family:var(--serif); font-style:italic; font-size:26px; color:var(--amber-bright); }
.usecase h3{ font-size:17px; font-weight:500; font-family:var(--sans); margin-bottom:8px; }
.usecase p{ font-size:14.5px; color:var(--muted); line-height:1.7; max-width:640px; }
@media (max-width:600px){ .usecase{ grid-template-columns:1fr; gap:8px; } }

/* ---------- TYPE CARDS (website types / growth pillars) ---------- */
.type-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; margin-top:10px; }
@media (max-width:860px){ .type-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .type-grid{ grid-template-columns:1fr; } }
.type-card{ background:var(--surface); padding:30px 26px; transition:background .25s ease, transform .15s ease, box-shadow .15s ease; will-change:transform; }
.type-card:hover{ background:var(--surface-2); box-shadow:0 20px 40px -20px rgba(0,0,0,0.5); }
.type-mock{
  background:var(--ink); border:1px solid var(--line); border-radius:10px;
  aspect-ratio:16/10; margin-bottom:18px; overflow:hidden;
}
.type-mock svg{ width:100%; height:100%; display:block; }
.type-card h3{ font-family:var(--serif); font-style:italic; font-size:19px; margin-bottom:10px; color:var(--paper); }
.type-card p{ font-size:13.5px; color:var(--muted); line-height:1.6; }

/* ---------- DIFFERENT / COMPARE ---------- */
.compare{
  display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line);
  border:1px solid var(--line); border-radius:16px; overflow:hidden; margin-top:10px;
}
@media (max-width:760px){ .compare{ grid-template-columns:1fr; } }
.compare-col{ background:var(--surface); padding:36px 32px; }
.compare-col.highlight{ background:var(--surface-2); }
.compare-col h3{ font-family:var(--sans); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted-2); margin-bottom:24px; font-weight:500; }
.compare-col.highlight h3{ color:var(--amber); }
.compare-col ul{ list-style:none; }
.compare-col li{ font-size:14.5px; color:var(--muted); padding:12px 0; border-top:1px solid var(--line-soft); }
.compare-col li:first-child{ border-top:none; }
.compare-col.highlight li{ color:var(--paper); }

/* ---------- BENEFITS GRID ---------- */
.benefits{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden; margin-top:10px; }
@media (max-width:760px){ .benefits{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .benefits{ grid-template-columns:1fr; } }
.benefit{ background:var(--surface); padding:34px 28px; transition:background .25s ease, transform .15s ease, box-shadow .15s ease; will-change:transform; }
.benefit:hover{ background:var(--surface-2); box-shadow:0 20px 40px -20px rgba(0,0,0,0.5); }
.benefit .n{ font-family:var(--serif); font-style:italic; font-size:26px; margin-bottom:14px; display:block; }
.benefit:nth-child(odd) .n{ color:var(--amber-bright); }
.benefit:nth-child(even) .n{ color:var(--emerald-bright); }
.benefit h3{ font-family:var(--sans); font-weight:500; font-size:16px; margin-bottom:8px; }
.benefit p{ font-size:13.5px; color:var(--muted); line-height:1.6; }

/* ---------- CALCULATOR ---------- */
.calc-wrap{
  display:grid; grid-template-columns:1fr 0.9fr; gap:0;
  border:1px solid var(--line); border-radius:24px; overflow:hidden;
  background:var(--surface); position:relative;
}
@media (max-width:860px){ .calc-wrap{ grid-template-columns:1fr; } }
.calc-inputs{ padding:48px; }
.calc-field{ margin-bottom:36px; }
.calc-field:last-child{ margin-bottom:0; }
.calc-field-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:14px; }
.calc-field-head label{ font-size:14px; color:var(--muted); }
.calc-field-head .val{ font-family:var(--serif); font-style:italic; font-size:20px; color:var(--amber-bright); }
input[type="range"]{
  -webkit-appearance:none; appearance:none; width:100%; height:2px; background:var(--line); border-radius:2px; outline:none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; width:20px; height:20px; border-radius:50%;
  background:var(--amber); border:3px solid var(--ink); cursor:pointer;
  box-shadow:0 0 0 1px var(--amber);
}
input[type="range"]::-moz-range-thumb{
  width:20px; height:20px; border-radius:50%; background:var(--amber); border:3px solid var(--ink); cursor:pointer;
}
.calc-result{
  padding:48px; position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  background:radial-gradient(ellipse at 30% 20%, rgba(58,143,108,0.14) 0%, transparent 60%), var(--surface-2);
}
.calc-result::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(192,138,46,0.18) 1px, transparent 0);
  background-size:24px 24px; pointer-events:none;
}
.calc-result-inner{ position:relative; z-index:1; }
.calc-label{ font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted-2); margin-bottom:10px; }
.calc-number{
  font-family:var(--serif); font-style:italic; font-size:clamp(48px,7vw,72px); color:var(--emerald-bright);
  line-height:1; margin-bottom:8px; font-variant-numeric:tabular-nums;
}
.calc-number span{ font-size:0.4em; color:var(--muted); font-style:normal; }
.calc-sub{ font-size:14px; color:var(--muted); max-width:320px; margin-bottom:28px; line-height:1.6; }
.calc-note{ font-size:12px; color:var(--muted-2); }

/* ---------- ANIMATED FLOW DEMO (hero "after" state) ---------- */
.mock-flow{ display:flex; flex-direction:column; }
.flow-node{ display:flex; align-items:center; gap:12px; padding:9px 0; position:relative; }
.flow-node:not(:last-child)::after{
  content:''; position:absolute; left:5px; top:calc(100% - 2px); width:1px; height:10px; background:var(--line);
}
.fn-dot{
  width:11px; height:11px; border-radius:50%; border:2px solid var(--line); background:var(--surface-2);
  flex-shrink:0; transition:all .35s ease;
}
.fn-label{ font-size:13.5px; color:var(--muted); transition:color .35s ease; }
.flow-node.active .fn-dot{ border-color:var(--amber); background:var(--amber); box-shadow:0 0 10px rgba(192,138,46,0.65); }
.flow-node.active .fn-label{ color:var(--paper); font-weight:500; }
.flow-node.done .fn-dot{ border-color:var(--emerald-bright); background:var(--emerald-bright); box-shadow:none; }
.flow-node.done .fn-label{ color:var(--muted); }

/* ---------- CAPABILITY PREVIEW STRIP ---------- */
.capability-strip{ padding:22px 0; border-bottom:1px solid var(--line-soft); position:relative; z-index:5; }
.capability-row{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.cap-pill{
  position:relative; font-family:var(--sans); font-size:12.5px; color:var(--paper);
  background:transparent; border:1px solid var(--line);
  padding:7px 15px; border-radius:100px; white-space:nowrap; cursor:pointer;
  transition:all .2s ease;
}
.cap-pill:nth-child(odd){ border-color:rgba(192,138,46,0.35); }
.cap-pill:nth-child(even){ border-color:rgba(58,143,108,0.35); }
.cap-pill:hover, .cap-pill.open{ transform:translateY(-1px); border-color:var(--amber); color:var(--amber-bright); }
.cap-pill:focus-visible{ outline:2px solid var(--amber); outline-offset:2px; }

.cap-tooltip{
  position:absolute; bottom:calc(100% + 10px); left:50%;
  transform:translateX(-50%) translateY(4px);
  background:var(--surface-2); border:1px solid var(--line); border-radius:10px;
  padding:12px 14px; width:230px; max-width:70vw;
  font-size:12.5px; line-height:1.55; color:var(--muted); text-align:left; font-weight:400;
  white-space:normal;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  box-shadow:0 16px 34px -12px rgba(0,0,0,0.65);
  z-index:30;
}
.cap-tooltip::after{
  content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%);
  border:6px solid transparent; border-top-color:var(--line);
}
.cap-pill.open .cap-tooltip{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:auto;
}

/* ---------- MINI INLINE CTA (between sections) ---------- */
.mini-cta{ text-align:center; margin-top:48px; }
.mini-cta a{ font-size:14px; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line-soft); }
.faq-item:first-child{ border-top:1px solid var(--line-soft); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; color:var(--paper);
  font-family:var(--serif); font-size:19px; padding:26px 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
}
.faq-q .plus{ color:var(--amber); font-size:22px; font-family:var(--sans); font-weight:300; flex-shrink:0; transition:transform .3s ease; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p{ font-size:15px; color:var(--muted); padding-bottom:26px; max-width:600px; line-height:1.7; }

/* ---------- FINAL CTA ---------- */
.final-cta{
  text-align:center; position:relative; overflow:hidden;
  border-top:1px solid var(--line-soft);
}
.final-cta-bg{
  position:absolute; inset:0; z-index:-1;
  background-image:radial-gradient(circle at 1px 1px, rgba(192,138,46,0.3) 1px, transparent 0), linear-gradient(180deg, var(--ink) 0%, rgba(11,12,10,0.4) 50%, var(--ink) 100%);
  background-size:28px 28px, 100% 100%;
  opacity:0.4;
}
.final-cta::before{
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:800px; height:500px;
  background:radial-gradient(ellipse, rgba(192,138,46,0.16) 0%, transparent 70%);
  pointer-events:none;
}
.final-cta h2{ font-size:clamp(30px,4.5vw,50px); max-width:680px; margin:0 auto 20px; position:relative; }
.final-cta p{ color:var(--muted); font-size:16px; margin-bottom:38px; position:relative; }
.final-cta .btn{ position:relative; }

/* ---------- CONSULTATION FORM ---------- */
.consult-form{
  max-width:640px; margin:0 auto; text-align:left; position:relative;
  background:var(--surface); border:1px solid var(--line); border-radius:20px;
  padding:40px; margin-top:20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.form-field{ margin-bottom:22px; }
.form-field label{ display:block; font-size:13px; color:var(--muted); margin-bottom:8px; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field textarea{
  width:100%; background:var(--surface-2); border:1px solid var(--line); border-radius:10px;
  padding:12px 14px; color:var(--paper); font-family:var(--sans); font-size:14.5px;
  transition:border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--amber); }
.form-field textarea{ resize:vertical; min-height:80px; }
.checkbox-grid{ display:flex; flex-direction:column; gap:10px; margin-top:4px; }
.checkbox-grid label{
  display:flex; align-items:center; gap:10px; font-size:14px; color:var(--paper);
  cursor:pointer; margin-bottom:0;
}
.checkbox-grid input[type="checkbox"]{
  width:18px; height:18px; accent-color:var(--amber); cursor:pointer; flex-shrink:0;
}
.consult-form .btn{ width:100%; justify-content:center; margin-top:6px; }
.form-status{
  margin-top:16px; font-size:14px; text-align:center; min-height:20px;
}
.form-status.success{ color:var(--emerald-bright); }
.form-status.error{ color:#c46a4a; }
.form-status.sending{ color:var(--muted); }

/* compact inline CTA banner used at the bottom of subpages */
.cta-inline{
  border:1px solid var(--line); border-radius:20px; padding:56px 44px; text-align:center;
  background:var(--surface); position:relative; overflow:hidden;
}
.cta-inline::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(192,138,46,0.16) 1px, transparent 0);
  background-size:26px 26px; pointer-events:none;
}
.cta-inline h2{ font-size:clamp(24px,3vw,34px); margin-bottom:14px; position:relative; }
.cta-inline p{ color:var(--muted); font-size:15px; max-width:480px; margin:0 auto 28px; position:relative; }
.cta-inline .btn{ position:relative; }

/* ---------- FOOTER ---------- */
footer{ padding:60px 0 40px; border-top:1px solid var(--line-soft); }
.footer-grid{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:30px; }
.footer-brand .logo{ margin-bottom:10px; }
.footer-logo-img{ height:64px; width:auto; margin-bottom:16px; }
.footer-brand p{ color:var(--muted-2); font-size:13.5px; max-width:280px; }
.footer-links{ display:flex; gap:50px; flex-wrap:wrap; }
.footer-col h4{ font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-2); margin-bottom:14px; font-weight:500; }
.footer-col a{ display:block; font-size:14px; color:var(--muted); padding:6px 0; transition:color .2s; }
.footer-col a:hover{ color:var(--amber-bright); }
.footer-bottom{ margin-top:50px; padding-top:24px; border-top:1px solid var(--line-soft); font-size:12.5px; color:var(--muted-2); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

.vb-nudge{
  position:fixed; bottom:92px; right:24px; z-index:199;
  display:flex; align-items:center; gap:12px;
  background:var(--amber); border:none; border-radius:16px;
  padding:14px 18px; box-shadow:0 18px 40px -12px rgba(0,0,0,0.55);
  max-width:270px; cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(10px) scale(0.95);
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.vb-nudge.show{ opacity:1; visibility:visible; transform:translateY(0) scale(1); }
.vb-nudge::after{
  content:''; position:absolute; top:100%; right:26px;
  width:0; height:0;
  border:9px solid transparent; border-top-color:var(--amber);
}
.vb-nudge img{ width:34px; height:34px; border-radius:50%; flex-shrink:0; background:var(--ink); padding:4px; }
.vb-nudge span{ font-size:14.5px; font-weight:600; color:var(--ink); line-height:1.4; }

@media (max-width:480px){
  .vb-nudge{ right:16px; bottom:82px; max-width:220px; }
}

/* ---------- AI CHAT WIDGET ---------- */
.vb-chat-toggle{
  position:fixed; bottom:24px; right:24px; z-index:200;
  width:58px; height:58px; border-radius:50%; border:none;
  background:var(--amber); color:var(--ink); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px -8px rgba(0,0,0,0.6);
  transition:transform .2s ease, background .2s ease;
}
.vb-chat-toggle:hover{ background:var(--amber-bright); transform:scale(1.05); }
.vb-chat-toggle svg{ width:26px; height:26px; }

.vb-chat-panel{
  position:fixed; bottom:96px; right:24px; z-index:200;
  width:440px; max-width:calc(100vw - 32px); height:640px; max-height:calc(100vh - 120px);
  background:var(--surface); border:1px solid var(--line); border-radius:18px;
  display:flex; flex-direction:column; overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.7);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.vb-chat-panel.open{ opacity:1; visibility:visible; transform:translateY(0); }

.vb-chat-header{
  padding:16px 18px; border-bottom:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:space-between;
  background:var(--surface-2);
}
.vb-chat-header-title{ display:flex; align-items:center; gap:10px; }
.vb-chat-header-title .dot{ width:8px; height:8px; border-radius:50%; background:var(--emerald-bright); box-shadow:0 0 6px rgba(58,143,108,0.7); }
.vb-chat-header-title span{ font-family:var(--serif); font-size:15px; color:var(--paper); }
.vb-chat-close{ background:none; border:none; color:var(--muted); cursor:pointer; font-size:18px; line-height:1; padding:4px; }
.vb-chat-close:hover{ color:var(--paper); }

.vb-chat-messages{ flex:1; overflow-y:auto; padding:16px 18px; display:flex; flex-direction:column; gap:12px; }
.vb-msg{ max-width:85%; padding:11px 14px; border-radius:12px; font-size:14.5px; line-height:1.6; white-space:pre-line; }
.vb-msg.bot{ align-self:flex-start; background:var(--surface-2); color:var(--paper); border:1px solid var(--line); }
.vb-msg.user{ align-self:flex-end; background:var(--amber); color:var(--ink); }
.vb-typing{ align-self:flex-start; display:flex; gap:4px; padding:10px 13px; }
.vb-typing span{ width:6px; height:6px; border-radius:50%; background:var(--muted); animation:vb-bounce 1.2s infinite ease-in-out; }
.vb-typing span:nth-child(2){ animation-delay:.15s; }
.vb-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes vb-bounce{ 0%,60%,100%{ transform:translateY(0); opacity:0.5; } 30%{ transform:translateY(-4px); opacity:1; } }

.vb-chat-input-row{
  display:flex; gap:8px; padding:12px; border-top:1px solid var(--line-soft); background:var(--surface-2);
}
.vb-chat-input{
  flex:1; background:var(--ink); border:1px solid var(--line); border-radius:10px;
  padding:11px 13px; color:var(--paper); font-family:var(--sans); font-size:14.5px; resize:none;
}
.vb-chat-input:focus{ outline:none; border-color:var(--amber); }
.vb-chat-send{
  background:var(--amber); color:var(--ink); border:none; border-radius:10px;
  width:38px; flex-shrink:0; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.vb-chat-send:hover{ background:var(--amber-bright); }
.vb-chat-send:disabled{ opacity:0.5; cursor:default; }
.vb-chat-send svg{ width:16px; height:16px; }

@media (max-width:480px){
  .vb-chat-panel{ right:16px; bottom:88px; }
  .vb-chat-toggle{ right:16px; bottom:16px; }
}

/* reveal animation */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
