/* =====================================================================
   Rane Consulting — Professional Consulting Firm Theme
   Full-width editorial | Dark navy authority | Prestige gold accent
   ===================================================================== */

:root {
  --navy:       #0b1c35;
  --navy-2:     #122847;
  --navy-3:     #1a3562;
  --gold:       #b5892e;
  --gold-2:     #c9a148;
  --gold-pale:  #f5ead4;

  --ink:        #111820;
  --ink-2:      #2c3a48;
  --ink-3:      #576474;
  --ink-4:      #8fa2b0;
  --cream:      #f3f0eb;
  --cream-2:    #e9e4db;
  --white:      #ffffff;
  --line:       #dde3ea;
  --line-2:     #c4cdd6;

  --serif: Georgia, Cambria, 'Times New Roman', Times, serif;
  --sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --maxw:   1160px;
  --nav-h:  68px;

  --shadow-xs: 0 1px 3px rgba(11,28,53,.06);
  --shadow-sm: 0 2px 8px rgba(11,28,53,.08), 0 1px 3px rgba(11,28,53,.06);
  --shadow-md: 0 8px 32px rgba(11,28,53,.12), 0 2px 8px rgba(11,28,53,.06);

  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.32,.72,0,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  margin: 0; font-family: var(--sans); font-size: 16px;
  color: var(--ink); background: var(--white);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.018em; line-height: 1.1; margin: 0; }
h3, h4, h5 { font-family: var(--sans); margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 36px; }

/* NAVIGATION */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; height: 100%; gap: 12px; max-width: var(--maxw); margin-inline: auto; padding-inline: 36px; }
.nav-logo { margin-right: auto; line-height: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { display: block; padding: 7px 13px; font-size: .9rem; font-weight: 500; color: var(--ink-2); border-radius: 5px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--navy); background: rgba(11,28,53,.05); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: 7px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; }
.nav-toggle .bar { display: block; width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease-spring), opacity .25s; transform-origin: center; }
.site-header.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: .9rem; padding: 12px 22px; border-radius: 5px; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: background .18s, color .18s, border-color .18s, transform .22s var(--ease-spring), box-shadow .22s; }
.btn:active { transform: scale(.98); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.40); }
.btn-ghost-light:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.70); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); }
.btn-wa { background: #167534; color: #fff; border-color: #167534; }
.btn-wa:hover { background: #12622c; border-color: #12622c; transform: translateY(-2px); }

/* SCROLL REVEALS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); will-change: transform; }
.reveal.in-view { opacity: 1; transform: none; }
.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }

/* SECTION UTILITY */
.section { padding: 104px 0; }
.s-sm { padding: 72px 0; }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }
.label { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.label::after { content: ''; width: 24px; height: 1px; background: currentColor; flex: none; }
.label-light { color: var(--gold-2); }
.label-light::after { background: var(--gold-2); }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--ink); }
.section-sub { color: var(--ink-3); max-width: 56ch; margin-top: 14px; font-size: 1.04rem; line-height: 1.7; }

/* HERO */
.hero { background: var(--navy); min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0 96px; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 10%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 10%, transparent 85%); }
.hero::after { content: ''; position: absolute; right: -180px; bottom: -180px; width: 560px; height: 560px; border-radius: 50%; border: 1px solid rgba(181,137,46,.10); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 28px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.04; letter-spacing: -.03em; max-width: 18ch; }
.hero h1 em { color: var(--gold-2); font-style: italic; }
.hero-rule { width: 52px; height: 1.5px; background: var(--gold); margin: 36px 0; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.14rem); color: rgba(255,255,255,.60); max-width: 52ch; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* METRICS BAR */
.metrics { background: var(--cream); border-bottom: 1px solid var(--cream-2); }
.metrics-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 36px 32px; border-right: 1px solid var(--cream-2); }
.metric:last-child { border-right: none; }
.metric-num { font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 2.9rem); font-weight: 400; color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.metric-num sup { font-family: var(--sans); font-size: .55em; font-weight: 700; color: var(--gold); vertical-align: super; letter-spacing: 0; }
.metric-label { font-family: var(--sans); font-weight: 600; font-size: .86rem; color: var(--ink-2); margin-top: 8px; }
.metric-sub { font-size: .78rem; color: var(--ink-4); margin-top: 3px; }

