/* ==========================================================================
   IYI CREATIONS — design system
   --------------------------------------------------------------------------
   One small, reusable brand shell. The tokens + components below are shared by
   every page (Home, GBOMI, Privacy) and are meant to be reused for future
   brand pages (EniMerin Studios, etc.). Keep brand decisions in :root so a new
   page only needs markup.

   Heritage note: the palette is a warm, modern nod to Dan's Yoruba ancestry —
   adire indigo, gold, and warm clay/cream earth tones. Subtle, not literal.
   ========================================================================== */

:root {
  /* Brand core */
  --iyi-indigo:      #1C2140;   /* adire indigo — primary deep tone */
  --iyi-indigo-deep: #11142B;   /* darkest — hero/footer grounds */
  --iyi-gold:        #C7912B;   /* honour / "iyi" gold */
  --iyi-gold-bright: #E6B84B;
  --iyi-clay:        #BC5A2E;   /* warm terracotta accent */
  --iyi-clay-soft:   #F3E4DA;

  /* Ink & surfaces */
  --ink:      #211B17;          /* warm near-black text */
  --muted:    #6B6157;          /* warm grey secondary text */
  --line:     #ECE4D8;          /* hairline on light */
  --paper:    #FBF7F0;          /* warm cream page */
  --surface:  #FFFFFF;          /* card surface */
  --surface-2:#FFFDF9;

  /* Accents reused across brand pages */
  --teal:  #2C7A74;
  --plum:  #5C3A63;

  /* Effects */
  --shadow-sm: 0 8px 24px rgba(28, 33, 64, 0.08);
  --shadow-md: 0 18px 48px rgba(28, 33, 64, 0.14);
  --shadow-gold: 0 14px 40px rgba(199, 145, 43, 0.28);

  /* Type scale (fluid) */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2.1rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3.1rem);
  --step-4:  clamp(2.5rem, 2rem + 2.5vw, 4.2rem);

  /* Rhythm */
  --radius:   0.9rem;
  --radius-sm:0.55rem;
  --radius-pill: 999px;
  --header-height: 70px;
  --container: 1160px;
  --gutter: clamp(1.1rem, 4vw, 3rem);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, audio, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1, h2 { font-family: var(--font-serif); font-weight: 600; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--iyi-gold); outline-offset: 2px; border-radius: 4px; }

.container { width: min(var(--container), 100%); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--iyi-indigo); color: #fff; padding: 0.7rem 1rem; border-radius: 0 0 0.5rem 0;
}
.skip-link:focus { left: 0; }

