/* ─── Brand palette — Gvantsa Brand Guidelines v1.2 ─── */
:root {
  --deep-blue: #1E2243;
  --violet: #4A3A7A;
  --mid-violet: #6B5CA5;
  --light-violet: #9B8FCC;
  --coral: #E05A5A;
  --rose: #D94F6B;
  --coral-soft: #EF8B8B;
  --blush: #F2A5A5;
  --bg: #F8F7F4;
  --off-white: #FAFAF8;
  --pale-violet: #E8E4F3;
  --faint-violet: #F3F0FA;
  --ink: #1E2243;
  --ink-soft: #3a3754;
  --muted: #6f6a82;
  --line: #e6e2ee;
  --max: 1200px;
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'DM Serif Display', Georgia, serif; }
em.stress, .serif em { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; color: var(--coral); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.78; }
img { max-width: 100%; display: block; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
.brand {
  display: inline-flex; flex-direction: column; gap: 4px;
  color: var(--deep-blue); text-decoration: none; line-height: 1;
  transition: color 0.2s;
}
.brand:hover { opacity: 1; color: var(--coral); }
.brand:hover .brand-tagline { color: var(--coral); }
.brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: 24px; letter-spacing: -0.015em;
  line-height: 1.05;
}
.brand-tagline {
  font-weight: 500; color: var(--mid-violet); font-size: 12px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em;
  transition: color 0.2s;
}
.nav ul { display: flex; gap: 32px; list-style: none; }
.nav ul a { font-size: 15.5px; color: var(--ink-soft); font-weight: 500; }
.nav ul a:hover { color: var(--coral); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  background: var(--deep-blue); color: var(--bg) !important;
  padding: 11px 22px; border-radius: 999px; font-size: 15px; font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--coral); opacity: 1; }
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: 8px; color: var(--deep-blue);
}
.nav-toggle svg { width: 24px; height: 24px; display: block; }
@media (max-width: 880px) {
  .nav ul { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 16px 28px; gap: 0;
  }
  .nav ul.open li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav ul.open li:last-child { border-bottom: 0; }
  .brand-name { font-size: 17px; }
  .brand-tagline { display: none; }
}
@media (max-width: 480px) {
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

/* ─── Eyebrow / labels ─── */
.eyebrow, .section-label {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px;
  color: var(--coral); font-weight: 600; margin-bottom: 22px;
}
.section-label { margin-bottom: 18px; }

/* ─── Hero ─── */
.hero { padding: 80px 0 50px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.04; letter-spacing: -0.015em; color: var(--deep-blue);
}
h1 em { font-style: italic; font-weight: 400; color: var(--coral); }
.lede { margin-top: 26px; max-width: 540px; font-size: 19px; color: var(--ink-soft); line-height: 1.55; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500; transition: all 0.2s; cursor: pointer; border: 0; font-family: inherit;
}
.btn-primary { background: var(--deep-blue); color: var(--bg) !important; }
.btn-primary:hover { background: var(--coral); opacity: 1; }
.btn-ghost { border: 1.5px solid var(--deep-blue); color: var(--deep-blue); background: transparent; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); opacity: 1; }

.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: var(--pale-violet);
  box-shadow: 0 30px 60px -30px rgba(30,34,67,0.35);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-tag {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--bg); padding: 10px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--deep-blue);
  text-transform: uppercase; letter-spacing: 0.18em;
  box-shadow: 0 10px 30px -10px rgba(30,34,67,0.35);
}
.hero-tag .dot { color: var(--coral); margin-right: 8px; }

.stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--line); padding-top: 32px;
}
.stat .num {
  font-family: 'DM Serif Display', Georgia, serif; font-size: 38px; font-weight: 400;
  line-height: 1; letter-spacing: -0.02em; color: var(--deep-blue);
}
.stat .num em { font-style: italic; color: var(--coral); }
.stat .label { color: var(--muted); font-size: 13.5px; margin-top: 8px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 4/3; max-width: 100%; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; padding-top: 28px; }
  .stat .num { font-size: 32px; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; gap: 14px; }
  .stat { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .stat .num { font-size: 30px; }
  .lede { font-size: 17px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 14.5px; }
}

