/* ============================================================
   Solarc Creative — shared stylesheet
   Palette: deep navy base, ink depth, warm off-white, sol-gold arc
   ============================================================ */

:root {
  --navy:        #0A1A2F;
  --navy-800:    #0F2138;
  --navy-700:    #16304d;
  --ink:         #1c2b3f;
  --paper:       #F5F2EC;
  --paper-dim:   #E7E2D8;
  --text:        #E8EDF4;
  --text-dim:    #9FB0C4;
  --gold:        #E8A02C;
  --gold-soft:   #F2C25E;
  --line:        rgba(159, 176, 196, 0.18);

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 64px);
  --r: 14px;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- arc signature ---------- */
.arc {
  display: block;
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--gold) 45%, var(--gold-soft) 55%, transparent);
  opacity: 0.5;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 26, 47, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1.32rem; letter-spacing: -0.02em; }
.brand svg { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.92rem; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 16px; border-radius: 999px; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 800px) {
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-800); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { padding: 15px var(--gutter); width: 100%; border-top: 1px solid var(--line); }
  .nav-cta { margin: 14px var(--gutter); text-align: center; }
  .nav-toggle { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 500; font-size: 0.98rem; cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 8px 30px -10px rgba(232,160,44,0.6); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-soft); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
/* Ghost buttons on light/cream sections need dark, visible text */
.light .btn-ghost { border-color: rgba(10,26,47,0.28); color: var(--navy); }
.light .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
/* Hero sub-note under CTAs */
.hero-note { margin-top: 16px; color: var(--text-dim); font-size: 0.92rem; }
.hero-note a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.hero-note a:hover { color: var(--gold); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(70px, 12vw, 140px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(232,160,44,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%);
}
.hero-arc { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); max-width: 15ch; margin-top: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text-dim); max-width: 54ch; margin: 26px 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- generic section ---------- */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 14px 0 18px; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }
.section.light { background: var(--paper); color: var(--ink); }
.section.light .section-head p { color: #4a5a6e; }
.section.light .eyebrow { color: #b5791a; }

/* ---------- service / feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,160,44,0.4); }
.card .num { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.card h3 { font-size: 1.5rem; margin: 14px 0 12px; color: var(--text); }
.card p { color: var(--text-dim); font-size: 0.98rem; }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.card ul li { font-size: 0.92rem; color: var(--text-dim); padding-left: 22px; position: relative; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

.light .card { background: #fff; border-color: rgba(28,43,63,0.1); }
.light .card h3 { color: var(--ink); }
.light .card p, .light .card ul li { color: #4a5a6e; }

/* ---------- audit ladder ---------- */
.ladder { display: grid; gap: 18px; }
.rung {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 30px; transition: border-color 0.2s;
}
.rung:hover { border-color: rgba(232,160,44,0.4); }
.rung .step { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: 0.8; }
.rung h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--text); }
.rung p { color: var(--text-dim); font-size: 0.95rem; }
.rung .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-soft); white-space: nowrap; }
.rung.featured { border-color: var(--gold); background: linear-gradient(160deg, var(--navy-700), var(--navy-800)); }

