/* ══════════════════════════════════════════
   RESET & BASE
   Design: Premium UK Editorial Consulting
   Palette: Ink Navy · Warm Gold · Off-White
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink:          #18181b;
  --ink-soft:     #27272a;
  --gold:         #b8860b;
  --gold-light:   #d4a017;
  --gold-pale:    #fef9ee;
  --gold-border:  #e8d48a;
  --slate:        #3f4554;
  --muted:        #71717a;
  --border:       #e4e4e7;
  --border-light: #f1f1f0;
  --bg:           #faf9f7;
  --bg-warm:      #f5f4f0;
  --white:        #ffffff;
  --success:      #15803d;
  --error:        #b91c1c;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --shadow-xs:    0 1px 3px rgba(0,0,0,.08);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.09);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-gold:  0 4px 20px rgba(184,134,11,.18);
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.2s; }
a:hover { color: var(--gold-light); text-decoration: underline; }

h1,h2,h3,h4 {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p  { margin: 0 0 1.25rem; font-size: 16.5px; font-family: "Georgia", serif; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .5rem; }

/* sans-serif utility */
.sans { font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none !important;
  line-height: 1;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  text-decoration: none !important;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-small  { padding: 8px 18px; font-size: 12px; }
.btn-block  { width: 100%; }
.btn-submit { margin-top: 4px; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.disclaimer-bar {
  background: #1a1a0e;
  color: #d4a017;
  font-size: 11.5px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .05em;
  font-weight: 700;
  border-bottom: 1px solid #2e2a0e;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 24px;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.logo-mark {
  display: none;
}
.logo-text {
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-text em {
  font-style: normal;
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px 28px;
  font-size: 13px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  justify-content: center;
}
.main-nav a {
  color: #d4d4d8;
  font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none !important;
}
.main-nav a:hover { color: var(--gold-light); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid var(--gold);
}
.btn-header-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  text-decoration: none !important;
}

.header-nav-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 24px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 100%;
}
.header-nav-secondary a {
  color: #71717a;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav-secondary a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e4e4e7;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 64px 0 52px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  background: var(--gold-pale);
}

.hero-text h1 {
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.18;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 700;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 24px auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  max-width: 780px;
}
.hero-bullets li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 15px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--slate);
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  text-align: left;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

/* ══════════════════════════════════════════
   ARTICLE
══════════════════════════════════════════ */
.article-section {
  background: var(--white);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

.article-body { max-width: 720px; }

.article-meta {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 20px 22px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-border);
}
.article-author strong { font-size: 14px; color: var(--ink); font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }
.article-author span  { font-size: 12px; color: var(--muted); font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }

.article-figure { margin: 32px 0; }
.article-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
figcaption {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  padding-left: 2px;
  font-style: italic;
}

