/* ═══════════════════════════════════════════════════════════
   Vision 61 Studios — website stylesheet (V3)
   "Solar Minimal" — warm paper, terracotta accent, Fraunces display
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #f7f2ea;
  --bg-2: #efe7d9;
  --surface: #fffdf8;
  --surface-2: #efe7d9;
  --surface-3: #e4dac7;
  --border: #e2d8c6;
  --border-2: #cdc0a8;
  --text: #22201b;
  --text-2: #57503f;
  --text-3: #6f6757;
  --accent: #ad4526;
  --accent-strong: #933a1b;
  --accent-soft: rgba(173, 69, 38, .12);
  --accent-border: rgba(173, 69, 38, .35);
  --ok: #3f7d5f;
  --warn: #a8722a;
  --hover: rgba(34, 32, 27, .05);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .2s var(--ease);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

::selection { background: var(--accent); color: #fffdf8; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 14px/1 var(--font); letter-spacing: .01em;
  padding: 12px 20px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: all var(--t); white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fffdf8; box-shadow: 0 8px 24px rgba(192, 83, 47, .18); }
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #fffdf8; transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--border-2); color: var(--text-2); }
.btn-ghost:hover { background: var(--hover); border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn.block { display: flex; width: 100%; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-logo {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 1px solid var(--border-2);
  box-shadow: 0 6px 18px rgba(192, 83, 47, .14);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { font-family: var(--display); font-size: 16px; font-weight: 600; }
.brand-text span { font-size: 10px; letter-spacing: .28em; color: var(--text-3); font-weight: 600; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.nav-cta) { color: var(--text-2); font-size: 13.5px; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: all var(--t); }
.nav-links a:not(.nav-cta):hover { color: var(--text); background: var(--hover); }
.nav-cta { margin-left: 10px; padding: 10px 16px; }
.nav-burger { display: none; background: transparent; border: 1px solid var(--border-2); border-radius: 8px; width: 40px; height: 40px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all var(--t); }

/* departments dropdown */
.nav-item { position: relative; }
.nav-links .drop-toggle {
  font: 500 13.5px/1 var(--font); color: var(--text-2);
  background: transparent; border: none; cursor: pointer;
  padding: 8px 12px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t);
}
.nav-links .drop-toggle:hover, .nav-item.open .drop-toggle { color: var(--text); background: var(--hover); }
.drop-toggle .chev { width: 12px; height: 12px; transition: transform var(--t); }
.nav-item.open .chev { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 224px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(96, 72, 32, .14); padding: 8px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav-item:hover .drop-menu, .nav-item.open .drop-menu { opacity: 1; visibility: visible; transform: none; }
.nav-links .drop-menu a { display: block; color: var(--text-2); font-size: 13.5px; font-weight: 500; padding: 9px 12px; border-radius: 8px; }
.nav-links .drop-menu a:hover { color: var(--text); background: var(--hover); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; padding: 88px 0 72px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(247, 242, 234, .8) 0%, rgba(247, 242, 234, .96) 100%), url("images/bg-hero.jpg") center / cover no-repeat;
  pointer-events: none;
}
.hero-glow {
  position: absolute; inset: -20% -30% auto auto; width: 720px; height: 720px; z-index: 1;
  background: radial-gradient(circle at 70% 20%, rgba(192, 83, 47, .1), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow { font-size: 11.5px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .18em; margin-bottom: 18px; }

h1 { font-family: var(--display); font-size: clamp(36px, 4.8vw, 58px); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; }
h1 em { font-style: italic; color: var(--accent); }
.lede { margin-top: 22px; font-size: 16.5px; color: var(--text-2); max-width: 540px; }
.hero-tagline { margin-top: 18px; font-family: var(--display); font-size: clamp(17px, 2.2vw, 22px); font-style: italic; font-weight: 600; color: var(--accent); letter-spacing: -.01em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { margin-top: 26px; font-size: 13px; font-weight: 600; color: var(--text-3); letter-spacing: .04em; }
.hero-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hstat { font-size: 12.5px; color: var(--text-3); font-weight: 500; }
.hstat b { display: block; color: var(--text); font-family: var(--display); font-size: 19px; font-weight: 600; margin-bottom: 2px; font-variant-numeric: tabular-nums; }

/* hero entrance animation */
.hero-copy > * { opacity: 0; animation: riseIn .7s var(--ease) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .06s; }
.hero-copy > *:nth-child(2) { animation-delay: .16s; }
.hero-copy > *:nth-child(3) { animation-delay: .26s; }
.hero-copy > *:nth-child(4) { animation-delay: .36s; }
.hero-copy > *:nth-child(5) { animation-delay: .46s; }
.hero-copy > *:nth-child(n+6) { animation-delay: .56s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* audit card visual */
.hero-visual { position: relative; }
.audit-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 30px 70px rgba(96, 72, 32, .16);
  position: relative;
  animation: float 7s ease-in-out infinite;
}
.audit-card::before {
  content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.audit-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.audit-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); }
.audit-name { font-family: var(--display); font-size: 17px; font-weight: 600; margin-top: 4px; }
.ring {
  width: 78px; height: 78px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--surface-3) 0);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--surface); }