.rung { cursor: pointer; text-decoration: none; }
.rung-go { margin-left: auto; align-self: center; font-size: 1.3rem; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.rung:hover .rung-go { opacity: 1; transform: translateX(0); }
@media (max-width: 800px) { .rung-go { display: none; } }

@media (max-width: 700px) {
  .rung { grid-template-columns: auto 1fr; }
  .rung .price { grid-column: 2; }
}

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stats .stat { padding: 20px; }
.stats .stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gold); }
.stats .stat span { font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.04em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  background: var(--navy-800); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-side { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.contact-side h3 { font-size: 1.35rem; margin-bottom: 14px; }
.contact-side a.mail { color: var(--gold-soft); font-size: 1.05rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 48px 0 40px; background: var(--navy-800); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer .brand { font-size: 1.2rem; margin-bottom: 12px; }
.footer p { color: var(--text-dim); font-size: 0.9rem; max-width: 34ch; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.92rem; color: var(--text-dim); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-base { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--text-dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-base a { color: var(--text-dim); transition: color 0.2s; }
.footer-base a:hover { color: var(--gold); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(60px, 9vw, 110px) 0 clamp(30px, 5vw, 56px); position: relative; overflow: hidden; }
.page-hero .hero-bg { background: radial-gradient(700px 380px at 82% -20%, rgba(232,160,44,0.12), transparent 60%), linear-gradient(180deg, var(--navy), var(--navy-800)); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; margin-top: 16px; }
.page-hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 56ch; margin-top: 20px; }

.prose { max-width: 68ch; }
.prose p { color: var(--text-dim); margin-bottom: 20px; font-size: 1.05rem; }
.prose h3 { font-size: 1.5rem; margin: 40px 0 14px; }

/* ---------- in-the-field photo strip ---------- */
.fieldstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.fieldstrip figure { margin: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--navy-800); aspect-ratio: 4 / 5; position: relative; }
.fieldstrip img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.fieldstrip figure:hover img { transform: scale(1.05); }
@media (max-width: 820px) { .fieldstrip { grid-template-columns: repeat(2, 1fr); } }
.fieldcaption { font-size: 0.9rem; color: var(--text-dim); margin-top: 16px; font-style: italic; }

/* ---------- interactive supply chain ---------- */
.chain-section { padding: clamp(48px, 8vw, 88px) 0; position: relative; }
.chain-head { max-width: 60ch; margin-bottom: 40px; }
.chain-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 14px 0 16px; }
.chain-head p { color: var(--text-dim); font-size: 1.06rem; }

.chain-track { position: relative; display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.chain-node {
  flex: 1 1 calc(25% - 12px); min-width: 120px;
  background: var(--navy-800); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 16px; cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, background 0.18s;
  text-align: left; position: relative; overflow: hidden;
}
.chain-node::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.2s;
}
.chain-node:hover, .chain-node.active {
  transform: translateY(-3px); border-color: rgba(232,160,44,0.5);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
}
.chain-node:hover::before, .chain-node.active::before { transform: scaleY(1); }
.chain-node .cnum { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold); opacity: 0.9; }
.chain-node .cname { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-top: 6px; line-height: 1.15; color: var(--text); }
.chain-node .chint { display: block; font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }

/* detail panel (Variant A) */
.chain-panel {
  margin-top: 22px; background: var(--navy-800); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.2s;
}
.chain-panel.open { max-height: 520px; padding: 30px 32px; border-color: rgba(232,160,44,0.4); }
.chain-panel h3 { font-size: 1.5rem; margin-bottom: 8px; }
.chain-panel .panel-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.chain-panel .pains { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }
.chain-panel .pains li { padding-left: 24px; position: relative; color: var(--text-dim); font-size: 0.98rem; }
.chain-panel .pains li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }
.chain-panel .panel-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.chain-whole { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800)); border: 1px solid var(--gold);
  border-radius: var(--r); padding: 22px 28px; }
.chain-whole p { color: var(--text); font-size: 1.02rem; }
.chain-whole .cw-sub { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }

@media (max-width: 720px) {
  .chain-node { flex: 1 1 calc(50% - 12px); }
}