.article-body h2 {
  font-size: 21px;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 { font-size: 18px; margin-top: 24px; }
.article-body p  { margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.article-body ul,
.article-body ol { margin-bottom: 16px; }
.article-body li { font-size: 15.5px; margin-bottom: 8px; }

blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 17.5px;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.7;
}
blockquote::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 20px;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}
blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-style: normal;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* 3-Pillar method */
.method-section {
  margin: 44px 0;
  padding: 32px 28px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.method-header { margin-bottom: 24px; }
.method-tag {
  display: inline-block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--gold-border);
}
.method-header h2 { font-size: 20px; margin-bottom: 6px; border: none; padding: 0; }
.method-header p  { font-size: 14px; color: var(--muted); margin: 0; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.method-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.method-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.method-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  font-family: "Georgia", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.method-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.method-card h3 { font-size: 14.5px; margin-bottom: 6px; }
.method-card p  { font-size: 13px; color: var(--muted); margin: 0; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }

.article-disclaimer {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-border);
  padding: 14px 16px;
  background: var(--bg-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
  line-height: 1.65;
}

/* Sidebar */
.article-sidebar { padding-top: 4px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-xs);
}
.sidebar-card-light {
  position: static;
}
.sidebar-card h3 { font-size: 15px; color: var(--ink); margin-bottom: 14px; }
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li { margin-bottom: 8px; }
.toc-list a {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: var(--slate);
  transition: color 0.2s;
  padding-left: 14px;
  position: relative;
}
.toc-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.toc-list a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   QUIZ
══════════════════════════════════════════ */
.quiz-section {
  padding: 56px 0 64px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quiz-container { max-width: 800px; }

.quiz-badge {
  display: inline-block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--gold-border);
}
.quiz-header h2 { font-size: 26px; margin-bottom: 10px; }
.quiz-header p  { font-size: 15px; color: var(--slate); font-family: "Georgia", serif; }
.quiz-header small {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.quiz-form {
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}

.quiz-step-counter {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quiz-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 0;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: width .4s ease;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}
.quiz-step.shake { animation: shake .35s; }

.quiz-question {
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--ink);
  line-height: 1.5;
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  font-size: 14.5px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--white);
  color: var(--slate);
}
.quiz-option input { margin-top: 2px; cursor: pointer; flex-shrink: 0; accent-color: var(--gold); }
.quiz-option:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
}
.quiz-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--ink);
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.quiz-result {
  margin-top: 20px;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
}
.quiz-result.result-low    { background: #fffbeb; border-color: #fbbf24; color: #78350f; }
.quiz-result.result-medium { background: #f0f9ff; border-color: #7dd3fc; color: #1e3a5f; }
.quiz-result.result-high   { background: #f0fdf4; border-color: #86efac; color: #14532d; }
.quiz-result h3 { margin-bottom: 8px; font-size: 17px; }
.quiz-result p  { font-size: 14px; margin-bottom: 12px; }

/* ══════════════════════════════════════════
   CALL / CALENDLY
══════════════════════════════════════════ */
.call-section {
  padding: 60px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.call-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.call-badge {
  display: inline-block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--gold-border);
}

.call-intro {
  font-size: 16px;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.75;
  font-family: "Georgia", serif;
}

.call-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}

.call-header h2 { font-size: 30px; margin-bottom: 12px; }

.call-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.call-list li {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px;
  padding: 7px 0 7px 22px;
  color: var(--slate);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.call-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}
.call-note  {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.call-legal {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.call-widget {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border);
}

/* Calendly consent placeholder */
.calendly-consent-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.calendly-consent-placeholder p {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--slate);
  margin: 0 0 4px;
}
.calendly-consent-placeholder small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  padding: 60px 0 64px;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 48px;
  align-items: flex-start;
}

.contact-text h2 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.contact-text p  { font-size: 14.5px; color: #a1a1aa; }

.contact-info {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-info li {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
  color: #a1a1aa;
  padding: 5px 0;
}
.contact-info a { color: var(--gold-light); }

.contact-form {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  border: 1px solid rgba(255,255,255,.1);
}

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  margin-bottom: 6px;
  color: #d4d4d8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.req { color: var(--gold-light); }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid #3f3f46;
  background: #0e0e11;
  color: #e4e4e7;
  font-size: 14.5px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,.15);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #52525b; }

.checkbox-row label.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  color: #9ca3af;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form-note {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 11.5px;
  color: #52525b;
  margin-top: 8px;
  margin-bottom: 0;
}

.form-success-message,
.form-error-message {
  margin-top: 20px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
}
.form-success-message {
  background: rgba(21,128,61,.12);
  border: 1px solid #16a34a;
  color: #bbf7d0;
}
.form-success-icon { font-size: 44px; margin-bottom: 10px; }
.form-success-message h3 { font-size: 18px; color: #86efac; margin-bottom: 10px; }
.form-success-message p  { font-size: 14px; color: #bbf7d0; margin-bottom: 8px; }
.form-success-redirect   { font-size: 12px; color: var(--gold-light); font-weight: 600; margin-top: 14px; }
.form-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.form-error-message {
  background: rgba(185,28,28,.12);
  border: 1px solid #ef4444;
  color: #fca5a5;
}
.form-error-icon { font-size: 44px; margin-bottom: 10px; }
.form-error-message h3 { font-size: 18px; color: #fca5a5; margin-bottom: 10px; }
.form-error-message p  { font-size: 14px; color: #fca5a5; margin-bottom: 14px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #111114;
  color: #71717a;
  padding: 0;
  border-top: 3px solid var(--gold);
}

.footer-disclaimer-section {
  background: #0a0a0c;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-disclaimer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-disclaimer-icon { color: var(--gold-light); font-size: 18px; }
.footer-disclaimer-title {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4d4d8;
  margin: 0;
}
.footer-disclaimer-text {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  line-height: 1.7;
  color: #71717a;
  margin: 0;
}
.footer-disclaimer-text strong { color: var(--gold-light); }

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 24px 32px;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-logo .logo-text {
  font-family: "Georgia", serif;
  font-size: 15px;
  font-weight: 700;
  color: #d4d4d8;
}
.footer-brand-text {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  line-height: 1.65;
  color: #52525b;
  margin: 0 0 4px;
}
.footer-brand-text strong { color: var(--gold-light); font-weight: 700; }

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-advertorial-notice {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-contact { gap: 14px; }
.footer-col h4 {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  margin: 0 0 4px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: #52525b;
  margin-bottom: 2px;
  transition: color .15s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-light); text-decoration: none; }
.footer-col a.footer-cta-link { color: var(--gold); font-weight: 700; }
.footer-col a.footer-cta-link:hover { color: var(--gold-light); }
.footer-col a .footer-link-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-contact-info {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  line-height: 1.75;
  color: #52525b;
  margin: 0;
}
.footer-contact-info strong { color: #a1a1aa; font-weight: 600; }
.footer-contact-info a { color: var(--gold); text-decoration: none; display: inline; }
.footer-contact-info a:hover { color: var(--gold-light); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px;
  background: #0a0a0c;
}
.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  color: #3f3f46;
  margin: 0;
  letter-spacing: 0.03em;
}
.footer-advertorial-badge {
  display: inline-block;
  padding: 6px 14px;
  background: transparent;
  color: var(--gold);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: 1px solid var(--gold-border);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-advertorial-badge:hover {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  background: #111114;
  color: #e4e4e7;
  padding: 14px 24px;
  display: none;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12.5px;
  color: #71717a;
  line-height: 1.6;
}
.cookie-inner a { color: var(--gold-light); }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn-secondary {
  background: transparent;
  color: #e4e4e7;
  border-color: #52525b;
}
.cookie-actions .btn-secondary:hover {
  background: #27272a;
  color: #ffffff;
  border-color: #71717a;
}
.cookie-actions .btn-primary {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.cookie-actions .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.legal-page { padding: 48px 0 64px; }
.legal-page .article { max-width: 780px; }
.legal-page h1 { font-size: 30px; margin-bottom: 8px; color: var(--ink); }
.legal-page h1 + p { font-size: 13px; color: var(--muted); margin-bottom: 28px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.legal-page h2 { font-size: 19px; margin-top: 32px; margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-page h3 { font-size: 16px; margin-top: 20px; }
.legal-page p,
.legal-page li { font-size: 15px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.75; }

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.thanks-section .container {
  text-align: center;
  max-width: 600px;
}
.thanks-section h1 { font-size: 30px; margin-bottom: 16px; }
.thanks-section .lead { font-size: 17px; }
.thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: center;
}

/* call-text children */
.call-text p { font-size: 14.5px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .call-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto auto; gap: 16px; padding: 12px 20px; }
  .main-nav { display: none; }
  .btn-header-cta { font-size: 11px; padding: 8px 14px; }
  .header-nav-secondary { font-size: 10px; gap: 14px; padding: 6px 20px; }
  .hero { padding: 44px 0 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .method-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 12px 16px; gap: 10px; }
  .logo-text { font-size: 14px; }
  .nav-toggle { display: flex; }
  .btn-header-cta { display: none; }
  .header-actions { gap: 6px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 16px 16px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 9px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .main-nav a:last-child { border-bottom: none; }
  .header-nav-secondary { display: none; }

  .hero { padding: 28px 0 24px; }
  .hero-text h1 { font-size: 24px; }
  .lead { font-size: 15.5px; }
  .hero-bullets li { flex: 1 1 100%; min-width: 0; }

  .quiz-form { padding: 18px 16px 16px; }
  .quiz-header h2 { font-size: 22px; }

  .call-widget { padding: 8px; }
  .contact-section { padding: 36px 0 40px; }
  .contact-form { padding: 20px 16px 18px; }

  .footer-grid { gap: 20px; padding: 32px 16px 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions a { width: 100%; text-align: center; }
}