.ring span { position: relative; font-size: 22px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

.audit-bars { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.bar { display: grid; grid-template-columns: 118px 1fr 28px; align-items: center; gap: 12px; font-size: 12px; }
.bar > span { color: var(--text-3); font-weight: 600; }
.bar b { font-size: 12px; color: var(--text-2); text-align: right; font-variant-numeric: tabular-nums; }
.track { height: 6px; border-radius: 4px; background: var(--surface-3); overflow: hidden; }
.track i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-strong)); }

.audit-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.tag.ok { background: color-mix(in srgb, var(--ok) 14%, transparent); color: var(--ok); }
.tag.miss { background: color-mix(in srgb, var(--warn) 12%, transparent); color: var(--warn); }
.audit-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); }

/* ── value strip ─────────────────────────────────────────── */
.value-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 22px 0; }
.value-grid { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: space-between; }
.value-item { display: flex; flex-direction: column; gap: 2px; }
.value-item b { font-size: 13.5px; font-weight: 700; color: var(--text); }
.value-item span { font-size: 12px; color: var(--text-3); }

/* ── sections ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section h2 { font-family: var(--display); font-size: clamp(30px, 3.8vw, 42px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; max-width: 640px; }
.section .sub { margin-top: 14px; font-size: 15.5px; color: var(--text-2); max-width: 560px; }
.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; }
.sec-head.center h2, .sec-head.center .sub { margin-left: auto; margin-right: auto; }

/* ── services ────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-grid > *, .dept-grid > *, .pkg-grid > *, .who-grid > *, .show-grid > *, .why-grid > *, .example-grid > * { min-width: 0; }
.svc-card {
  background: linear-gradient(170deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--t), border-color var(--t);
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--accent-border); }
.svc-top { display: flex; align-items: center; gap: 12px; }
.svc-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 21px; height: 21px; }
.svc-card h3 { font-family: var(--display); font-size: 16px; font-weight: 600; line-height: 1.3; }
.svc-card p { font-size: 13.5px; color: var(--text-2); flex: 1; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--border); }
.svc-meta .price { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }
.svc-meta .time { font-size: 12px; font-weight: 600; color: var(--text-3); white-space: nowrap; }
.svc-foot { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.svc-foot p { font-size: 14px; color: var(--text-2); }
.svc-foot p a { font-weight: 700; }

/* ── departments grid ────────────────────────────────────── */
.dept-sec { background: radial-gradient(900px 420px at 50% 0%, var(--accent-soft), transparent 60%); border-top: 1px solid var(--border); }
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dept-card {
  background: linear-gradient(170deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 14px; color: var(--text);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.dept-card:hover { transform: translateY(-4px); border-color: var(--accent-border); box-shadow: 0 18px 40px rgba(192, 83, 47, .1); color: var(--text); }
.dept-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.dept-icon svg { width: 22px; height: 22px; }
.dept-card h3 { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--text); }
.dept-card p { font-size: 13.5px; color: var(--text-2); flex: 1; }
.dept-link { font-size: 13px; font-weight: 700; color: var(--accent); }
.dept-card:hover .dept-link { color: var(--accent-strong); }

/* department pages */
.dept-hero { padding: 96px 0 80px; }
.dept-hero .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.dept-hero .hero-copy { max-width: 640px; }
.svc-grid.dept { grid-template-columns: repeat(3, 1fr); }

/* department hero frame visual */
.dept-visual { align-self: center; }
.hero-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: 0 34px 80px rgba(96, 72, 32, .18);
  animation: float 7s ease-in-out infinite;
}
.hero-frame img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(10, 10, 14, .62) 80%, rgba(8, 8, 12, .96) 100%); pointer-events: none; }
.hero-frame figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 22px 18px; display: flex; flex-direction: column; gap: 5px; }
.hero-frame .frame-title { font-family: var(--display); font-size: 18px; font-weight: 600; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .6), 0 2px 10px rgba(0, 0, 0, .45); }
.hero-frame .frame-sub { font-size: 12px; color: rgba(255, 255, 255, .95); letter-spacing: .02em; text-shadow: 0 1px 2px rgba(0, 0, 0, .65); }

