/* ============================================================
   BirdSpikes.company — Saffron Design System
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* Saffron yellow (accent) */
  --saffron-300:#FFE88A; --saffron-400:#FFDD63; --saffron-500:#FFD23F;
  --saffron-600:#F5C518; --saffron-700:#D9A800;

  /* Ink (dark text + buttons) */
  --ink-900:#1B2235; --ink-800:#232B40; --ink-700:#3A4358;
  --ink-500:#6B7387; --ink-300:#B7BCC9; --ink-100:#E4E6EC;

  /* Cream (page surfaces) */
  --cream-50:#FAF6EC; --cream-100:#F3EEDD; --cream-200:#EAE3CB;

  /* Mint (secondary accent) */
  --mint-200:#DDEDDE; --mint-600:#5A9466;

  /* Charcoal (footer + dark surfaces) */
  --charcoal-800:#22303C;

  --bg:var(--cream-50); --fg:var(--ink-900);
  --border:rgba(27,34,53,.08); --border-strong:rgba(27,34,53,.16);

  --radius-md:14px; --radius-xl:28px; --radius-pill:999px;
  --shadow-sm:0 1px 2px rgba(27,34,53,.06),0 1px 1px rgba(27,34,53,.04);
  --shadow-md:0 6px 16px rgba(27,34,53,.08),0 2px 4px rgba(27,34,53,.05);
  --shadow-yellow:0 10px 28px rgba(255,210,63,.45);

  --font-display:"Newsreader","Cormorant Garamond",Georgia,serif;
  --font-sans:"DM Sans",ui-sans-serif,system-ui,sans-serif;
  --font-mono:"JetBrains Mono",ui-monospace,Menlo,monospace;

  --ease:cubic-bezier(.2,.7,.2,1);
  --dur-micro:150ms; --dur-base:220ms;

  /* legacy aliases used elsewhere on the site */
  --navy: var(--ink-900);
  --blue: var(--ink-800);
  --accent: var(--saffron-500);
  --grey: var(--ink-500);
  --white: #fff;
  --radius: var(--radius-md);
  --shadow-lg: var(--shadow-md);
}

/* — Reset / base — */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* — Typography — */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(48px, 7.2vw, 96px); line-height: 1.02; }
h2 { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.3; }
p  { margin: 0 0 1em; }
a  { color: inherit; text-decoration: none; transition: color var(--dur-micro) var(--ease); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
}

.mono { font-family: var(--font-mono); }

/* Saffron-underline inline links inside body copy */
.post-body a, .blog-post-body a, .legal-body a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
  padding-bottom: 1px;
  transition: background var(--dur-micro) var(--ease);
}
.post-body a:hover, .blog-post-body a:hover, .legal-body a:hover {
  background: rgba(255,210,63,0.18);
}

/* — Layout — */
.wrap, .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section--grey { background: var(--cream-100); }
.section--navy { background: var(--charcoal-800); color: var(--cream-50); }
.section--navy h2, .section--navy h3 { color: var(--cream-50); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 19px; color: var(--ink-700); margin: 0; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .wrap, .container { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 17px; }
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: transform var(--dur-micro) var(--ease), box-shadow var(--dur-base) var(--ease), background var(--dur-micro) var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ink, .btn-accent {
  background: var(--ink-900);
  color: var(--cream-50);
}
.btn-ink:hover, .btn-accent:hover { background: var(--ink-800); }

.btn-pill { border-radius: var(--radius-pill); }

.btn-hero-yellow {
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  padding: 16px 28px;
}
.btn-hero-yellow:hover { background: var(--saffron-400); box-shadow: 0 14px 32px rgba(255,210,63,.55); }

.btn-hero-ghost, .btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 16px 28px;
}
.btn-hero-ghost:hover, .btn-outline:hover {
  background: rgba(27,34,53,0.04);
  border-color: var(--ink-900);
}