/* ─── Section base ─── */
section { padding: 90px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } .container { padding: 0 20px; } }
@media (max-width: 480px) { section { padding: 52px 0; } .container { padding: 0 18px; } }

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1; letter-spacing: -0.015em; color: var(--deep-blue);
  max-width: 820px;
}
h2 em { font-style: italic; color: var(--coral); }
h3 {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 19px; letter-spacing: -0.005em; margin-bottom: 8px;
  color: var(--deep-blue);
}
.section-intro { margin-top: 22px; max-width: 680px; color: var(--ink-soft); font-size: 17.5px; }

/* ─── What it is ─── */
.what { background: var(--faint-violet); }
.what-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.what-body p { margin-bottom: 16px; color: var(--ink-soft); font-size: 17px; }
.what-body p strong { color: var(--deep-blue); font-weight: 600; }
.what-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4;
  box-shadow: 0 30px 60px -30px rgba(30,34,67,0.3);
}
.what-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .what-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Kit contents ─── */
.contents { background: var(--bg); }
.contents-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.contents-photo {
  margin-top: 56px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9;
  box-shadow: 0 30px 60px -30px rgba(30,34,67,0.3);
}
.contents-photo img { width: 100%; height: 100%; object-fit: cover; }
.contents-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.content-card {
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.content-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.content-card .mini-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.content-card .mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.content-card h3 { font-size: 17px; margin-bottom: 6px; }
.content-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.starter-banner {
  margin-top: 36px; padding: 28px 32px;
  background: var(--deep-blue); color: var(--bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.starter-banner .text { flex: 1; min-width: 260px; }
.starter-banner h3 { color: var(--bg); margin-bottom: 4px; }
.starter-banner h3 em { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--blush); font-weight: 400; }
.starter-banner p { color: #c8c4dd; font-size: 15px; }
.starter-banner .icon { font-family: 'DM Serif Display', serif; font-size: 60px; color: var(--coral); line-height: 0.8; }
@media (max-width: 900px) {
  .contents-head { grid-template-columns: 1fr; gap: 22px; }
  .contents-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .contents-grid { grid-template-columns: 1fr; } }

/* ─── How it works ─── */
.how { background: var(--faint-violet); }
.how-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; margin-top: 56px; }
.how-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(30,34,67,0.3); position: sticky; top: 100px;
}
.how-photo img { width: 100%; height: 100%; object-fit: cover; }
.steps { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.step { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 64px 1fr; gap: 24px; }
.step .n {
  font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400;
  font-size: 38px; color: var(--coral); line-height: 1;
}
.step p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
@media (max-width: 900px) {
  .how-wrap { grid-template-columns: 1fr; gap: 32px; }
  .how-photo { position: relative; top: 0; aspect-ratio: 4/3; }
}

/* ─── Pricing ─── */
.pricing { background: var(--bg); }
.pricing-head {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  align-items: end; margin-bottom: 36px;
}
.pricing-sub {
  color: var(--muted); font-size: 14px;
  text-align: right; padding-bottom: 8px;
}
@media (max-width: 720px) {
  .pricing-head { grid-template-columns: 1fr; gap: 14px; }
  .pricing-sub { text-align: left; padding-bottom: 0; }
}
.price-grid { margin-top: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.price-card.featured { border-color: var(--deep-blue); background: var(--deep-blue); color: var(--bg); }
.price-card.featured h3 { color: var(--bg); }
.price-card.featured .kit-label { color: var(--blush); }
.price-card.featured .price-meta,
.price-card.featured .price-features li { color: #c8c4dd; }
.price-card.featured .price-features li:before { color: var(--coral-soft); }
.price-card.featured .btn-card { background: var(--coral); color: var(--bg); }
.pill {
  position: absolute; top: 18px; right: 18px;
  background: var(--coral); color: var(--bg); font-size: 10.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.14em;
}
.price-card .kit-label {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px;
  color: var(--mid-violet); margin-bottom: 8px; font-weight: 600;
}
.amount {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 44px; letter-spacing: -0.02em; line-height: 1;
  margin: 14px 0 6px; color: var(--deep-blue);
}
.price-card.featured .amount { color: var(--bg); }
.amount em { font-style: italic; color: var(--coral); }
.amount small { font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--muted); font-weight: 400; margin-left: 6px; }
.price-card.featured .amount small { color: #c8c4dd; }
.price-meta { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.price-features { list-style: none; flex: 1; margin-bottom: 24px; }
.price-features li {
  padding: 9px 0; font-size: 14.5px; color: var(--ink-soft);
  display: flex; gap: 12px; align-items: flex-start;
}
.price-features li:before { content: "→"; color: var(--coral); flex-shrink: 0; }
.btn-card {
  display: block; text-align: center; padding: 13px 18px;
  border-radius: 999px; background: var(--deep-blue); color: var(--bg) !important;
  font-size: 14.5px; font-weight: 500;
}
.btn-card:hover { background: var(--coral); opacity: 1; }
.price-fine {
  margin-top: 32px; padding: 26px 30px;
  background: var(--faint-violet); border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.price-fine .label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 10.5px; color: var(--mid-violet); margin-bottom: 6px; font-weight: 600; }
.price-fine .val { font-size: 14.5px; color: var(--deep-blue); font-weight: 500; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } .price-fine { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .price-fine { grid-template-columns: 1fr; } }

/* ─── About ─── */
.about { background: var(--faint-violet); }
.about-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6;
  box-shadow: 0 30px 60px -30px rgba(30,34,67,0.4);
  position: relative; max-width: 480px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 35% center; }
.about-photo .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--bg); padding: 10px 16px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--deep-blue);
  text-transform: uppercase; letter-spacing: 0.18em;
  box-shadow: 0 10px 30px -10px rgba(30,34,67,0.35);
}
.about-photo .badge .dot { color: var(--coral); margin-right: 8px; }
.about-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic; font-size: 24px; line-height: 1.35; color: var(--deep-blue);
  border-left: 3px solid var(--coral); padding-left: 22px;
  margin-bottom: 28px;
}
.about-body p { margin-bottom: 14px; color: var(--ink-soft); }
.about-body p strong { color: var(--deep-blue); font-weight: 600; }
.credentials { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: var(--bg); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 13px; color: var(--ink-soft); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-photo { aspect-ratio: 4/3; } }