/* ── pricing ─────────────────────────────────────────────── */
.pricing-sec { background: radial-gradient(1200px 500px at 80% 0%, var(--accent-soft), transparent 60%), var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pkg-card {
  background: linear-gradient(170deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform var(--t), border-color var(--t);
}
.pkg-card:hover { transform: translateY(-4px); border-color: var(--accent-border); }
.pkg-card.featured { border-color: var(--accent-border); box-shadow: 0 24px 60px rgba(192, 83, 47, .12); }
.pkg-badge {
  position: absolute; top: -12px; left: 26px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fffdf8; background: var(--accent); padding: 4px 12px; border-radius: 20px;
}
.pkg-name { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.pkg-price b { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -.01em; }
.pkg-for { font-size: 13.5px; color: var(--text-2); }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 4px 0 8px; flex: 1; }
.pkg-list li { font-size: 13.5px; color: var(--text-2); padding-left: 22px; position: relative; }
.pkg-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--accent); background: var(--accent-soft); }
.pkg-card .btn { margin-top: auto; }
.pkg-note { margin-top: 26px; font-size: 13px; color: var(--text-3); text-align: center; }
.pkg-cta { margin-top: 34px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.pkg-cta p { font-size: 15px; font-weight: 700; color: var(--text-2); }

/* ── free digital audit ──────────────────────────────────── */
.audit-sec { background: radial-gradient(1200px 500px at 20% 0%, var(--accent-soft), transparent 60%), var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.audit-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.audit-checks { list-style: none; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.audit-checks li { font-size: 13.5px; color: var(--text-2); padding-left: 24px; position: relative; }
.audit-checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid var(--accent); background: var(--accent-soft); }
.audit-note { margin-top: 16px; font-size: 13px; color: var(--text-3); }
.audit-facts { display: grid; grid-template-columns: 1fr; gap: 14px; }
.fact { display: flex; align-items: baseline; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.fact-num { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.fact-lbl { font-size: 13.5px; color: var(--text-2); }

/* instant website check tool */
.instant-audit {
  margin-top: 72px; padding: 44px 40px;
  background: linear-gradient(170deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.ia-head { text-align: center; }
.ia-head h3 { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -.01em; }
.ia-head .sub { margin: 10px auto 0; max-width: 560px; font-size: 15px; color: var(--text-2); }
.ia-form { display: flex; gap: 12px; max-width: 560px; margin: 28px auto 0; }
.ia-input { flex: 1; }
.ia-status { text-align: center; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--text-2); min-height: 1em; }
.ia-status.err { color: var(--warn); }
.ia-result { margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--border); }
.ia-score { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; }
.ia-ring { width: 96px; height: 96px; }
.ia-ring span { font-size: 28px; }
.ia-score-text { text-align: left; min-width: 260px; }
.ia-grade { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.ia-url-line { font-size: 13px; color: var(--text-3); margin-top: 4px; word-break: break-all; }
.ia-facts { list-style: none; margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 34px; }
.ia-facts li { font-size: 13.5px; color: var(--text-2); display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--border); }
.ia-facts li.full { grid-column: 1 / -1; justify-content: center; text-align: center; border-bottom: none; color: var(--warn); font-weight: 600; }
.ia-facts b { font-weight: 700; white-space: nowrap; }
.ia-facts b.on { color: var(--ok); }
.ia-facts b.off { color: var(--text-3); }
.ia-facts b.n-a { color: var(--warn); }
.ia-caveat { margin-top: 20px; text-align: center; font-size: 12.5px; color: var(--text-3); }
.ia-cta { text-align: center; margin-top: 20px; }

/* ── why Vision 61 ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.why-card { background: linear-gradient(170deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform var(--t), border-color var(--t); }
.why-card:hover { transform: translateY(-4px); border-color: var(--accent-border); }
.why-card h3 { font-family: var(--display); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--text-2); }

/* ── how it works ────────────────────────────────────────── */
.process-sec { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.proc { border-left: 2px solid var(--border-2); padding: 4px 0 4px 20px; }
.proc-n { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: .1em; font-variant-numeric: tabular-nums; }
.proc h3 { font-family: var(--display); font-size: 17px; font-weight: 600; margin: 8px 0 6px; }
.proc p { font-size: 13.5px; color: var(--text-2); }
.proc-cta { margin-top: 40px; text-align: center; }

/* ── who we help ─────────────────────────────────────────── */
.who-sec { background: radial-gradient(900px 420px at 50% 0%, var(--accent-soft), transparent 60%); border-top: 1px solid var(--border); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.who-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  aspect-ratio: 4 / 3;
}
.who-card:hover { border-color: var(--accent-border); box-shadow: 0 22px 44px rgba(96, 72, 32, .16); }
.who-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.who-card:hover img { transform: scale(1.05); }
.who-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(10, 10, 14, .6) 72%, rgba(8, 8, 12, .95) 100%); pointer-events: none; }
.who-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 14px; }
.who-card figcaption b { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .55), 0 2px 8px rgba(0, 0, 0, .4); }
.who-card figcaption span { font-size: 12px; color: rgba(255, 255, 255, .94); text-shadow: 0 1px 2px rgba(0, 0, 0, .6); }
.who-note { margin-top: 20px; text-align: center; font-size: 12.5px; color: var(--text-3); }

/* ── studio showcase ─────────────────────────────────────── */
.showcase-sec { border-top: 1px solid var(--border); }
.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.show-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  aspect-ratio: 4 / 3;
}
.show-card:hover { border-color: var(--accent-border); box-shadow: 0 22px 44px rgba(96, 72, 32, .16); }
.show-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.show-card:hover img { transform: scale(1.05); }
.show-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(10, 10, 14, .6) 72%, rgba(8, 8, 12, .95) 100%); pointer-events: none; }
.show-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 14px; }
.show-card figcaption b { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .55), 0 2px 8px rgba(0, 0, 0, .4); }
.show-card figcaption span { font-size: 12px; color: rgba(255, 255, 255, .94); text-shadow: 0 1px 2px rgba(0, 0, 0, .6); }