/* — Sticky pill header — */
.site-header, .site-nav {
  position: sticky;
  top: 16px;
  z-index: 60;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 10px 14px 10px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.site-nav { width: calc(100% - 32px); }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.nav-logo span { color: var(--ink-900); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 6px 4px;
  border-radius: 8px;
  transition: color var(--dur-micro) var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: var(--radius-pill);
  transition: background var(--dur-micro) var(--ease);
}
.nav-cta:hover { background: var(--ink-800); color: var(--cream-50); }

/* Burger button (mobile) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--ink-900);
  border: none;
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream-50);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-micro) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(27,34,53,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 28px 40px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--cream-50);
  text-align: center;
}
.mobile-nav a:hover { color: var(--saffron-400); }
.mobile-nav .nav-cta,
.mobile-nav .mobile-nav-cta {
  background: var(--saffron-500);
  color: var(--ink-900);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
}
.mobile-nav .nav-cta:hover { background: var(--saffron-400); color: var(--ink-900); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  color: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.nav-open { overflow: hidden; }

/* — Hero (home) — */
.hero {
  position: relative;
  padding: 72px 0 96px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.32), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero > .container, .hero > .wrap { position: relative; z-index: 1; }
.hero-bg, .hero-image-layer, .hero-image-right { display: none; }
.hero-content { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 20px; }
.hero h1, .hero h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--ink-900);
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--mint-600);
  border-radius: 50%;
  animation: pulse 2.2s infinite var(--ease);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,148,102,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(90,148,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,148,102,0); }
}

.swatch {
  background: var(--saffron-500);
  padding: 0 14px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.hero-sub {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-cta-row, .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-700);
}
.hero-trust > * { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dot-sep {
  width: 4px;
  height: 4px;
  background: var(--ink-300);
  border-radius: 50%;
}

/* legacy hero-badge chips kept for resilience */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  color: var(--ink-900);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* — Country grid / store picker — */
.country-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  max-width: 480px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-500);
}
.country-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
}
.country-search input::placeholder { color: var(--ink-500); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  overflow: hidden;
}
.country-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--saffron-300), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.country-card:hover::after { opacity: 1; }
.country-card[data-featured="true"] {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--cream-50);
}
.country-card[data-featured="true"] h3 { color: var(--cream-50); }
.country-card[data-featured="true"] p { color: rgba(250,246,236,0.6); }
.country-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 12px 0 4px;
}
.country-card p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
}
.country-flag {
  width: 60px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.country-flag svg { width: 100%; height: 100%; display: block; }

/* — Benefits grid — */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
}
.benefit-card p { color: var(--ink-700); margin: 0; font-size: 16px; }

/* — Reviews grid — */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}
.review-stars { color: var(--saffron-600); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: var(--ink-700); font-size: 16px; line-height: 1.6; margin: 0 0 14px; }
.review-author { font-size: 14px; color: var(--ink-500); margin: 0; }

/* — Products / generic cards — */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.product-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
}
.product-card p { color: var(--ink-700); margin: 0 0 12px; }

/* — FAQ — */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--ink-900); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
}
.faq-question h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink-900);
  margin: 0;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--ink-700);
  transition: transform var(--dur-base) var(--ease), background var(--dur-micro) var(--ease);
}
.faq-icon svg { display: block; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--saffron-500);
  color: var(--ink-900);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-answer-inner {
  padding: 4px 22px 22px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
}
.faq-answer-inner p { margin: 0; }

/* — Buying guide / long-form on home — */
.buying-guide {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.buying-guide > *:first-child { margin-top: 0; }
.buying-guide > *:last-child  { margin-bottom: 0; }

.buying-guide h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 1.6em 0 0.5em;
  padding-top: 0.6em;
  border-top: 1px solid var(--border);
}
/* Big intro h2 — no border, no top padding, and the next paragraph is lead-sized */
.buying-guide > h2:first-of-type {
  font-size: clamp(34px, 4vw, 48px);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.buying-guide > h2:first-of-type + p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-700);
  margin-bottom: 1.8em;
}
.buying-guide h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 1.6em 0 0.4em;
}
.buying-guide h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin: 1.4em 0 0.4em;
}
.buying-guide p { margin: 0 0 1em; color: var(--ink-700); }
.buying-guide p strong { color: var(--ink-900); }