/* ---------- network map ---------- */
.sc-map-wrap { position: relative; background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; overflow: hidden; }
.sc-land path { fill: #16304d; stroke: #1d3a5c; stroke-width: 0.4; }
.sc-route { stroke: #E8A02C; stroke-width: 1.1; fill: none; stroke-dasharray: 5 7; stroke-linecap: round; opacity: 0.6; animation: scflow 1.5s linear infinite; }
.sc-fm { stroke: #5DCAA5; stroke-width: 1.1; fill: none; opacity: 0.75; }
@keyframes scflow { to { stroke-dashoffset: -24; } }
.sc-hub { cursor: pointer; outline: none; }
.sc-hub .sc-core { transition: r 0.2s; }
.sc-hub:hover .sc-core, .sc-hub:focus-visible .sc-core { r: 7; }
.sc-pulse { opacity: 0.16; animation: scpulse 2.6s ease-in-out infinite; }
@keyframes scpulse { 0%,100% { opacity: 0.12; } 50% { opacity: 0.32; } }
@media (prefers-reduced-motion: reduce) { .sc-route, .sc-pulse { animation: none; } }
.sc-tip { position: absolute; background: var(--navy-700); border: 1px solid var(--gold); border-radius: 10px; padding: 10px 14px; pointer-events: none; opacity: 0; transition: opacity 0.15s; max-width: 220px; z-index: 5; }
.sc-tip .sc-tn { font-family: var(--font-display); color: var(--gold-soft); font-size: 1rem; }
.sc-tip .sc-td { color: var(--text-dim); font-size: 0.82rem; margin-top: 3px; line-height: 1.4; }
.sc-legend { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 20px; font-size: 0.85rem; color: var(--text-dim); }
.sc-legend span { display: inline-flex; align-items: center; gap: 8px; }
.sc-legend .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.sc-legend .dot.gold { background: #F2C25E; } .sc-legend .dot.amber { background: #E8A02C; } .sc-legend .dot.teal { background: #5DCAA5; }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 44px; }
.faq-group > .faq-cat { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; cursor: pointer; padding: 22px 44px 22px 0; position: relative; color: var(--text); font-family: var(--font-display); font-size: 1.18rem; line-height: 1.3; transition: color 0.2s; }
.faq-q:hover { color: var(--gold-soft); }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.5rem; color: var(--gold); transition: transform 0.25s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 44px 24px 0; color: var(--text-dim); font-size: 1.02rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; position: relative; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--gold); opacity: 0.5; }
.testi-card blockquote { margin: 14px 0 22px; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.testi-card .attr { display: flex; flex-direction: column; gap: 2px; }
.testi-card .attr .name { font-family: var(--font-display); color: var(--gold-soft); font-size: 1rem; }
.testi-card .attr .role { color: var(--text-dim); font-size: 0.85rem; }
/* placeholder marker while empty */
.testi-card.placeholder { border-style: dashed; opacity: 0.7; }
.testi-card.placeholder blockquote { font-style: italic; color: var(--text-dim); }

/* ---------- map hub labels (always visible) ---------- */
.sc-hublabel { font-family: var(--font-body); font-size: 11px; fill: var(--text); paint-order: stroke; stroke: var(--navy); stroke-width: 3px; stroke-linejoin: round; pointer-events: none; opacity: 0.9; }
.sc-euro .sc-hublabel { fill: var(--gold-soft); font-weight: 600; font-size: 12px; }
.sc-hub { cursor: pointer; }
.sc-hub:hover .sc-hublabel, .sc-hub:focus-visible .sc-hublabel { opacity: 1; fill: var(--gold-soft); }
.sc-hint { color: var(--gold); font-style: italic; }
.sc-fm { stroke: #5DCAA5; stroke-width: 1.3; fill: none; opacity: 0.85; }

/* ---------- stat hover tooltips ---------- */
.stats .stat { position: relative; cursor: default; border-radius: 12px; transition: background 0.2s; }
.stats .stat:hover, .stats .stat:focus-visible { background: rgba(232,160,44,0.06); outline: none; }
.stat-tip {
  position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(-6px);
  width: 230px; max-width: 78vw;
  background: var(--navy-700); border: 1px solid var(--gold); border-radius: 10px;
  padding: 12px 14px; font-size: 0.82rem !important; line-height: 1.5; color: var(--text) !important;
  letter-spacing: normal !important; text-transform: none !important;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; z-index: 20;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6); pointer-events: none;
}
.stat-tip::after { content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-bottom-color: var(--gold); }
.stats .stat:hover .stat-tip, .stats .stat:focus-visible .stat-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (max-width: 700px) { .stat-tip { width: 200px; } }

/* Booking page (book.html) */
.booking-embed { position: relative; background: linear-gradient(160deg, var(--navy-800), var(--navy)); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; overflow: hidden; box-shadow: 0 30px 80px -40px rgba(232,160,44,0.35), inset 0 1px 0 rgba(255,255,255,0.04); }
.booking-embed::before { content: ""; position: absolute; inset: 0; border-radius: var(--r); padding: 1px; background: linear-gradient(135deg, rgba(232,160,44,0.45), transparent 40%, transparent 60%, rgba(242,194,94,0.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.booking-embed-head { display: flex; align-items: center; gap: 10px; padding: 2px 4px 16px; color: var(--text-dim); font-size: 0.9rem; }
.booking-embed-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #5DCAA5; box-shadow: 0 0 0 4px rgba(93,202,165,0.15); flex-shrink: 0; }
.booking-embed iframe { display: block; width: 100%; border-radius: 12px; background: #fff; box-shadow: 0 10px 40px -12px rgba(0,0,0,0.5); }
.booking-alt { text-align: center; color: var(--text-dim); margin-top: 26px; font-size: 0.98rem; }
.booking-alt a { color: var(--gold-soft); }

/* Cookie consent banner */
.cookie-banner { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(140%);
  width: min(680px, calc(100% - 32px)); background: var(--navy-800); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,0.55); z-index: 1000;
  transition: transform 0.35s ease, opacity 0.35s ease; opacity: 0; pointer-events: none;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner p { flex: 1 1 300px; margin: 0; font-size: 0.92rem; color: var(--text-dim); line-height: 1.55; }
.cookie-banner p a { color: var(--gold-soft); }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.9rem; }
@media (max-width: 520px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; justify-content: center; } }

/* Legal pages (privacy, terms) — extends .prose */
.prose h4 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--text); font-family: var(--font-display); }
.prose ul { margin: 0 0 20px; padding-left: 22px; }
.prose li { color: var(--text-dim); margin-bottom: 10px; font-size: 1.05rem; }
.prose a { color: var(--gold-soft); }
.prose .meta { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 32px; }
.prose .note { border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; margin: 0 0 24px; color: var(--text-dim); font-size: 0.98rem; }

/* Footer social icons */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px; color: var(--text-dim); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }


/* ===== Meet the operator band ===== */
.operator { background: linear-gradient(165deg, var(--navy-800), var(--navy) 70%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.operator-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.operator-photo { position: relative; }
.operator-photo img { width: 100%; border-radius: var(--r); display: block; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7); }
.operator-photo::after { content: ""; position: absolute; inset: 0; border-radius: var(--r); box-shadow: inset 0 0 0 1px rgba(242,194,94,0.35); pointer-events: none; }
.operator-photo .op-caption { position: absolute; left: 14px; bottom: 14px; right: 14px; font-size: 0.8rem; color: var(--text); background: rgba(11,20,32,0.72); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; }
.operator-photo .op-caption b { color: var(--gold-soft); font-weight: 600; }
.operator-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 12px 0 20px; }
.operator-body p { color: var(--text-dim); font-size: 1.06rem; margin-bottom: 18px; }
.operator-body .op-sign { font-family: var(--font-display); color: var(--gold-soft); font-size: 1.15rem; margin-top: 8px; }
.op-wins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0 6px; }
.op-win { border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px; background: rgba(255,255,255,0.02); }
.op-win b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.op-win span { font-size: 0.86rem; color: var(--text-dim); line-height: 1.4; }
@media (max-width: 860px) {
  .operator-grid { grid-template-columns: 1fr; gap: 32px; }
  .operator-photo { max-width: 420px; }
  .op-wins { grid-template-columns: 1fr; gap: 12px; }
  .op-win { display: flex; align-items: baseline; gap: 12px; }
  .op-win b { margin-bottom: 0; }
}


/* ===== Who I work with band (About) ===== */
.whowork { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.whowork .eyebrow { display:block; }
.whowork h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 12px 0 26px; }
.whowork-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.whowork-cols h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--gold-soft); }
.whowork-cols p { color: var(--text-dim); }
@media (max-width: 720px) { .whowork-cols { grid-template-columns: 1fr; gap: 20px; } }