/* ── example audit ───────────────────────────────────────── */
.example-sec { border-bottom: 1px solid var(--border); }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.example-card { background: linear-gradient(170deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.example-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.example-name { font-family: var(--display); font-size: 17px; font-weight: 600; margin-top: 4px; }
.example-badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--warn); background: color-mix(in srgb, var(--warn) 12%, transparent); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.example-rows { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.example-rows li { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--text-2); }
.example-rows b { font-size: 12px; font-weight: 700; white-space: nowrap; }
.example-rows .warn { color: var(--warn); }
.example-rows .okc { color: var(--ok); }
.example-opps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.example-opps li { font-size: 13.5px; color: var(--text-2); padding-left: 22px; position: relative; }
.example-opps li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--accent); background: var(--accent-soft); }
.example-foot { margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 20px; transition: border-color var(--t); }
.faq-item:hover { border-color: var(--border-2); }
.faq-item summary { cursor: pointer; font-size: 15px; font-weight: 700; color: var(--text); padding: 18px 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; font-weight: 600; color: var(--accent); flex-shrink: 0; transition: transform var(--t); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14px; color: var(--text-2); padding: 0 0 18px; }

/* ── final CTA ───────────────────────────────────────────── */
.final-cta { position: relative; padding: 96px 0; text-align: center; background: radial-gradient(1000px 500px at 50% 110%, var(--accent-soft), transparent 60%), var(--bg-2); border-top: 1px solid var(--border); overflow: hidden; }
.final-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(247, 242, 234, .86) 0%, rgba(247, 242, 234, .96) 100%), url("images/bg-cta.jpg") center / cover no-repeat;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
.final-cta p { margin: 16px auto 0; max-width: 520px; font-size: 15.5px; color: var(--text-2); }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── contact ─────────────────────────────────────────────── */
.contact-sec { background: radial-gradient(900px 420px at 50% 100%, var(--accent-soft), transparent 60%); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.contact-form { background: linear-gradient(170deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.input {
  font: 500 14px/1.4 var(--font); color: var(--text);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; transition: border-color var(--t);
}
.input:focus { outline: none; border-color: var(--accent); }
.input::placeholder { color: var(--text-3); }
.select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-3) 50%), linear-gradient(135deg, var(--text-3) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.textarea { resize: vertical; min-height: 96px; }
.form-status { font-size: 13px; font-weight: 600; color: var(--ok); min-height: 1em; }
.form-note { font-size: 12px; color: var(--text-3); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 22px; }
.info-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; font-size: 14px; color: var(--text); }
.info-row + .info-row { border-top: 1px solid var(--border); }
.info-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); flex-shrink: 0; }
.info-row a { font-weight: 600; }
.info-row span:not(.info-label) { text-align: right; color: var(--text-2); }