/* SERVICES */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 56px; }
.services-header .right { text-align: right; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.svc-item { padding: 36px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .2s var(--ease); }
.svc-item:nth-child(4n)  { border-right: none; }
.svc-item:nth-child(n+5) { border-bottom: none; }
.svc-item:hover { background: rgba(11,28,53,.025); }
.svc-item::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-spring); }
.svc-item:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--sans); font-size: .7rem; font-weight: 700; color: var(--ink-4); letter-spacing: .1em; margin-bottom: 18px; display: block; }
.svc-item h3 { font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.svc-item p { font-size: .88rem; color: var(--ink-3); margin-top: 8px; line-height: 1.6; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--navy); margin-top: 14px; transition: color .15s, gap .2s var(--ease-spring); }
.svc-link svg { width: 13px; height: 13px; }
.svc-link:hover { color: var(--gold); gap: 8px; }

/* FIRM STORY */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.72rem); color: var(--navy); line-height: 1.48; letter-spacing: -.01em; position: relative; padding-left: 0; padding-top: 56px; overflow: visible; }
.about-quote::before { content: open-quote; position: absolute; left: 0; top: -4px; font-size: 4.5rem; line-height: 1; color: var(--gold); font-family: var(--serif); opacity: .38; pointer-events: none; }
.about-body { display: flex; flex-direction: column; gap: 18px; }
.about-body p { color: var(--ink-3); font-size: 1.01rem; line-height: 1.78; }
.about-creds { display: flex; gap: 32px; margin-top: 8px; }
.cred { display: flex; flex-direction: column; gap: 4px; }
.cred strong { font-size: 1.45rem; font-family: var(--serif); color: var(--navy); letter-spacing: -.02em; }
.cred span { font-size: .76rem; color: var(--ink-4); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { padding: 36px 28px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--line-2); line-height: 1; display: block; margin-bottom: 18px; letter-spacing: -.04em; }
.process-step h3 { font-size: .98rem; font-weight: 700; color: var(--ink); }
.process-step p { font-size: .88rem; color: var(--ink-3); margin-top: 8px; line-height: 1.62; }

/* WHO WE SERVE */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; overflow: hidden; }
.serve-item { padding: 26px; background: rgba(255,255,255,.03); display: flex; align-items: flex-start; gap: 13px; transition: background .2s var(--ease); }
.serve-item:hover { background: rgba(255,255,255,.07); }
.serve-icon { color: var(--gold-2); flex: none; margin-top: 1px; }
.serve-icon svg { width: 17px; height: 17px; }
.serve-item h3 { font-size: .96rem; font-weight: 600; color: rgba(255,255,255,.88); }
.serve-item p { font-size: .84rem; color: rgba(255,255,255,.44); margin-top: 4px; }

/* CTA BLOCK */
.cta-block { text-align: center; }
.cta-block h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); }
.cta-block p { color: var(--ink-3); max-width: 52ch; margin: 16px auto 0; font-size: 1.04rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.4fr; gap: 44px; }
.footer-logo img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-about p { font-size: .9rem; line-height: 1.72; max-width: 30ch; color: rgba(255,255,255,.50); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); display: grid; place-items: center; color: rgba(255,255,255,.50); transition: background .18s, color .18s; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.50); transition: color .18s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,.50); }
.footer-contact-list svg { width: 16px; height: 16px; color: var(--gold-2); flex: none; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.50); }
.footer-contact-list a:hover { color: var(--gold-2); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.30); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--gold-2); }