/* ===== Expandable audit cards (Audits page) ===== */
.auditcard { display: block; padding: 0; overflow: hidden; }
.auditcard-head { width: 100%; background: none; border: 0; cursor: pointer; color: inherit; font: inherit; text-align: left; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 20px; padding: 24px; }
.auditcard-head .step { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: 0.8; }
.auditcard-head h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--text); }
.auditcard-head p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }
.auditcard-head .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-soft); white-space: nowrap; }
.auditcard-chev { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); line-height: 1; transition: transform 0.25s; width: 20px; text-align: center; }
.auditcard.open .auditcard-chev { transform: rotate(45deg); }
.auditcard-detail { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.auditcard.open .auditcard-detail { max-height: 500px; }
.auditcard-detail-inner { padding: 0 24px 26px 84px; }
.auditcard-detail-inner p { color: var(--text-dim); margin-bottom: 14px; }
.auditcard-detail-inner .btn { margin-top: 6px; }
.tag-free { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 3px 8px; border-radius: 999px; vertical-align: middle; margin-left: 8px; }
@media (max-width: 800px) {
  .auditcard-head { grid-template-columns: auto 1fr auto; gap: 12px; padding: 18px; }
  .auditcard-head .price { grid-column: 2 / 3; grid-row: 2; justify-self: start; }
  .auditcard-chev { grid-column: 3; grid-row: 1; }
  .auditcard-detail-inner { padding: 0 18px 22px 18px; }
}

/* --- Scan lead-magnet page --- */
.scan-wrap { max-width: 560px; }
.scan-benefits { list-style: none; margin: 0 0 28px; padding: 0; }
.scan-benefits li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--text-dim); }
.scan-benefits li::before { content: "\2192"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

/* --- Discovery form --- */
.disc-section { border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; margin-bottom: 22px; background: var(--navy-800); }
.disc-section > .eyebrow { display: block; margin-bottom: 4px; }
.disc-section h2 { font-size: 1.3rem; margin-bottom: 4px; }
.disc-section .disc-sub { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 20px; }
.disc-choices { display: grid; gap: 10px; }
.disc-choices.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .disc-choices.two { grid-template-columns: 1fr; } }
.disc-choice { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: 0.95rem; transition: border-color .15s, background .15s; }
.disc-choice:hover { border-color: var(--gold); }
.disc-choice input { accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.disc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .disc-two-col { grid-template-columns: 1fr; } }
.disc-progress { position: sticky; top: 0; z-index: 30; background: var(--navy); padding: 12px 0; }
.disc-bar { height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; }
.disc-bar > i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s ease; }
.disc-bar-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 8px; }