/* ── footer ──────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.footer-logo { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-brand b { font-family: var(--display); color: var(--text); font-weight: 600; }
.footer-brand em { display: block; font-style: normal; font-size: 11.5px; color: var(--text-3); }
.footer-links { display: flex; gap: 6px 18px; flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-size: 13px; font-weight: 500; }
.footer-links a:hover { color: var(--text); }
.footer-legal { font-size: 12px; color: var(--text-3); }

/* ── a11y, loading & consent ─────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 18px; background: var(--accent); color: #fffdf8; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus-visible { left: 0; color: #fffdf8; }

.page-loader { position: fixed; inset: 0; z-index: 9990; display: flex; align-items: center; justify-content: center; background: var(--bg); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s var(--ease), visibility .45s; }
.page-loader.show { opacity: 1; visibility: visible; }
.page-loader.done { opacity: 0; visibility: hidden; }
.page-loader span { width: 36px; height: 36px; border-radius: 50%; border: 3px solid color-mix(in srgb, var(--accent) 25%, transparent); border-top-color: var(--accent); animation: loader-spin .8s linear infinite; }
@keyframes loader-spin { to { transform: rotate(360deg); } }

.who-card img, .show-card img, .hero-frame img {
  background: linear-gradient(100deg, #ede5d7 30%, #f7f2ea 50%, #ede5d7 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s linear infinite;
}
@keyframes skeleton-shimmer { to { background-position: -200% 0; } }

.cookie-banner { position: fixed; left: 16px; bottom: 16px; z-index: 9980; max-width: 560px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 18px 44px rgba(13, 13, 15, .18); padding: 18px 20px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0 0 14px; font-size: 13px; line-height: 1.5; color: var(--text-2); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { margin: 0; }

/* ── reveal ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .audit-card { animation: none; }
  .hero-frame { animation: none; }
  .hero-copy > * { opacity: 1 !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .page-loader { display: none; }
  .who-card img, .show-card img, .hero-frame img { animation: none; }
}

/* ── responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 12px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 12px !important; }
  .nav-cta { margin-left: 0; margin-top: 6px; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-item { width: 100%; }
  .nav-links .drop-toggle { width: 100%; justify-content: space-between; padding: 12px 12px; }
  .drop-menu { position: static; width: 100%; box-shadow: none; border: none; background: transparent; padding: 0 0 0 8px; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-item.open .drop-menu { display: block; }
  .nav-links .drop-menu a { padding: 11px 12px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .dept-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 0 56px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid.dept { grid-template-columns: 1fr 1fr; }
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg-card.featured { order: -1; }
  .example-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .show-grid { grid-template-columns: 1fr 1fr; }
  .dept-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid.dept { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-stats { gap: 18px; }
  .bar { grid-template-columns: 96px 1fr 24px; }
  .audit-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .example-opps { grid-template-columns: 1fr; }
  .value-grid { justify-content: flex-start; }
  .who-grid { grid-template-columns: 1fr; }
  .show-grid { grid-template-columns: 1fr; }
  .ia-form { flex-direction: column; }
  .ia-facts { grid-template-columns: 1fr; }
  .ia-score-text { min-width: 0; }
  .instant-audit { padding: 30px 20px; margin-top: 56px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}