/* FLOAT CTA / STICKY BAR */
.float-cta { position: fixed; right: 28px; bottom: 28px; z-index: 50; display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .88rem; padding: 13px 20px; border: none; border-radius: 5px; box-shadow: var(--shadow-md); transition: transform .22s var(--ease-spring), box-shadow .22s; }
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(11,28,53,.24); }
.float-cta svg { width: 17px; height: 17px; }
.sticky-bar { display: none; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(11,28,53,.55); display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .22s var(--ease); }
.modal-overlay.open { display: flex; opacity: 1; }
.modal { background: var(--white); width: 100%; max-width: 520px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); transform: translateY(14px) scale(.98); transition: transform .3s var(--ease-spring); max-height: 92vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-head { background: var(--navy); padding: 26px 30px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.modal-head-text h3 { font-family: var(--serif); color: #fff; font-size: 1.3rem; font-weight: 400; }
.modal-head-text p { color: rgba(255,255,255,.60); font-size: .9rem; margin-top: 5px; }
.modal-close { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20); color: #fff; width: 32px; height: 32px; border-radius: 5px; display: grid; place-items: center; flex: none; transition: background .15s; cursor: pointer; }
.modal-close:hover { background: rgba(255,255,255,.20); }
.modal-close svg { width: 15px; height: 15px; }
.modal-body { padding: 28px 30px 32px; }

/* FORMS */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: .94rem; color: var(--ink); padding: 10px 13px; border: 1.5px solid var(--line-2); border-radius: 5px; background: var(--white); outline: none; transition: border-color .18s, box-shadow .18s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,28,53,.08); }
.field textarea { resize: vertical; min-height: 112px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--ink-4); margin-top: 10px; }
.form-status { margin-top: 12px; padding: 11px 14px; border-radius: 5px; font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok  { background: rgba(22,117,52,.07); color: #125c29; border: 1px solid rgba(22,117,52,.18); }
.form-status.err { background: rgba(180,40,40,.07); color: #8b2020; border: 1px solid rgba(180,40,40,.18); }
.modal-body .btn { width: 100%; justify-content: center; margin-top: 6px; padding: 13px 20px; }

/* INNER PAGE */
.page-hero { background: var(--navy); padding: 88px 0 72px; }
.page-hero-inner { max-width: 680px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.60); font-size: 1.06rem; line-height: 1.7; margin-top: 16px; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb svg { width: 11px; height: 11px; opacity: .5; }
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lead { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); line-height: 1.62; }
.body-copy { color: var(--ink-3); font-size: .99rem; line-height: 1.8; }
.body-copy + .body-copy { margin-top: 16px; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.value-row { display: flex; gap: 20px; align-items: flex-start; padding: 36px 48px 36px 0; border-bottom: 1px solid var(--line); }
.values-list .value-row:nth-child(even) { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--line); }
.value-n { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--line-2); min-width: 44px; flex-shrink: 0; }
.value-row h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.value-row p { color: var(--ink-3); margin-top: 8px; font-size: .93rem; line-height: 1.65; }
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.loc-card { border: 1px solid var(--line); border-radius: 7px; padding: 22px; background: var(--white); display: flex; gap: 14px; align-items: flex-start; transition: border-color .2s, box-shadow .2s; }
.loc-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.loc-icon { width: 40px; height: 40px; border-radius: 7px; background: rgba(11,28,53,.06); border: 1px solid rgba(11,28,53,.10); color: var(--navy); display: grid; place-items: center; flex: none; }
.loc-icon svg { width: 19px; height: 19px; }
.loc-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.loc-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.loc-card p { font-size: .88rem; color: var(--ink-3); margin-top: 4px; }
.diff-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.diff-item { display: flex; gap: 12px; align-items: flex-start; }
.diff-tick { width: 26px; height: 26px; border-radius: 6px; background: rgba(11,28,53,.06); border: 1px solid rgba(11,28,53,.12); color: var(--navy); display: grid; place-items: center; flex: none; }
.diff-tick svg { width: 13px; height: 13px; }
.diff-item h4 { font-size: .96rem; font-weight: 700; color: var(--ink); }
.diff-item p { font-size: .88rem; color: var(--ink-3); margin-top: 3px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mv-card { border: 1px solid var(--line); border-radius: 7px; padding: 26px; background: var(--white); transition: border-color .2s, box-shadow .2s; }
.mv-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.mv-card.dark { background: var(--navy); border-color: transparent; }
.mv-card .mv-icon { width: 40px; height: 40px; border-radius: 7px; display: grid; place-items: center; margin-bottom: 14px; background: rgba(11,28,53,.06); border: 1px solid rgba(11,28,53,.12); color: var(--navy); }
.mv-card.dark .mv-icon { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.15); color: var(--gold-2); }
.mv-card .mv-icon svg { width: 20px; height: 20px; }
.mv-card h3 { font-size: 1.04rem; font-weight: 700; color: var(--ink); }
.mv-card.dark h3 { color: #fff; }
.mv-card p { color: var(--ink-3); margin-top: 8px; font-size: .92rem; }
.mv-card.dark p { color: rgba(255,255,255,.60); }
.svc-layout { display: grid; grid-template-columns: 228px 1fr; gap: 48px; align-items: start; }
.svc-index { position: sticky; top: calc(var(--nav-h) + 16px); background: var(--cream); border: 1px solid var(--cream-2); border-radius: 7px; padding: 20px; }
.svc-index h4 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; font-weight: 700; }
.svc-index ul { display: flex; flex-direction: column; gap: 2px; }
.svc-index a { display: block; padding: 8px 11px; border-radius: 5px; font-size: .88rem; color: var(--ink-3); font-weight: 500; transition: background .15s, color .15s; }
.svc-index a:hover { background: rgba(11,28,53,.06); color: var(--navy); }
.svc-detail { padding: 48px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail-inner { display: grid; grid-template-columns: 52px 1fr; gap: 24px; }
.svc-detail-icon { width: 48px; height: 48px; border-radius: 8px; display: grid; place-items: center; background: rgba(11,28,53,.06); border: 1px solid rgba(11,28,53,.12); color: var(--navy); }
.svc-detail-icon svg { width: 24px; height: 24px; }
.svc-detail h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--ink); }
.svc-detail .svc-lead { color: var(--ink-3); font-size: 1.02rem; margin-top: 12px; max-width: 68ch; line-height: 1.76; }
.svc-detail .btn { margin-top: 22px; }
.svc-for { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: var(--cream); border: 1px solid var(--cream-2); border-radius: 5px; padding: 9px 14px; font-size: .88rem; color: var(--ink-2); }
.svc-for svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.svc-for strong { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card { border: 1px solid var(--line); border-radius: 7px; padding: 20px; background: var(--white); display: flex; gap: 14px; align-items: flex-start; transition: border-color .2s, box-shadow .2s; }
.contact-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.contact-card .ci { width: 40px; height: 40px; border-radius: 7px; background: rgba(11,28,53,.06); border: 1px solid rgba(11,28,53,.12); color: var(--navy); display: grid; place-items: center; flex: none; }
.contact-card .ci svg { width: 19px; height: 19px; }
.contact-card h4 { font-size: .97rem; font-weight: 700; color: var(--ink); }
.contact-card p, .contact-card a { color: var(--ink-3); font-size: .9rem; margin-top: 3px; display: block; }
.contact-card a:hover { color: var(--navy); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-xs); }
.form-card .btn { width: 100%; justify-content: center; padding: 13px 20px; margin-top: 6px; }