.buying-guide ul {
  list-style: none;
  padding: 0;
  margin: 1em 0 1.2em;
  display: grid;
  gap: 8px;
}
.buying-guide ul li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--cream-50);
  border-left: 3px solid var(--saffron-500);
  border-radius: 6px;
  color: var(--ink-700);
}
.buying-guide ul li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.buying-guide ul li strong { color: var(--ink-900); }

/* — Footer — */
.site-footer {
  background: var(--charcoal-800);
  color: var(--cream-50);
  padding: 80px 0 40px;
  margin-top: 0;
}
.site-footer .container { padding: 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { color: var(--cream-50); font-size: 22px; }
.footer-brand .nav-logo span { color: var(--cream-50); }
.footer-brand p { color: rgba(250,246,236,0.70); font-size: 14px; line-height: 1.6; }
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,210,63,0.08);
  border: 1px solid rgba(255,210,63,0.18);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-500);
  margin-top: 16px;
}
.footer-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--saffron-500);
  border-radius: 50%;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-500);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(250,246,236,0.85);
  font-size: 14.5px;
  transition: color var(--dur-micro) var(--ease);
}
.footer-col ul a:hover { color: var(--saffron-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,246,236,0.55);
}
.footer-bottom a { color: rgba(250,246,236,0.55); transition: color var(--dur-micro) var(--ease); }
.footer-bottom a:hover { color: var(--saffron-400); }

/* — Mascot section (Fifi) restyled to Saffron — */
.mascot-section {
  background: var(--cream-100);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.mascot-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,210,63,.28), transparent 65%);
  pointer-events: none;
}
.mascot-section .container { position: relative; }
.mascot-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.mascot-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  margin: 0 0 16px;
}
.mascot-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink-900);
}
.mascot-title-thin {
  display: block;
  font-size: 0.45em;
  color: var(--ink-500);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.mascot-lead { font-size: 20px; line-height: 1.55; color: var(--ink-700); }
.mascot-text p { color: var(--ink-700); font-size: 17px; line-height: 1.65; }
.mascot-text strong { color: var(--ink-900); }
.mascot-signoff {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-900);
  font-size: 22px;
  margin-top: 24px;
}
.mascot-hero-figure {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  transition: transform var(--dur-base) var(--ease);
}
.mascot-hero-figure:hover { transform: rotate(0deg); }
.mascot-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.mascot-hero-figure figcaption {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-500);
  font-size: 16px;
  margin-top: 12px;
  padding: 0 6px 6px;
}
.mascot-roles-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  margin: 0 0 8px;
}
.mascot-roles-sub {
  text-align: center;
  color: var(--ink-500);
  font-family: var(--font-display);
  font-style: italic;
  margin: 0 auto 40px;
}
.mascot-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.mascot-role {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.mascot-role:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mascot-role figure {
  margin: 0 0 16px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-role figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mascot-role h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 4px;
}
.mascot-role-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.mascot-role p:last-child { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-700); }
.mascot-schedule {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px clamp(24px, 4vw, 48px);
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mascot-schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/dot-pattern.svg");
  opacity: 0.08;
  pointer-events: none;
}
.mascot-schedule h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 24px;
  font-size: 26px;
  position: relative;
}
.mascot-schedule ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  position: relative;
}
.mascot-schedule li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(27,34,53,0.10);
  display: flex;
  gap: 20px;
  font-size: 16px;
  color: var(--ink-700);
}
.mascot-schedule li:last-child { border-bottom: none; }
.mascot-time {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  background: var(--saffron-500);
  padding: 2px 10px;
  border-radius: 999px;
  min-width: 64px;
  text-align: center;
  flex-shrink: 0;
  height: fit-content;
  margin-top: 2px;
}
.mascot-disclaimer {
  font-size: 13px;
  color: var(--ink-500);
  font-style: italic;
  text-align: center;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(27,34,53,0.08);
  position: relative;
  font-family: var(--font-display);
}

