/* Self-hosted fonts (see fonts/README.txt) */
@font-face{font-family:'DM Sans';font-style:normal;font-weight:300;font-display:swap;src:url('fonts/dm-sans-300.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/dm-sans-400.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/dm-sans-500.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/dm-sans-600.woff2') format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/dm-serif-display-400.woff2') format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:italic;font-weight:400;font-display:swap;src:url('fonts/dm-serif-display-400-italic.woff2') format('woff2');}
@font-face{font-family:'DM Mono';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/dm-mono-400.woff2') format('woff2');}
@font-face{font-family:'DM Mono';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/dm-mono-500.woff2') format('woff2');}

/* ============================================
   WOODCOCK ACCOUNTING — SHARED DESIGN SYSTEM
   ============================================ */

:root {
  --ink:       #0e1117;
  --ink-soft:  #3a3f4b;
  --ink-muted: #656c78;   /* 4.89:1 on --canvas, 5.29:1 on --paper — WCAG AA on both page backgrounds */
  --ink-light: #656c78;   /* de-emphasised note text; aliased to --ink-muted so it stays WCAG AA */
  --canvas:    #f7f6f2;
  --paper:     #ffffff;
  --accent:    #1a4d3e;
  --accent-2:  #2d7a5f;
  --accent-lt: #e8f2ee;
  --gold:      #c9a84c;
  --gold-lt:   #faf4e6;
  --red:       #c0392b;
  --red-lt:    #fff2f2;
  --border:    #e2dfd7;   /* decorative dividers only — too light for interactive boundaries */
  --border-ui: #8b8578;   /* form-control boundaries: 3.67:1 on --paper — WCAG 2.2 SC 1.4.11 */
  --radius:    4px;
  --radius-lg: 12px;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --mono: 'DM Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-lt);
  padding: 4px 10px;
  border-radius: 2px;
}
.tag--gold { color: #856919; background: var(--gold-lt); }  /* 4.75:1 on --gold-lt */

/* ── NAVIGATION ── */
/* Scoped to the site header only (a direct child of <body>).
   A bare `nav {}` selector would also style the breadcrumb and
   related-guides landmarks, making them sticky, 64px tall and flex —
   which overlaps the header and breaks their layout. */
body > nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  background: url("assets/logo-mark.svg") center / contain no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  font-size: 0;              /* hides the fallback "W" glyph when the SVG loads */
  flex-shrink: 0;
}
/* Reversed mark for the dark footer */
footer .nav-logo-mark { background-image: url("assets/logo-mark-white.svg"); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--radius);
  padding: 10px 20px;
}

.btn--primary { background: var(--accent); color: white; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,77,62,0.25); }

.btn--outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn--outline:hover { background: var(--accent-lt); }

.btn--white { background: white; color: var(--accent); }
.btn--white:hover { opacity: 0.9; }

.btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: 6px; }

/* ── PAGE HERO (for sub-pages) ── */
.page-hero {
  padding: 56px 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.breadcrumb { font-size: 0.775rem; color: var(--ink-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 14px 0 16px;
  max-width: 780px;
}

.page-hero .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.7;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--alt { background: var(--paper); }
.section--tight { padding: 56px 0; }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.2;
}
.section-header p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: var(--ink); color: white; padding: 64px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: white; }

