/* ============================================================
   Kitchett — Main Stylesheet
   Warm kitchen aesthetic, mobile-first responsive design
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:        #fdf6ee;
  --cream-dark:   #f5ead9;
  --espresso:     #2c1a0e;
  --espresso-mid: #4a2e1a;
  --caramel:      #b5651d;
  --caramel-light:#d4844a;
  --caramel-pale: #f0d5b8;
  --sage:         #6b8f6b;
  --sage-light:   #e8f0e8;
  --sage-pale:    #f2f7f2;
  --white:        #ffffff;
  --muted:        #8a6a4a;

  /* Spacing */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  /* Shape */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.75rem;
  --radius-xl:  2.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(44,26,14,.07), 0 1px 2px rgba(44,26,14,.04);
  --shadow-md:  0 4px 12px rgba(44,26,14,.10), 0 2px 4px rgba(44,26,14,.06);
  --shadow-lg:  0 12px 40px rgba(44,26,14,.14), 0 4px 8px rgba(44,26,14,.06);
  --shadow-xl:  0 24px 64px rgba(44,26,14,.18), 0 8px 16px rgba(44,26,14,.08);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--espresso);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.sr-only {
  position: absolute; width:1px; height:1px; padding:0;
  margin:-1px; overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border-width:0;
}
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top:-999px; left: var(--space-md);
  background: var(--caramel); color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
  transition: top var(--dur-base) var(--ease);
}
.skip-link:focus { top: var(--space-md); }

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,246,238,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181,101,29,.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav__brand {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--espresso);
}
.nav__brand-logo {
  width: 32px;
  height: 32px;
  /* iOS squircle ≈ 22% of size */
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(44,26,14,.22), 0 0 0 0.5px rgba(0,0,0,.08);
}
.nav__links {
  display: flex; align-items: center; gap: var(--space-lg);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--espresso-mid);
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--caramel); }
.nav__cta {
  background: var(--caramel);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease) !important;
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover {
  background: var(--caramel-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md) !important;
}

/* Mobile nav toggle */
.nav__menu-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px;
}
.nav__menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}
.nav__menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  flex-direction: column; gap: var(--space-sm);
  padding: var(--space-md) 0 var(--space-lg);
  border-top: 1px solid var(--caramel-pale);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--espresso-mid);
  padding: var(--space-xs) 0;
}
.nav__mobile a:hover { color: var(--caramel); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 55%, var(--cream-dark) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  background: var(--sage-light);
  color: var(--sage);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .6; }
}
.hero__headline {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--caramel), var(--caramel-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: var(--espresso);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-md);
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.btn-primary:hover {
  background: var(--espresso-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--caramel);
  font-size: var(--text-sm);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
  padding-bottom: 1px;
}
.btn-ghost:hover { border-color: var(--caramel); }

/* ── Phone frame with real screenshot ───────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-sm) 0;
}

/* Warm ambient glow behind the device */
.phone-glow {
  position: relative;
  display: inline-block;
}
.phone-glow::before {
  content: '';
  position: absolute;
  inset: -32px -28px;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(181,101,29,.28) 0%,
    rgba(181,101,29,.10) 45%,
    transparent 72%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Slim, realistic phone shell */
.phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
  background: #1a0f07;
  border-radius: 46px;
  /* thin outer ring = highlight, then dark body */
  padding: 2px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),   /* subtle highlight rim */
    0 0 0 9px #1c110a,                  /* dark titanium band */
    0 0 0 10px rgba(255,255,255,.06),   /* thin outer rim */
    0 32px 64px rgba(44,26,14,.45),     /* main drop shadow */
    0 8px 20px rgba(44,26,14,.30);
}

/* Inner chassis — holds notch + screen */
.phone-chassis {
  border-radius: 44px;
  overflow: hidden;
  background: #0f0905;
}

/* Dynamic Island-style notch pill */
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #0a0604;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,.05);
}
.phone-notch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #1a1008;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.06);
}

/* Screen area */
.phone-screen {
  border-radius: 44px;
  overflow: hidden;
  background: #000;
  line-height: 0; /* kills gap under img */
}

/* The real screenshot */
.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 44px;
}

/* Home indicator pill */
.phone-home-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,.22);
  border-radius: 4px;
}