/* ─── Contact ─── */
.contact { background: var(--deep-blue); color: var(--bg); }
.contact h2 { color: var(--bg); }
.contact h2 em { color: var(--coral-soft); }
.contact .section-label { color: var(--coral); }
.contact .section-intro { color: #c8c4dd; }
.contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-info p { color: #c8c4dd; margin-bottom: 20px; }
.contact-quick { margin-top: 28px; }
.quick-label {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px;
  color: var(--coral); font-weight: 600; display: block; margin-bottom: 14px;
}
.quick-row { display: flex; gap: 10px; flex-wrap: wrap; }
.quick-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: var(--bg); font-size: 14px; font-weight: 500;
  transition: all 0.2s; text-decoration: none;
}
.quick-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.quick-btn:hover {
  background: var(--coral); border-color: var(--coral); color: var(--bg);
  opacity: 1; transform: translateY(-1px);
}

form { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
form label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--light-violet); margin-bottom: 6px; display: block; font-weight: 600; }
form input, form select, form textarea {
  width: 100%; padding: 13px 16px; background: #2a2e55; border: 1px solid #353863;
  border-radius: 10px; color: var(--bg); font-size: 15px; font-family: inherit;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--coral); }
form textarea { min-height: 110px; resize: vertical; }
form button[type=submit] {
  margin-top: 8px; padding: 14px 28px; background: var(--coral); color: var(--bg);
  border: 0; border-radius: 999px; font-size: 15px; font-weight: 500;
  cursor: pointer; font-family: inherit; align-self: flex-start;
}
form button[type=submit]:hover { background: var(--rose); }
form button[type=submit]:disabled { opacity: 0.6; cursor: wait; }

/* Honeypot — hidden from real users, visible to bots */
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 0 !important; width: 0 !important; opacity: 0 !important; }