/* ============================================================
   HIGH-END VISUAL DESIGN — Services + About pages
   Vibe: Editorial Luxury  |  Z-Axis Cascade + Asymmetric Bento
   Skill: high-end-visual-design
   ============================================================ */

/* Utility classes missing from base */
.bg-mist { background: var(--cream); }

.section-head { margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.8rem,3.2vw,2.5rem); color: var(--ink); letter-spacing: -.02em; line-height: 1.14; }
.section-head p { color: var(--ink-3); max-width: 58ch; margin-top: 14px; font-size: 1.02rem; line-height: 1.72; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.eyebrow::after { content: ''; width: 20px; height: 1px; background: currentColor; }

/* Page hero — dramatic: more whitespace, dot grid texture, arc accent */
.page-hero { background: var(--navy); padding: 140px 0 104px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.038) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 88%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 88%); }
.page-hero::after { content: ''; position: absolute; right: -120px; bottom: -120px; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(181,137,46,.09); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; max-width: 740px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(181,137,46,.10); border: 1px solid rgba(181,137,46,.28); padding: 6px 16px; border-radius: 100px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold-2); margin-bottom: 28px; }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,3.8rem); letter-spacing: -.03em; line-height: 1.06; }
.page-hero p { margin-top: 20px; max-width: 56ch; }

/* ---- SERVICES PAGE ---- */