/* ── Works-with row ─────────────────────────────────────────── */
.works-with {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--caramel-pale);
  border-bottom: 1px solid var(--caramel-pale);
}
.works-with__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: var(--space-lg);
}
.works-with__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.works-with__pill {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  background: var(--white);
  border: 1.5px solid var(--caramel-pale);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--espresso-mid);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.works-with__pill:hover {
  border-color: var(--caramel);
  box-shadow: var(--shadow-md);
}
.works-with__pill-icon { font-size: 1.1em; }

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-2xl) 0;
}
.section--alt {
  background: var(--cream-dark);
}
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: var(--space-md);
  max-width: 600px;
}
.section-body {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--caramel), var(--caramel-light));
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-card__emoji {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: var(--space-xs);
}
.feature-card__desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PRIVACY-FIRST SECTION
══════════════════════════════════════════════════════════════ */
.privacy-banner {
  background: var(--espresso);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.privacy-banner::after {
  content: '🔒';
  position: absolute;
  right: -10px; top: -20px;
  font-size: 120px;
  opacity: 0.06;
  pointer-events: none;
}
.privacy-banner__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: var(--space-sm);
}
.privacy-banner__title {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.privacy-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.privacy-item {
  display: flex; align-items: flex-start; gap: var(--space-md);
}
.privacy-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.privacy-item__text {
  flex: 1;
}
.privacy-item__text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.privacy-item__text p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.privacy-banner__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: var(--space-lg);
  color: var(--caramel-light);
  font-weight: 600;
  font-size: var(--text-sm);
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
  padding-bottom: 1px;
}
.privacy-banner__link:hover { border-color: var(--caramel-light); }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-list {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
details.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--caramel-pale);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
details.faq-item[open],
details.faq-item:hover {
  border-color: var(--caramel);
  box-shadow: var(--shadow-md);
}
summary.faq-item__q {
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--espresso);
  list-style: none;
  gap: var(--space-md);
}
summary.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--caramel-pale);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--caramel);
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}
details.faq-item[open] .faq-item__q-icon {
  transform: rotate(45deg);
  background: var(--caramel);
  color: var(--white);
}
.faq-item__a {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--caramel-pale);
  margin-top: -1px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: var(--space-xl) auto 0;
  text-align: center;
}
.contact-card__emoji { font-size: 2.5rem; margin-bottom: var(--space-md); }
.contact-card__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--espresso);
  margin-bottom: var(--space-sm);
}
.contact-card__body {
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.contact-card__email {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: var(--caramel);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.contact-card__email:hover {
  background: var(--caramel-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--espresso);
  color: rgba(255,255,255,.55);
  padding: var(--space-xl) 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer__brand-logo {
  width: 26px;
  height: 26px;
  /* iOS squircle */
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.site-footer__copy {
  font-size: var(--text-sm);
}
.site-footer__links {
  display: flex; gap: var(--space-lg); flex-wrap: wrap;
}
.site-footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--dur-fast) var(--ease);
}
.site-footer__links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════════════════════════ */
.policy-hero {
  background: linear-gradient(160deg, var(--cream) 60%, var(--cream-dark) 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--caramel-pale);
}
.policy-hero__back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--caramel);
  margin-bottom: var(--space-lg);
  transition: gap var(--dur-fast) var(--ease);
}
.policy-hero__back:hover { gap: 0.6rem; }
.policy-hero__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin-bottom: var(--space-sm);
}
.policy-hero__meta {
  font-size: var(--text-sm);
  color: var(--muted);
}
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}
.policy-content h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--espresso);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--caramel-pale);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  font-size: var(--text-base);
  color: var(--espresso-mid);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.policy-content a {
  color: var(--caramel);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-content a:hover { color: var(--caramel-light); }
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}
.policy-content ul li {
  font-size: var(--text-base);
  color: var(--espresso-mid);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}
.policy-note {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0;
}
.policy-note p {
  color: var(--sage);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0;
}
.policy-warning {
  background: #fdf3e7;
  border-left: 3px solid var(--caramel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0;
}
.policy-warning p {
  color: var(--caramel);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≥ 640px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .privacy-items {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop (≥ 960px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .hero__visual {
    justify-content: flex-end;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav__links { display: flex; }
  .nav__menu-btn { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile nav hide desktop links
══════════════════════════════════════════════════════════════ */
@media (max-width: 959px) {
  .nav__links--desktop { display: none; }
  .nav__menu-btn { display: flex; }
}

/* ── Scroll fade-in animation ───────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-slow) var(--ease),
                transform var(--dur-slow) var(--ease);
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
}