/* ---------- eyebrow / small type ---------- */
.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  color: var(--iyi-clay);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--iyi-gold-bright); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  min-height: var(--header-height);
  display: flex; align-items: center;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name strong {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em;
}
.brand__name small { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav a {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-pill);
  color: #4a4038; font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--iyi-clay-soft); color: var(--iyi-indigo); }
.site-nav a.is-muted { color: #a79c8f; cursor: default; }
.site-nav a.is-muted:hover { background: transparent; color: #a79c8f; }
.site-nav a.is-muted::after {
  content: "Soon"; margin-left: 0.4rem; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--iyi-gold); border: 1px solid currentColor; border-radius: 999px; padding: 0.05rem 0.35rem;
}
.nav-cta {
  margin-left: 0.35rem; background: var(--iyi-indigo) !important; color: #fff !important;
  padding: 0.55rem 1.05rem !important;
}
.nav-cta:hover { background: var(--iyi-indigo-deep) !important; }

.menu-toggle {
  display: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--iyi-indigo); font-weight: 800; padding: 0.5rem 0.8rem; cursor: pointer;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.9rem; padding: 0.75rem 1.35rem;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.button:active { transform: translateY(1px); }
.button--primary { background: var(--iyi-gold); color: #2a2008; box-shadow: var(--shadow-gold); }
.button--primary:hover { background: var(--iyi-gold-bright); }
.button--dark { background: var(--iyi-indigo); color: #fff; }
.button--dark:hover { background: var(--iyi-indigo-deep); }
.button--ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.button--ghost:hover { background: rgba(255,255,255,0.1); }
.button--outline { background: transparent; border-color: var(--iyi-indigo); color: var(--iyi-indigo); }
.button--outline:hover { background: var(--iyi-indigo); color: #fff; }
.button--lg { min-height: 3.3rem; padding: 0.9rem 1.8rem; font-size: 1.05rem; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-light { background: var(--paper); }
.section-cream { background: linear-gradient(180deg, var(--surface-2), var(--paper)); }
.section-dark {
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(199,145,43,0.18), transparent 60%),
    linear-gradient(160deg, var(--iyi-indigo-deep), var(--iyi-indigo));
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.82); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: var(--step-3); }
.section-head p { color: var(--muted); font-size: var(--step-1); margin-bottom: 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.8); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ==========================================================================
   Hero (shared)
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero--split .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
.hero h1 { font-size: var(--step-4); max-width: 15ch; }
.hero__lede { font-size: var(--step-1); max-width: 46ch; }
.section-dark .hero__lede { color: rgba(255,255,255,0.85); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero__note { margin-top: 1rem; font-size: var(--step--1); color: rgba(255,255,255,0.6); }

/* decorative adire diamond field */
.adire-field { position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 6 L54 30 L30 54 L6 30 Z' fill='none' stroke='%23C7912B' stroke-width='1' stroke-opacity='0.16'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card h3 { font-family: var(--font-serif); font-size: var(--step-1); color: var(--iyi-indigo); margin-bottom: 0.15rem; }
.card p { color: var(--muted); margin-bottom: 0; }

.card--link { text-decoration: none; color: inherit; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__icon {
  display: inline-grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 0.6rem;
  border-radius: 0.8rem; background: var(--iyi-clay-soft); color: var(--iyi-clay); font-size: 1.4rem;
}
.card__tag {
  align-self: flex-start; margin-top: auto; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.tag--live { background: #e5f3ea; color: #1f7a45; }
.tag--soon { background: var(--iyi-clay-soft); color: var(--iyi-clay); }
.card__cta { margin-top: 0.4rem; color: var(--iyi-clay); font-weight: 800; font-size: 0.95rem; }
.card--link:hover .card__cta { text-decoration: underline; }

/* project cards (home) with brand header band */
.project-card { padding: 0; overflow: hidden; }
.project-card__band {
  padding: 1.5rem 1.6rem; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.project-card__band h3 { color: #fff; font-size: var(--step-2); margin: 0; letter-spacing: 0.01em; }
.project-card__band small { display: block; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; margin-top: 0.2rem; }
.band--gbomi { background: linear-gradient(135deg, var(--iyi-indigo), var(--plum)); }
.band--enimerin { background: linear-gradient(135deg, #3a2c22, var(--iyi-clay)); }
.project-card__body { padding: 1.4rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; min-height: 160px; }

/* ==========================================================================
   Feature list (GBOMI)
   ========================================================================== */
.feature { display: flex; flex-direction: column; gap: 0.5rem; }
.feature__icon {
  display: inline-grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: var(--iyi-gold-bright); font-size: 1.3rem;
}
.feature h3 { font-family: var(--font-sans); font-weight: 700; font-size: var(--step-1); color: #fff; margin: 0.2rem 0 0; }
.feature p { color: rgba(255,255,255,0.78); margin: 0; }

/* ==========================================================================
   "Hear it" — audio sample player
   ========================================================================== */
.player {
  max-width: 720px; margin-inline: auto; padding: 1.8rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.player__voices { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.voice-chip {
  padding: 0.5rem 0.95rem; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: var(--surface-2); color: var(--ink); font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: all 0.14s ease;
}
.voice-chip:hover { border-color: var(--iyi-gold); }
.voice-chip[aria-pressed="true"] { background: var(--iyi-indigo); color: #fff; border-color: var(--iyi-indigo); }
.voice-chip small { display: block; font-size: 0.68rem; opacity: 0.7; font-weight: 600; }
.player__now { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.6rem; }
.player__now strong { font-family: var(--font-serif); font-size: var(--step-1); color: var(--iyi-indigo); }
.player__now span { font-size: var(--step--1); color: var(--muted); }
.player audio { width: 100%; }
.player__quote { margin: 1rem 0 0; font-style: italic; color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   Screenshot gallery / carousel
   ========================================================================== */
.shots { position: relative; }
.shots__track {
  display: flex; align-items: flex-start; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.2rem 1.5rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shots__track::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 auto; width: clamp(200px, 44vw, 250px); scroll-snap-align: center;
  border-radius: 1.6rem; overflow: hidden; background: #0b0d1a;
  box-shadow: var(--shadow-md); border: 6px solid #0b0d1a;
}
.shot img { width: 100%; border-radius: 1.1rem; }
.shot figcaption {
  padding: 0.7rem 0.4rem 0.2rem; text-align: center; color: rgba(255,255,255,0.75); font-size: 0.8rem;
}
.shots__hint { text-align: center; color: var(--muted); font-size: var(--step--1); margin-top: 0.5rem; }
.section-dark .shots__hint { color: rgba(255,255,255,0.6); }

/* Desktop prev/next arrows (hidden on touch/mobile — swipe is used there) */
.shots__arrow {
  position: absolute; top: 42%; z-index: 3;
  display: grid; place-items: center;
  width: 3rem; height: 3rem; padding: 0 0 0.2rem;
  border: 1px solid rgba(255,255,255,0.28); border-radius: 999px;
  background: rgba(17,20,43,0.72); color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}
.shots__arrow:hover { background: var(--iyi-indigo); }
.shots__arrow:active { transform: translateY(1px); }
.shots__arrow--prev { left: -0.4rem; }
.shots__arrow--next { right: -0.4rem; }
@media (hover: none), (max-width: 760px) { .shots__arrow { display: none; } }

/* ==========================================================================
   How it works — 3 steps
   ========================================================================== */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step {
  padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; margin-bottom: 0.8rem;
  border-radius: 999px; background: var(--iyi-indigo); color: #fff;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem;
}
.step h3 { font-family: var(--font-sans); font-weight: 700; font-size: var(--step-1); color: var(--iyi-indigo); margin: 0 0 0.35rem; }
.step p { color: var(--muted); margin: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; max-width: 820px; margin-inline: auto; }
.price-card {
  padding: 2rem 1.8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.price-card--feature { border: 2px solid var(--iyi-gold); box-shadow: var(--shadow-gold); position: relative; }
.price-card__flag {
  position: absolute; top: -0.8rem; right: 1.4rem; background: var(--iyi-gold); color: #2a2008;
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px;
}
.price-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: var(--step-1); margin: 0; }
.price-card .amount { font-family: var(--font-serif); font-size: var(--step-3); color: var(--iyi-indigo); line-height: 1; }
.price-card .amount small { font-family: var(--font-sans); font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.price-card ul { margin: 0.4rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.price-card li { position: relative; padding-left: 1.6rem; color: var(--muted); font-size: 0.95rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--iyi-clay); font-weight: 900; }
.price-note { text-align: center; color: var(--muted); font-size: var(--step--1); margin-top: 1.4rem; }

/* ==========================================================================
   Waitlist form
   ========================================================================== */
.waitlist { max-width: 640px; margin-inline: auto; }
.form-card {
  padding: clamp(1.5rem, 4vw, 2.6rem); border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.6rem; }
.field > label { display: block; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.field .hint { font-weight: 500; color: var(--muted); font-size: var(--step--1); }
.field input[type="email"], .field input[type="text"] {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); font-size: 1rem;
}
.field input:focus { border-color: var(--iyi-gold); background: #fff; }
.req { color: var(--iyi-clay); }

/* segmented tap options */
.options { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.options input { position: absolute; opacity: 0; width: 0; height: 0; }
.options label {
  display: inline-flex; align-items: center; padding: 0.6rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--surface-2); font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all 0.14s ease; user-select: none;
}
.options label:hover { border-color: var(--iyi-gold); }
.options input:checked + label { background: var(--iyi-indigo); color: #fff; border-color: var(--iyi-indigo); }
.options input:focus-visible + label { outline: 3px solid var(--iyi-gold); outline-offset: 2px; }

.conditional { margin-top: 1rem; padding-left: 1rem; border-left: 3px solid var(--iyi-clay-soft); }
.conditional[hidden] { display: none; }

.consent { display: flex; gap: 0.7rem; align-items: flex-start; padding: 1rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line); }
.consent input { margin-top: 0.25rem; width: 1.15rem; height: 1.15rem; flex: 0 0 auto; accent-color: var(--iyi-indigo); }
.consent label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.consent a { color: var(--iyi-clay); font-weight: 700; }

.form-actions { margin-top: 1.6rem; }
.form-actions .button { width: 100%; }
.form-note { margin: 0.8rem 0 0; font-size: var(--step--1); line-height: 1.5; color: var(--muted); text-align: center; }
.form-note a { color: var(--iyi-clay); font-weight: 700; }
.form-error { margin-top: 0.8rem; color: #a3341f; font-size: 0.9rem; font-weight: 600; }
.form-error[hidden] { display: none; }

/* thank-you state */
.form-thanks { text-align: center; padding: clamp(1.5rem, 4vw, 3rem); }
.form-thanks[hidden] { display: none; }
.form-thanks .tick {
  display: inline-grid; place-items: center; width: 4rem; height: 4rem; margin-bottom: 1rem;
  border-radius: 999px; background: var(--iyi-gold); color: #2a2008; font-size: 2rem; box-shadow: var(--shadow-gold);
}
.form-thanks h3 { font-family: var(--font-serif); font-size: var(--step-1); color: var(--iyi-indigo); line-height: 1.25; }

/* Fieldset-based radio questions + optional block (custom waitlist form) */
.optional-block {
  margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.optional-block__head {
  margin: 0 0 1.2rem; font-weight: 800; font-size: var(--step-0); color: var(--iyi-indigo);
}
.optional-block__head span { font-weight: 600; color: var(--muted); }

fieldset.options-set { margin: 0 0 1.6rem; padding: 0; border: 0; }
fieldset.options-set legend {
  padding: 0; margin-bottom: 0.5rem; font-weight: 700; font-size: var(--step-0); color: var(--ink);
}
fieldset.options-set .hint { margin: 0 0 0.7rem; }

/* Readable radio pills (bump from tiny to ~1rem) */
.options label { font-size: 1rem; }

/* Conditional textareas */
.conditional label { display: block; font-weight: 700; margin-bottom: 0.45rem; color: var(--ink); font-size: 0.95rem; }
.field textarea, .conditional textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); font-size: 1rem; font-family: inherit; resize: vertical; min-height: 3.2rem;
}
.field textarea:focus, .conditional textarea:focus { border-color: var(--iyi-gold); background: #fff; outline: none; }

/* ==========================================================================
   Prose (privacy policy)
   ========================================================================== */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: var(--step-2); margin-top: 2.4rem; color: var(--iyi-indigo); }
.prose h3 { font-family: var(--font-sans); font-weight: 700; font-size: var(--step-1); margin-top: 1.6rem; }
.prose p, .prose li { color: #43392f; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--iyi-clay); font-weight: 600; }
.prose .placeholder { background: #fff6e6; border: 1px dashed var(--iyi-gold); border-radius: 6px; padding: 0.05rem 0.4rem; font-weight: 600; color: #8a6516; }
.callout {
  margin: 1.5rem 0; padding: 1.2rem 1.4rem; border-radius: var(--radius-sm);
  background: var(--iyi-clay-soft); border-left: 4px solid var(--iyi-clay);
}
.callout p { margin: 0; color: #6a3a22; }

/* Featured "answer" paragraph in guides (snippet target) */
.prose .answer-box {
  margin: 1.5rem 0; padding: 1.2rem 1.4rem; border-radius: var(--radius-sm);
  background: var(--surface-2); border-left: 4px solid var(--iyi-gold);
  font-size: var(--step-1); line-height: 1.5;
}
.prose .answer-box strong { color: var(--iyi-indigo); font-weight: 700; }
.doc-meta { color: var(--muted); font-size: var(--step--1); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--iyi-indigo-deep); color: rgba(255,255,255,0.72); }
.site-footer .container { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand img { width: 38px; height: 38px; border-radius: 10px; }
.footer-brand strong { font-family: var(--font-serif); color: #fff; font-size: 1.1rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--iyi-gold-bright); }
.footer-legal {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.82rem;
}
.footer-legal p { margin: 0; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --header-height: 64px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.2rem;
    padding: 0.8rem var(--gutter) 1.2rem; background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card--link:hover { transform: none; }
}