/* Form status messages */
.form-status {
  margin-top: 14px; padding: 14px 18px; border-radius: 10px;
  font-size: 14.5px; display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(224,90,90,0.15); color: var(--coral-soft);
  border: 1px solid var(--coral);
}
.form-status.error {
  background: rgba(217,79,107,0.18); color: var(--blush);
  border: 1px solid var(--rose);
}
.recaptcha-fineprint {
  margin-top: 10px; font-size: 11px; color: #8a85ad; line-height: 1.5;
}
.recaptcha-fineprint a { color: var(--light-violet); border-bottom: 1px solid #555; padding-bottom: 1px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--line); padding: 40px 0 28px; background: var(--bg);
  color: var(--muted); font-size: 13.5px;
}
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.foot-col h5 {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--mid-violet); margin-bottom: 14px;
}
.foot-col p { color: var(--ink-soft); margin-bottom: 14px; font-size: 14px; line-height: 1.55; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 14px; padding: 5px 0; border-bottom: 1px solid transparent; }
.foot-col a:hover { color: var(--coral); opacity: 1; }
.foot-col a .arrow { color: var(--coral); margin-right: 6px; }
.foot-bottom { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot-tag { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--deep-blue); }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { color: var(--muted); font-size: 13px; }
.foot-legal a:hover { color: var(--coral); opacity: 1; }
.reg-no { color: var(--ink-soft); border-bottom: 1px solid var(--coral); padding-bottom: 1px; }
@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
  max-width: 540px; margin: 0 auto;
  background: var(--deep-blue); color: var(--bg);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4);
  transform: translateY(20px); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h6 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 19px; margin-bottom: 6px; color: var(--bg);
}
.cookie-banner h6 em { font-style: italic; color: var(--coral-soft); }
.cookie-banner p { font-size: 13.5px; color: #c8c4dd; line-height: 1.5; margin-bottom: 14px; }
.cookie-banner p a { color: var(--blush); border-bottom: 1px solid var(--coral); padding-bottom: 1px; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button {
  border: 0; padding: 10px 18px; border-radius: 999px;
  font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.cb-accept { background: var(--coral); color: var(--bg); }
.cb-accept:hover { background: var(--rose); }
.cb-reject { background: transparent; color: var(--bg); border: 1px solid #555 !important; }
.cb-reject:hover { border-color: var(--coral-soft) !important; color: var(--coral-soft); }

/* ─── Privacy page ─── */
.privacy-page { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.privacy-page .hero-block { padding: 64px 0 36px; }
.privacy-page h1 { font-size: clamp(34px, 4.5vw, 48px); }
.privacy-page .lede { margin-top: 18px; max-width: 640px; font-size: 17px; }
.toc {
  margin: 40px 0; padding: 22px 26px;
  background: var(--faint-violet); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.toc h5 {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--mid-violet);
  margin-bottom: 12px;
}
.toc ol { list-style: none; counter-reset: tocnum; }
.toc li { counter-increment: tocnum; padding: 5px 0; display: flex; gap: 12px; align-items: baseline; }
.toc li::before {
  content: counter(tocnum, decimal-leading-zero);
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--coral); font-size: 16px; min-width: 30px;
}
.toc a { color: var(--ink-soft); font-size: 14.5px; }
.toc a:hover { color: var(--coral); }
.privacy-body { padding: 16px 0 80px; }
.privacy-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: 26px; line-height: 1.2;
  color: var(--deep-blue); margin: 44px 0 14px; letter-spacing: -0.01em;
}
.privacy-body h2 em { font-style: italic; color: var(--coral); }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px; color: var(--deep-blue); margin: 22px 0 8px; }
.privacy-body p { color: var(--ink-soft); margin-bottom: 14px; }
.privacy-body p strong { color: var(--deep-blue); }
.privacy-body ul { margin: 8px 0 16px 22px; }
.privacy-body li { color: var(--ink-soft); margin-bottom: 6px; }
.privacy-body a { color: var(--deep-blue); border-bottom: 1px solid var(--coral); padding-bottom: 1px; }
.privacy-body a:hover { color: var(--coral); }
.info-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px; margin: 18px 0 24px;
}
.info-block dt {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--mid-violet);
  margin-top: 12px;
}
.info-block dt:first-child { margin-top: 0; }
.info-block dd { font-size: 15px; color: var(--deep-blue); margin-top: 2px; margin-bottom: 4px; }
table.cookies { width: 100%; border-collapse: collapse; margin: 14px 0 24px; font-size: 14px; }
table.cookies th, table.cookies td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cookies th { background: var(--faint-violet); color: var(--deep-blue); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 600; }
table.cookies td:first-child { font-weight: 500; color: var(--deep-blue); }

/* ─── Thanks page ─── */
.thanks-page { min-height: 60vh; padding: 80px 0; }
.thanks-page .container { max-width: 720px; }
.thanks-page .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--coral); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 28px;
}