.icaew-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.icaew-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #8a6d1e;
  font-family: var(--mono);
}
.launch-badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── CALLOUTS (used in articles) ── */
.callout {
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { margin: 0; color: var(--accent); font-weight: 500; font-size: 0.9rem; }
.callout .callout-title { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px; }

.callout--gold { background: var(--gold-lt); border-color: var(--gold); }
.callout--gold p { color: #7a5f1a; }
.callout--gold .callout-title { color: #a07c22; }

.callout--warning { background: #fff8f0; border-color: #e07b00; }
.callout--warning p { color: #7a4000; }
.callout--warning .callout-title { color: #e07b00; }

.callout--red { background: var(--red-lt); border-color: var(--red); }
.callout--red p { color: #7a1a1a; }
.callout--red .callout-title { color: var(--red); }

/* ── TABLES ── */
table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.875rem; background: var(--paper); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
th { background: var(--accent); color: white; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.8rem; font-family: var(--mono); letter-spacing: 0.04em; }
td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--ink-soft); vertical-align: top; line-height: 1.5; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--canvas); }
td:first-child { font-weight: 500; color: var(--ink); }
.highlight-row td { background: rgba(26,77,62,0.06) !important; font-weight: 600; }
.highlight-row td:first-child { color: var(--accent); }

/* ── ARTICLE BODY TYPOGRAPHY ── */
.article-body h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin: 40px 0 16px; line-height: 1.25; }
.article-body h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin: 28px 0 12px; }
.article-body p { color: var(--ink-soft); font-size: 0.975rem; line-height: 1.8; margin-bottom: 16px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body ul, .article-body ol { color: var(--ink-soft); font-size: 0.975rem; line-height: 1.8; margin: 12px 0 16px 20px; }
.article-body li { margin-bottom: 6px; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

.article-cta {
  background: var(--accent);
  color: white;
  border-radius: 12px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.article-cta h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; color: white; }
.article-cta p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 20px; }

/* ── LINKS ON DARK (ACCENT) BACKGROUNDS ──
   Without this, inline links fall back to the browser default blue/purple,
   which is unreadable on --accent. White gives 9.66:1; underlined so the
   link is not signalled by colour alone (WCAG 1.4.1). Buttons are excluded
   because they carry their own background and colour. */
.article-cta a:not(.btn),
.waitlist-banner a:not(.btn),
.calc-inline-cta a:not(.btn),
.site-launch-banner a:not(.btn),
.waitlist-text a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.article-cta a:not(.btn):hover,
.waitlist-banner a:not(.btn):hover,
.calc-inline-cta a:not(.btn):hover,
.site-launch-banner a:not(.btn):hover,
.waitlist-text a:not(.btn):hover {
  color: var(--gold-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links a { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
}

/* ============================================
   PAGE COMPONENTS — HERO, CARDS, GRIDS, ETC.
   ============================================ */

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.nav-cta-desktop { white-space: nowrap; }

/* ── HOMEPAGE HERO ── */
.hero {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26,77,62,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--accent); flex-shrink: 0; }

.hero-eyebrow span {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.12;
  color: var(--ink);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 48px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }

.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--ink-muted); }

.trust-icon {
  width: 18px; height: 18px;
  background: var(--accent-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.stat {
  flex: 1;
  min-width: 150px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-number { font-family: var(--serif); font-size: 2.25rem; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; color: var(--ink-muted); font-weight: 500; }

/* ── WAITLIST BANNER ── */
.waitlist-banner { background: var(--accent); color: white; padding: 56px 0; position: relative; overflow: hidden; }
.waitlist-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.waitlist-inner { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.waitlist-text h2 { font-family: var(--serif); font-size: 1.75rem; margin-bottom: 8px; color: white; }
.waitlist-text p { opacity: 0.8; font-size: 0.95rem; max-width: 480px; }

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 340px;
}
.waitlist-pill {
  display: flex;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
  outline: none;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--ink-muted); }

.waitlist-form button {
  padding: 14px 20px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.waitlist-form button:hover { background: #b8962e; }

.waitlist-success {
  display: none;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

.waitlist-note { font-size: 0.75rem; opacity: 0.65; margin-top: 8px; text-align: right; }

/* ── PRICING PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.package-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}
.package-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(26,77,62,0.1); transform: translateY(-2px); }

.package-card--featured { border-color: var(--accent); background: var(--ink); color: white; }
.package-card--featured .package-price,
.package-card--featured .package-name,
.package-card--featured .package-desc { color: white; }
.package-card--featured .package-feature { color: rgba(255,255,255,0.9); }
.package-card--featured .package-feature svg { color: var(--gold); }
.package-card--featured .package-divider { border-color: rgba(255,255,255,0.15); }
.package-card--featured .btn--outline { color: white; border-color: rgba(255,255,255,0.4); }
.package-card--featured .btn--outline:hover { background: rgba(255,255,255,0.1); }

.featured-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.package-name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 4px; }
.package-desc { font-size: 0.825rem; color: var(--ink-muted); margin-bottom: 20px; line-height: 1.5; }
.package-price { font-family: var(--serif); font-size: 2.25rem; color: var(--ink); margin-bottom: 4px; }
.package-price span { font-family: var(--sans); font-size: 0.85rem; font-weight: 400; opacity: 0.65; }
.package-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.package-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--ink-soft); }
.package-feature svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.package-cta { margin-top: 28px; width: 100%; justify-content: center; padding: 12px; border-radius: 6px; }

/* ── REASONS / WHY US GRID ── */
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.reason { display: flex; flex-direction: column; gap: 12px; }
.reason-icon {
  width: 44px; height: 44px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.reason h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.reason p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.about-credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cred {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--accent-lt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.cred-icon { font-size: 1.1rem; flex-shrink: 0; }
.cred-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.cred-text span { font-size: 0.775rem; color: var(--ink-muted); }

.about-photo {
  background: linear-gradient(135deg, var(--accent-lt) 0%, rgba(45,122,95,0.1) 100%);
  border-radius: 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1.5px solid var(--border);
  text-align: center;
  padding: 32px;
}
.about-monogram {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: white;
}
.about-portrait {
  width: 200px;
  height: 250px;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 3px solid var(--paper);
  box-shadow: 0 10px 30px rgba(26,77,62,0.18);
  display: block;
}
.about-photo h2 { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.about-photo p { font-size: 0.825rem; color: var(--ink-muted); max-width: 220px; }

/* ── TIMELINE (about page) ── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 28px; border-left: 2px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--canvas);
}
.timeline-year { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 4px; }
.timeline-content h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.timeline-content p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

/* ── HOW IT WORKS / STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step { padding: 24px; text-align: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--serif);
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-family: var(--serif); font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.step p { font-size: 0.825rem; color: var(--ink-soft); line-height: 1.6; }

/* ── ARTICLES / GUIDES GRID ── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.article-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,77,62,0.1); }

.article-thumb { height: 6px; background: var(--accent); }
.article-thumb--gold { background: var(--gold); }
.article-thumb--ink { background: var(--ink); }
.article-thumb--red { background: var(--red); }

.article-body-card { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.article-read-time { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-muted); }
.article-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.article-card p { font-size: 0.825rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.article-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.8rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.article-link svg { transition: transform 0.2s; }
.article-card:hover .article-link svg { transform: translateX(4px); }

/* ── FILTER PILLS (guides hub) ── */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-pill {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--canvas); border-radius: var(--radius); border: 1px solid var(--border); }
.checklist-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.checklist-item p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.checklist-item strong { color: var(--ink); }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  gap: 16px;
  user-select: none;
}
.faq-q:hover { background: var(--canvas); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a-inner a { color: var(--accent); }

/* ── IR35 STATUS GRID (shared) ── */
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.status-card { padding: 20px; border-radius: 8px; border: 1.5px solid var(--border); }
.status-card--outside { border-color: var(--accent); background: #f0faf5; }
.status-card--inside { border-color: var(--red); background: var(--red-lt); }
.status-card-title { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.status-card--outside .status-card-title { color: var(--accent); }
.status-card--inside .status-card-title { color: var(--red); }
.status-card ul { margin: 0; padding-left: 16px; }
.status-card li { font-size: 0.85rem; margin-bottom: 4px; }
.status-card--outside li { color: var(--accent); }
.status-card--inside li { color: var(--red); }
.inside-row td { background: #fff2f2 !important; }
.inside-row td:first-child { color: var(--red); }
.outside-row td { background: #f0faf5 !important; }
.outside-row td:first-child { color: var(--accent); }
.tag--red { color: var(--red); background: var(--red-lt); }

/* ── DECISION TREE (VAT guide) ── */
.decision-tree { background: var(--paper); border: 1.5px solid var(--border); border-radius: 12px; padding: 28px; margin: 28px 0; }
.decision-tree h3 { margin-top: 0; margin-bottom: 16px; }
.dt-step { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
.dt-num { width: 28px; height: 28px; background: var(--accent); border-radius: 50%; color: white; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.dt-step p { margin: 0; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }
.dt-step strong { color: var(--ink); }

/* ── LONG-FORM ARTICLE BODY WRAPPER ── */
.long-body { padding: 48px 24px 80px; }

/* ── FOOTER BOTTOM LINKS ── */
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT FORM (contact page) ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.825rem; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border-ui);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.775rem; color: var(--ink-muted); }
.contact-form input[type="checkbox"] { width: 24px; height: 24px; flex-shrink: 0; accent-color: var(--accent); }  /* 24x24 min target — WCAG 2.2 SC 2.5.8 */

/* ── COOKIE CONSENT BANNER ──
   Fixed to the viewport bottom so injecting it causes no layout shift.
   Accept and Reject are given equal visual weight, as the ICO requires. */
.consent-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--paper);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(14, 17, 23, 0.14);
  padding: 18px 24px;
}
.consent-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.consent-text { flex: 1 1 420px; }
.consent-text h2 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.consent-text p {
  font-size: 0.825rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.consent-text a { color: var(--accent); }
.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.consent-actions .btn { min-height: 44px; }
@media (max-width: 640px) {
  .consent-bar { padding: 16px; max-height: 70vh; overflow-y: auto; }
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1 1 100%; justify-content: center; }
}

.form-error {
  background: var(--red-lt);
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: #8f2a1f;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 14px 16px;
  margin-top: 16px;
}
.form-error[hidden] { display: none; }
.form-error a { color: #8f2a1f; }

.form-success {
  display: none;
  background: var(--accent-lt);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-info-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 16px; color: var(--ink); }
.contact-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-row strong { display: block; font-size: 0.875rem; color: var(--ink); margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 0.825rem; color: var(--ink-muted); text-decoration: none; }
.contact-info-row a:hover { color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }

/* ============================================
   RESPONSIVE OVERRIDES FOR PAGE COMPONENTS
   ============================================ */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 280px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-cta-desktop { display: none; }
  .waitlist-inner { flex-direction: column; align-items: stretch; }
  .waitlist-form { min-width: 100%; }
  .stat { min-width: 45%; }
  .hero { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .status-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stat { min-width: 100%; border-right: none; }
  .steps { grid-template-columns: 1fr; }
  .waitlist-pill { flex-direction: column; }
  .waitlist-pill button { width: 100%; }
  .package-card { padding: 24px; }
  .hero h1 { font-size: 1.75rem; }
  table { font-size: 0.8rem; }
  th, td { padding: 8px 10px; }
}

/* ── REGULATORY DISCLOSURE (Provision of Services Regulations 2009) ── */
.regulatory-disclosure {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}
.regulatory-disclosure p {
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 900px;
}

/* ── ICAEW MEMBER FIRM LOGO ──
   Per ICAEW Logo Guidelines v1.2 (Nov 2024):
   - official unaltered PNG artwork (white-with-red variant, for dark backgrounds)
   - the 228px uniform padding inside the PNG is ICAEW's own clear space; the
     100px canvas height renders the artwork itself at ~53px, above the 10mm/50px
     minimum. Nothing may intrude into that padding.
   - not in the top-left of the page, not adjacent to our own logo, not inside a
     box or holding device, no effects, no recolouring, and static at all times. */
.icaew-logo {
  display: block;
  width: 189px;
  height: 100px;
  margin: 0 0 20px;
}
@media (prefers-reduced-motion: no-preference) {
  .icaew-logo { transition: none; }
}

/* ── COMING SOON BADGE (guides hub) ── */
.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.article-card--coming-soon {
  position: relative;
}

/* ============================================
   CALCULATORS + PREMIUM POLISH (added)
   ============================================ */

/* Homepage waitlist consent checkbox (dark banner) */
.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  grid-column: 1 / -1;
}
.waitlist-consent input { margin-top: 1px; flex-shrink: 0; width: 24px; height: 24px; accent-color: var(--gold); }  /* 24x24 min target — WCAG 2.2 SC 2.5.8 */
.waitlist-consent label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

/* ── TABS ── */
.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(14,17,23,0.04);
}
.calc-tab {
  flex: 1 1 auto;
  min-width: 140px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.calc-tab:hover { color: var(--ink); background: var(--canvas); }
.calc-tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,77,62,0.25);
}

/* ── PANELS ── */
.calc-panel { display: none; }
.calc-panel.active { display: block; animation: calcFade 0.3s ease; }
@keyframes calcFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.calc-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 30px -18px rgba(14,17,23,0.25);
}
.calc-card h2 { font-family: var(--serif); font-size: 1.6rem; line-height: 1.2; }
.calc-intro { color: var(--ink-soft); margin: 10px 0 24px; font-size: 0.95rem; }

/* ── FIELDS ── */
.calc-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.calc-field label { font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.calc-field input[type="number"],
.calc-field input[type="text"],
.calc-field input[type="email"],
.calc-field select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-ui);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-lt);
  background: var(--paper);
}
.calc-hint { font-size: 0.78rem; color: var(--ink-muted); margin-top: 6px; }
.calc-field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.calc-field--check input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.calc-field--check label { font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 0; cursor: pointer; }
.calc-go { width: 100%; justify-content: center; margin-top: 6px; }

/* ── RESULTS ── */
.calc-result {
  margin-top: 28px;
  border-top: 1px dashed var(--border);
  padding-top: 26px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.calc-result.show { opacity: 1; transform: none; }
.result-headline {
  background: var(--accent-lt);
  border: 1px solid #d4e7df;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 22px;
}
.result-label {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.result-big {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
}
.result-sub { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); }

.result-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.result-table td { padding: 9px 0; color: var(--ink-soft); }
.result-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; color: var(--ink); }
.result-table tr.result-rule td { border-top: 1px solid var(--border); padding-top: 12px; font-weight: 600; color: var(--ink); }
.result-table tr.result-total td {
  border-top: 2px solid var(--accent);
  padding-top: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── COMPARE COLUMNS ── */
.result-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  background: var(--canvas);
}
.compare-col--win { border-color: var(--accent-2); background: var(--accent-lt); box-shadow: 0 6px 18px -12px rgba(26,77,62,0.5); }
.compare-col h3 { font-size: 0.9rem; margin-bottom: 12px; color: var(--ink); }
.compare-line { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 5px 0; color: var(--ink-soft); }
.compare-line span:last-child { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--ink); }
.compare-total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-weight: 600; }
.compare-total span { color: var(--accent) !important; }
.calc-note { font-size: 0.8rem; color: var(--ink-muted); margin-top: 16px; line-height: 1.5; }

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.calc-disclaimer a { color: var(--accent); }

/* ── SIGNUP CARD ── */
.signup-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 14px 40px -22px rgba(14,17,23,0.3);
}
.signup-card h2 { font-family: var(--serif); font-size: 1.7rem; margin: 14px 0 10px; }
.signup-card > p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 24px; }
.signup-form { max-width: 480px; margin: 0 auto; text-align: left; }
.signup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.signup-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.signup-form .form-note { text-align: center; }

/* ── PREMIUM POLISH: gentle depth & motion on existing cards ── */
.package-card,
.reason,
.article-card { transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.reason:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -22px rgba(14,17,23,0.4);
  border-color: #d4e7df;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(14,17,23,0.45);
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -24px rgba(14,17,23,0.4);
}
.stat { transition: transform 0.2s ease; }
.stat:hover { transform: translateY(-2px); }

@media (max-width: 600px) {
  .calc-card { padding: 24px; }
  .signup-card { padding: 28px 22px; }
  .result-compare, .signup-row { grid-template-columns: 1fr; }
  .result-big { font-size: 2.1rem; }
  .calc-tab { min-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .calc-panel.active { animation: none; }
  .calc-result { transition: none; }
  .package-card, .reason, .article-card, .stat { transition: none; }
}

/* ── CALCULATOR INLINE LEAD CAPTURE ── */
.calc-inline-cta {
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 14px 36px -20px rgba(26,77,62,0.7);
  animation: calcFade 0.35s ease;
}
.cic-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.cic-emoji { font-size: 1.5rem; line-height: 1; }
.cic-head strong { font-family: var(--serif); font-size: 1.15rem; display: block; margin-bottom: 6px; }
.cic-head p { font-size: 0.875rem; color: rgba(255,255,255,0.82); line-height: 1.55; margin: 0; }
.cic-row { display: flex; gap: 10px; }
.cic-row input[type="email"] {
  flex: 1; min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem;
  background: rgba(255,255,255,0.95); color: var(--ink);
}
.cic-row .btn { flex-shrink: 0; }
.cic-consent { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; cursor: pointer; }
.cic-consent input { margin-top: 1px; flex-shrink: 0; width: 24px; height: 24px; accent-color: var(--gold); }  /* 24x24 min target — WCAG 2.2 SC 2.5.8 */
.cic-consent span { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.45; }
.cic-success {
  margin-top: 6px; padding: 14px 16px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
}
@media (max-width: 600px) {
  .cic-row { flex-direction: column; }
  .cic-row .btn { width: 100%; justify-content: center; }
}


/* Visible keyboard focus (WCAG 2.4.7) */
:focus-visible{outline:3px solid var(--accent-2)!important;outline-offset:2px;}
/* Site launch banner */
.site-launch-banner{background:var(--accent);color:#fff;font-family:var(--mono);font-size:0.72rem;letter-spacing:0.02em;line-height:1.5;padding:8px 0;text-align:center;}
.site-launch-banner .container{max-width:960px;}