/* btn-green was missing from base */
.btn-green { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-green:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Service article outer shell — Z-Axis Double-Bezel */
.svc { border-radius: 20px; background: rgba(11,28,53,.025); border: 1px solid rgba(11,28,53,.07); padding: 4px; margin-bottom: 16px; transition: transform .5s cubic-bezier(.32,.72,0,1), box-shadow .5s cubic-bezier(.32,.72,0,1); }
.svc:last-child { margin-bottom: 0; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 14px 52px rgba(11,28,53,.10), 0 3px 12px rgba(11,28,53,.06); }

/* Service article inner core */
.svc-inner { background: var(--white); border-radius: 16px; padding: 44px 40px; border: 1px solid rgba(11,28,53,.04); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start; }

/* Service large icon — 3D perspective tilt */
.svc-num { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(145deg,#fff 0%,#eef2f7 100%); border: 1px solid rgba(11,28,53,.11); box-shadow: 2px 3px 8px rgba(11,28,53,.09),4px 5px 18px rgba(11,28,53,.05),inset 0 1px 0 rgba(255,255,255,.9); display: grid; place-items: center; color: var(--navy); transform: perspective(120px) rotateX(8deg) rotateY(-8deg); transition: transform .4s cubic-bezier(.32,.72,0,1), box-shadow .4s; }
.svc-num svg { width: 26px; height: 26px; }
.svc:hover .svc-num { transform: perspective(120px) rotateX(3deg) rotateY(-3deg) translateY(-3px); box-shadow: 3px 8px 22px rgba(11,28,53,.13),6px 10px 34px rgba(11,28,53,.07),inset 0 1px 0 rgba(255,255,255,.9); }

.svc h2 { font-size: clamp(1.35rem,2.2vw,1.7rem); color: var(--ink); line-height: 1.15; }
.svc .svc-lead { color: var(--ink-3); font-size: 1rem; margin-top: 12px; max-width: 68ch; line-height: 1.76; }

/* "Best for" — gold-tinted pill */
.svc-for { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: rgba(181,137,46,.06); border: 1px solid rgba(181,137,46,.18); border-radius: 100px; padding: 7px 16px; font-size: .87rem; color: var(--ink-2); }
.svc-for svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.svc-for strong { color: var(--navy); }

/* Get a Quote button — pill + Button-in-Button icon physics */
.svc .btn { margin-top: 20px; border-radius: 100px; transition: background .25s cubic-bezier(.32,.72,0,1), transform .3s cubic-bezier(.32,.72,0,1), box-shadow .3s; }
.svc .btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(11,28,53,.18); }
.svc .btn svg { width: 14px; height: 14px; background: rgba(255,255,255,.14); border-radius: 50%; padding: 2px; transition: transform .3s cubic-bezier(.32,.72,0,1); }
.svc .btn:hover svg { transform: translateX(3px) translateY(-1px) scale(1.1); }

/* Sticky index sidebar — elevated glass card */
.svc-index { background: var(--white); border: 1px solid rgba(11,28,53,.08); border-radius: 16px; padding: 22px; box-shadow: 0 2px 8px rgba(11,28,53,.06),0 8px 32px rgba(11,28,53,.04); }
.svc-index h4 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.svc-index ul { display: flex; flex-direction: column; gap: 2px; }
.svc-index a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .87rem; color: var(--ink-3); font-weight: 500; transition: background .2s cubic-bezier(.32,.72,0,1), color .2s, transform .25s cubic-bezier(.32,.72,0,1); }
.svc-index a:hover { background: rgba(11,28,53,.05); color: var(--navy); transform: translateX(4px); }

/* ---- ABOUT PAGE ---- */

/* Mission/Vision — Double-Bezel */
.mv-card-shell { border-radius: 22px; background: rgba(11,28,53,.03); border: 1px solid rgba(11,28,53,.06); padding: 4px; transition: transform .5s cubic-bezier(.32,.72,0,1), box-shadow .5s; }
.mv-card-shell:hover { transform: translateY(-4px); box-shadow: 0 18px 58px rgba(11,28,53,.10),0 4px 16px rgba(11,28,53,.06); }
.mv-card { border-radius: 18px; padding: 36px 32px; background: var(--white); border: 1px solid rgba(11,28,53,.04); box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.mv-card.dark { background: var(--navy); border-color: transparent; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.mv-card .mv-icon { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(145deg,#fff 0%,#eef2f7 100%); border: 1px solid rgba(11,28,53,.10); box-shadow: 1px 2px 6px rgba(11,28,53,.09),inset 0 1px 0 rgba(255,255,255,.9); color: var(--navy); display: grid; place-items: center; margin-bottom: 20px; }
.mv-card.dark .mv-icon { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: var(--gold-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.10); }
.mv-card .mv-icon svg { width: 24px; height: 24px; }
.mv-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; color: var(--ink); letter-spacing: -.015em; }
.mv-card.dark h3 { color: #fff; }
.mv-card p { color: var(--ink-3); margin-top: 12px; font-size: .95rem; line-height: 1.72; }
.mv-card.dark p { color: rgba(255,255,255,.60); }

/* What Sets Apart — card treatment */
.diff-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diff-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; transition: border-color .25s cubic-bezier(.32,.72,0,1), box-shadow .25s, transform .3s cubic-bezier(.32,.72,0,1); }
.diff-item:hover { border-color: rgba(181,137,46,.30); box-shadow: 0 6px 24px rgba(11,28,53,.07); transform: translateY(-2px); }
.diff-item .tick, .diff-item .diff-tick { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(145deg,rgba(181,137,46,.12),rgba(181,137,46,.05)); border: 1px solid rgba(181,137,46,.22); color: var(--gold); display: grid; place-items: center; flex: none; }
.diff-item .tick svg, .diff-item .diff-tick svg { width: 14px; height: 14px; }
.diff-item h4 { font-size: .97rem; font-weight: 700; color: var(--ink); }
.diff-item p { font-size: .88rem; color: var(--ink-3); margin-top: 4px; line-height: 1.6; }

/* Who We Serve — Asymmetric Bento */
.cards--who { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.cards--who .card-shell { border-radius: 20px; background: var(--white); border: 1px solid var(--line); padding: 3px; transition: transform .4s cubic-bezier(.32,.72,0,1), box-shadow .4s; }
.cards--who .card-shell:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 52px rgba(11,28,53,.10),0 3px 10px rgba(11,28,53,.06); }
.cards--who .card-shell:last-child { grid-column: span 2; }
.cards--who .card { border-radius: 17px; padding: 28px 24px; background: var(--white); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); height: 100%; }
.cards--who .card-icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(145deg,#fff 0%,#eef2f7 100%); border: 1px solid rgba(11,28,53,.10); box-shadow: 1px 2px 6px rgba(11,28,53,.08),inset 0 1px 0 rgba(255,255,255,.9); display: grid; place-items: center; color: var(--navy); margin-bottom: 16px; }
.cards--who .card-icon svg { width: 20px; height: 20px; }
.cards--who .card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.cards--who .card p { font-size: .88rem; color: var(--ink-3); margin-top: 6px; line-height: 1.65; }

/* Leadership section — cards */
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.value { border-radius: 16px; padding: 28px 24px; border: 1px solid var(--line); background: var(--white); transition: border-color .25s cubic-bezier(.32,.72,0,1), box-shadow .25s, transform .3s cubic-bezier(.32,.72,0,1); }
.value:hover { border-color: rgba(181,137,46,.25); box-shadow: 0 6px 24px rgba(11,28,53,.08); transform: translateY(-2px); }
.value-icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(145deg,rgba(11,28,53,.06),rgba(11,28,53,.03)); border: 1px solid rgba(11,28,53,.10); color: var(--navy); display: grid; place-items: center; margin-bottom: 14px; }
.value-icon svg { width: 20px; height: 20px; }
.value h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.value p { font-size: .9rem; color: var(--ink-3); margin-top: 6px; line-height: 1.65; }

/* Location cards — Double-Bezel */
.loc-card { border-radius: 18px; border: 1px solid var(--line); padding: 3px; background: rgba(11,28,53,.02); transition: transform .4s cubic-bezier(.32,.72,0,1), box-shadow .4s; }
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(11,28,53,.09),0 2px 8px rgba(11,28,53,.05); }
.loc-card-inner { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: 15px; padding: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); height: 100%; }
.loc-icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(145deg,#fff 0%,#eef2f7 100%); border: 1px solid rgba(11,28,53,.10); box-shadow: 1px 2px 6px rgba(11,28,53,.08),inset 0 1px 0 rgba(255,255,255,.9); color: var(--navy); display: grid; place-items: center; flex: none; }
.loc-icon svg { width: 20px; height: 20px; }
.loc-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.loc-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.loc-card p { font-size: .88rem; color: var(--ink-3); margin-top: 4px; line-height: 1.6; }

/* CTA strip — elevated card */
.cta-strip { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; box-shadow: 0 4px 20px rgba(11,28,53,.06),0 1px 4px rgba(11,28,53,.04); }
.cta-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(145deg,rgba(11,28,53,.06),rgba(11,28,53,.03)); border: 1px solid rgba(11,28,53,.10); display: grid; place-items: center; color: var(--navy); flex: none; }
.cta-badge svg { width: 22px; height: 22px; }
.cta-text { display: flex; align-items: center; gap: 18px; }
.cta-text h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); }
.cta-text p { font-size: .9rem; color: var(--ink-3); margin-top: 4px; }

