/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0b1220;
  --ink2: #1a2640;
  --navy: #0f2044;
  --gold: #b8963e;
  --gold-light: #d4af5a;
  --gold-pale: #f5edda;
  --cream: #fafaf7;
  --white: #ffffff;
  --mid: #e8e4dc;
  --border: #d4cfc6;
  --muted: #6b7280;
  --green-ok: #1a6644;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 8px 2rem;
}
.topbar strong { color: var(--gold-light); }
.topbar a { color: rgba(255,255,255,0.4); text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.wordmark .gold { color: var(--gold); }
.eu-badge {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 2px 5px;
  margin-left: 5px;
  vertical-align: middle;
}
.nav-tagline {
  font-family: var(--font-cond);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 3px;
  padding: 0.5rem 1.25rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ink) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2.5rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta { color: var(--navy) !important; font-weight: 600 !important; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2.5rem 4.5rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-seal-wrap { display: none; }
}

.kicker {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--navy); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h2 em { font-style: italic; color: var(--navy); }

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.proof-item { display: flex; flex-direction: column; }
.proof-n {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.proof-l {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.proof-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ─── SEAL ─── */
.hero-seal-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.seal-container {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateSeal 50s linear infinite;
}
.seal-core {
  width: 140px;
  height: 140px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(15,32,68,0.2);
}
.seal-core::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.25);
}
.seal-icon { width: 38px; height: 38px; margin-bottom: 5px; }
.seal-title {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}
.seal-sub {
  font-family: var(--font-cond);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.seal-caption {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── STATS BAR ─── */
.stats-bar { background: var(--navy); padding: 0; }
.stats-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.stat {
  flex: 1;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-n {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 760px) {
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 33%; }
}

/* ─── SECTIONS ─── */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--ink); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline.full { width: 100%; justify-content: center; }

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}
.ps {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}
.ps:last-child { border-right: none; }
.ps-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--mid);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ps-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.ps-name {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.ps-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.ps-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}
.ps-tag.green { background: #e8f3ee; color: var(--green-ok); }
.ps-tag.gold { background: var(--gold-pale); color: var(--gold); }
.ps-tag.navy { background: #e8edf5; color: var(--navy); }

.timing-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.timing-note svg { color: var(--gold); flex-shrink: 0; }
.timing-note strong { color: var(--ink); font-weight: 500; }

/* ─── PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
}
@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--white);
  padding: 2rem 1.5rem;
}
.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.pillar-area {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.pillar-count {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2px 6px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.pillar-sub {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pillar-list li {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.pillar-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 400;
}
.pillar-list li strong { color: var(--ink); font-weight: 500; }

/* ─── PRICING ─── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
  margin-bottom: 1.5rem;
}
@media (max-width: 660px) {
  .pricing-cards { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
}
.pricing-card.featured {
  background: var(--white);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pc-eyebrow {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pc-eyebrow.gold { color: var(--gold); }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0.25rem;
}
.pc-free {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.pc-currency {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 0.4rem;
}
.pc-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.pc-period {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.pc-iva {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
  min-height: 1.4em;
}
.pc-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.pc-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.pc-features li svg { flex-shrink: 0; margin-top: 1px; }
.pc-features li strong { color: var(--ink); font-weight: 500; }

.renewal-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.renewal-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.renewal-note h4 {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.renewal-note p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.renewal-note p strong { color: var(--ink); font-weight: 500; }

.faq {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--cream); }
.faq-qt {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.faq-chevron {
  font-size: 10px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-q.open .faq-chevron { transform: rotate(90deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1rem;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}
.faq-a.open { display: block; }

/* ─── BADGE SECTION ─── */
.badge-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) {
  .badge-grid { grid-template-columns: 1fr; }
}
.badge-samples {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sample-label {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.sample-dark-wrap {
  background: var(--navy);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sample-dark-wrap .sample-label { color: rgba(255,255,255,0.35); }

/* ── BADGE VARIANTE D — Orizzontale con bordo sinistro verde ── */
.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid #1a6644;
  border-left: 4px solid #1a6644;
  border-radius: 4px;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
  min-width: 210px;
}
.ss-badge:hover {
  box-shadow: 0 2px 12px rgba(26,102,68,0.15);
}
.ss-badge.dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(45,158,107,0.6);
  border-left-color: #2d9e6b;
}
.b-seal {
  width: 38px;
  height: 38px;
  background: #1a6644;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-seal svg { width: 20px; height: 20px; }
.b-seal.dark { background: #2d9e6b; }
.b-text { display: flex; flex-direction: column; gap: 1px; }
.b-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d2e1f;
  line-height: 1.1;
}
.ss-badge.dark .b-title { color: #fff; }
.b-cert {
  font-family: var(--font-cond);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6644;
  margin-top: 1px;
}
.ss-badge.dark .b-cert { color: #2d9e6b; }
.b-domain {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.ss-badge.dark .b-domain { color: rgba(255,255,255,0.35); }
.b-eu { display: none; }

.badge-props {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.badge-prop {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.badge-prop:last-child { border-bottom: none; }
.bp-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}
.bp-val {
  font-size: 12px;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
}

.snippet-wrap {
  background: var(--ink);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1px;
}
.snippet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.snippet-header span {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.copy-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  border-radius: 2px;
  padding: 0.2rem 0.75rem;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover { background: rgba(255,255,255,0.12); }
.copy-btn.ok { color: var(--gold-light); }
pre {
  padding: 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #a8c4e8;
  overflow-x: auto;
  white-space: pre;
}

/* ─── FORM ─── */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: #7a5c1a;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.info-box svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.info-box strong { font-weight: 600; }

.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fgrid.s1 { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .fgrid { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-weight: 300;
  appearance: auto;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.field input::placeholder,
.field textarea::placeholder { color: #bbb; }
.field textarea { resize: vertical; min-height: 90px; }

.fnote {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.fnote a { color: var(--muted); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 3rem 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold-light); }
.footer-brand p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.7;
}
.footer-brand strong { color: var(--gold-light); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  line-height: 1.8;
}

/* ─── ANIMATIONS ─── */
@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.6s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0s; }
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }
.hero-content > *:nth-child(5) { animation-delay: 0.32s; }
.hero-seal-wrap { animation: fadeUp 0.6s 0.2s ease both; }