/* — Article / post pages — */
.post-header {
  background: var(--cream-50);
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}
.post-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,210,63,.28), transparent 70%);
  pointer-events: none;
}
.post-header .container { position: relative; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-500); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: var(--ink-900); border-bottom-color: var(--saffron-500); }
.breadcrumb-sep { color: var(--ink-300); }
.post-header h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 16px;
}
.post-meta {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
}

.post-body, .blog-post-body, .legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 96px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-900);
}
.post-body h1, .blog-post-body h1, .legal-body h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 1.5em 0 0.6em;
}
.post-body h2, .blog-post-body h2, .legal-body h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 1.6em 0 0.5em;
}
.post-body h3, .blog-post-body h3, .legal-body h3 {
  font-size: 22px;
  margin: 1.4em 0 0.4em;
}
.post-body h4, .blog-post-body h4, .legal-body h4 {
  font-size: 19px;
  margin: 1.2em 0 0.3em;
}
.post-body p, .blog-post-body p, .legal-body p { color: var(--ink-700); }
.post-body strong { color: var(--ink-900); }
.post-body ul, .post-body ol { padding-left: 1.5em; color: var(--ink-700); }
.post-body li { margin-bottom: 0.4em; }
.post-body blockquote {
  border-left: 4px solid var(--saffron-500);
  padding: 8px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-900);
  background: rgba(255,210,63,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* — Blog index — */
.blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  max-width: 520px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-500);
}
.blog-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
}
.blog-search input::placeholder { color: var(--ink-500); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  overflow: hidden;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 6px 0 14px;
}
.blog-card h2 a { color: var(--ink-900); }
.blog-card h2 a:hover { color: var(--ink-700); }
.blog-card p { color: var(--ink-700); font-size: 15.5px; margin: 0 0 16px; }
.blog-card .blog-meta,
.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
}
.blog-card .read-more,
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
  padding-bottom: 1px;
}
.read-more:hover { background: rgba(255,210,63,0.18); }

/* — Company details / contact section dark variant — */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.company-detail { display: flex; gap: 14px; align-items: flex-start; }
.company-detail-icon { flex-shrink: 0; color: var(--saffron-500); margin-top: 2px; }
.company-detail strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-500);
  margin-bottom: 4px;
}
.company-detail span { color: rgba(250,246,236,0.85); font-size: 15px; }

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(250,246,236,0.85);
}
.trust-badge svg { color: var(--saffron-500); }

/* — Final yellow CTA strip — */
.cta-strip {
  background: var(--saffron-500);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/dot-pattern.svg");
  opacity: 0.15;
  pointer-events: none;
}
.cta-strip h2, .cta-strip p { color: var(--ink-900); position: relative; }

/* — Sticky mobile CTA — */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  text-align: center;
}
.sticky-cta .btn {
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  width: 100%;
}

/* — Responsive — */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mascot-roles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .site-header, .site-nav { gap: 12px; padding: 8px 8px 8px 18px; }
  .nav-logo { font-size: 18px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
}
@media (max-width: 720px) {
  html { font-size: 16px; }
  .hero { padding: 56px 0 72px; }
  .hero-sub { font-size: 18px; }
  .mascot-hero { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .mascot-hero-figure { transform: none; }
  .mascot-roles { grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .post-header { padding: 48px 0 32px; }
  .post-body, .blog-post-body, .legal-body { padding: 36px 20px 64px; font-size: 17px; }
  .sticky-cta { display: block; }
}
@media (max-width: 560px) {
  .country-search { padding: 10px 16px; }
  .country-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav-logo { font-size: 16px; }
}

/* — Print — */
@media print {
  .site-header, .site-nav, .mobile-nav, .sticky-cta, .site-footer { display: none; }
  body { background: #fff; }
}