/* Enhanced scroll reveal — blur-in (GPU-safe) */
.reveal { opacity: 0; transform: translateY(20px); filter: blur(4px); transition: opacity .8s cubic-bezier(.32,.72,0,1), transform .8s cubic-bezier(.32,.72,0,1), filter .7s cubic-bezier(.32,.72,0,1); will-change: transform, opacity; }
.reveal.in-view { opacity: 1; transform: none; filter: none; }

/* Responsive — high-end card grid collapse */
@media (max-width: 1024px) {
  .cards--who { grid-template-columns: repeat(2,1fr); }
  .cards--who .card-shell:last-child { grid-column: span 1; }
}
@media (max-width: 860px) {
  .svc-inner { grid-template-columns: 1fr; gap: 20px; padding: 30px 26px; }
  .cards--who { grid-template-columns: 1fr; }
  .cards--who .card-shell:last-child { grid-column: span 1; }
  .values { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .page-hero { padding: 96px 0 72px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-header { grid-template-columns: 1fr; }
  .services-header .right { text-align: left; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-item:nth-child(4n)  { border-right: 1px solid var(--line); }
  .svc-item:nth-child(2n)  { border-right: none; }
  .svc-item:nth-child(n+5) { border-bottom: 1px solid var(--line); }
  .svc-item:nth-child(n+7) { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--line); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 32px; }
  .about-grid { gap: 44px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-index { display: none; }
  .prose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .nav-links { display: flex; flex-direction: column; align-items: center; justify-content: center; position: fixed; inset: 0; z-index: 40; background: rgba(11,28,53,.97); gap: 0; }
  .site-header.menu-open .nav-links a { font-family: var(--serif); font-size: clamp(1.8rem, 6vw, 2.4rem); font-weight: 400; letter-spacing: -.02em; color: rgba(255,255,255,.88); padding: 14px 0; border-radius: 0; width: auto; text-align: center; opacity: 0; transform: translateY(18px); transition: opacity .45s var(--ease-spring), transform .45s var(--ease-spring), color .2s; }
  .site-header.menu-open .nav-links a:hover { color: var(--gold-2); background: none; }
  .nav-cta-mobile { display: flex; flex-direction: column; align-items: center; margin-top: 28px; opacity: 0; transform: translateY(18px); transition: opacity .45s var(--ease-spring), transform .45s var(--ease-spring); }
  .site-header.menu-open .nav-links .nav-cta-mobile { display: flex; }
  .hero { min-height: auto; padding: 72px 0 80px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-rule { margin: 28px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--cream-2); }
  .metric:nth-child(2n) { border-right: none; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .svc-item:last-child { border-bottom: none !important; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-top: 1px solid var(--line); padding: 32px 28px; }
  .process-step:first-child { border-top: none; }
  .serve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-cta { display: none; }
  .sticky-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(11,28,53,.10); }
  .sticky-bar button, .sticky-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 12px; font-family: var(--sans); font-weight: 600; font-size: .92rem; border: none; background: var(--white); color: var(--ink); cursor: pointer; }
  .sticky-bar svg { width: 18px; height: 18px; }
  .sticky-bar .sb-wa { color: #167534; border-right: 1px solid var(--line); }
  .sticky-bar .sb-inq { background: var(--navy); color: #fff; }
  body { padding-bottom: 62px; }
  .diff-list, .mv-grid, .locations, .field-row, .values-list { grid-template-columns: 1fr; }
  .values-list .value-row:nth-child(even) { padding-left: 0; border-left: none; }
  .value-row { padding-right: 0; }
}

@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .nav { padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .form-card { padding: 22px; }
  .modal-body { padding: 22px 22px 28px; }
  .modal-head { padding: 22px; }
}
