/* ===========================================================
   Sof's Kitchen — design tokens
   =========================================================== */
:root {
  --cream:        #FBF3E6;
  --cream-soft:   #F3E5CE;
  --paper:        #FFFDF9;
  --brown-900:    #3A281B;
  --brown-800:    #4A3322;
  --brown-700:    #5C3D22;
  --brown-500:    #8B4E1F;
  --brown-500-dk: #713F19;
  --sage:         #6E7F5D;
  --sage-dark:    #4C5A40;
  --gold:         #C9A15A;
  --gold-soft:    #E8D2A6;
  --green-wa:     #2C6B3F;
  --green-wa-dk:  #1F4E2D;
  --border-soft:  #E7D5B8;

  --font-script:  'Caveat', cursive;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(58, 40, 27, 0.08);
  --shadow-md: 0 12px 32px rgba(58, 40, 27, 0.14);
  --shadow-lg: 0 20px 48px rgba(58, 40, 27, 0.20);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================================================
   Reset
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--brown-800); margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brown-800);
  color: #fff;
  padding: 0.75em 1.25em;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: var(--green-wa-dk); box-shadow: var(--shadow-md); }

.btn-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-instagram:hover { opacity: 0.92; box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--brown-800);
  border-color: var(--brown-800);
}
.btn-outline:hover { background: var(--brown-800); color: #fff; }

.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn-sm { padding: 0.55em 1.1em; font-size: 0.9rem; }

.text-link {
  color: var(--sage-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.text-link:hover { color: var(--brown-800); border-color: var(--brown-800); }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 243, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 0.7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand-mark { border-radius: 50%; }
.brand-word {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brown-800);
  line-height: 1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a {
  padding: 0.5em 0.1em;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.site-nav a:hover { border-color: var(--gold); color: var(--brown-800); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--brown-800);
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.icon-link:hover { background: var(--cream-soft); color: var(--sage-dark); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-soft);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--brown-800);
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}
.lang-switch:hover { background: var(--cream-soft); border-color: var(--sage-dark); }
.mobile-actions .lang-switch {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0.5rem 0.9rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--brown-800);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--cream-soft); }

.mobile-actions {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-soft);
  width: 100%;
}
.mobile-actions .icon-link { gap: 0.6rem; width: auto; height: auto; padding: 0.5rem 0.25rem; border-radius: var(--radius-sm); }
.mobile-actions .icon-link span { font-weight: 600; font-size: 0.95rem; }
.mobile-actions .btn { width: 100%; }

/* ===========================================================
   Section basics
   =========================================================== */
section { padding-block: var(--space-6); }
.eyebrow {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--sage-dark);
  margin: 0 0 0.3em;
  line-height: 1;
}
.eyebrow--light { color: var(--gold-soft); }
.section-head { max-width: 640px; margin: 0 auto var(--space-5); text-align: center; }
.section-head--light h2 { color: var(--paper); }
.section-lead { font-size: 1.1rem; color: var(--brown-700); }
.section-head h2 { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem); }

/* ===========================================================
   Hero
   =========================================================== */
.hero { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);
  margin-bottom: 0.4em;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--brown-700);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1179 / 1164;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-media--logo img {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
  padding: 0.5rem;
}
.hero-caption {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--sage-dark);
  text-align: center;
  margin: 0.9rem 0 0;
}

/* ===========================================================
   Feature strip
   =========================================================== */
.strip {
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-block: var(--space-5);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.strip-item { text-align: center; }
.strip-icon { color: var(--sage-dark); margin-bottom: 0.6rem; }
.strip-item h2 { font-size: 1.15rem; margin-bottom: 0.3em; }
.strip-item p { font-size: 0.92rem; color: var(--brown-700); margin: 0; }

/* ===========================================================
   Video
   =========================================================== */
.video-inner { text-align: center; }
.video-frame-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--brown-900);
  flex-shrink: 0;
  order: 2;
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
}
.video-mute-btn {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(58, 40, 27, 0.55);
  backdrop-filter: blur(3px);
  color: #fff;
  transition: background-color 200ms var(--ease);
}
.video-mute-btn:hover { background: rgba(58, 40, 27, 0.8); }
.video-side-media {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-side-media:first-child { order: 1; }
.video-side-media:last-child { order: 3; }
.video-side-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1065 / 1400;
  object-fit: cover;
}

/* ===========================================================
   Flavors
   =========================================================== */
.flavors { background: var(--cream-soft); }
.flavor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.flavor-card {
  display: block;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.flavor-card:hover,
.flavor-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.flavor-card--popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.flavor-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.flavor-media img { width: 100%; height: 100%; object-fit: cover; }
.flavor-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--brown-900);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35em 0.75em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.flavor-card h3 {
  font-size: 1.25rem;
  margin: 1.1rem 1.25rem 0.3rem;
}
.flavor-price {
  margin: 0 1.25rem 1.25rem;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 1.05rem;
}
.flavor-note {
  text-align: center;
  margin-top: var(--space-4);
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--sage-dark);
}

/* ===========================================================
   Ingredients
   =========================================================== */
.ingredients { background: var(--paper); }
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-3);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ingredient-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-soft);
}
.ingredient-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ingredient-item h3 {
  font-size: 1.1rem;
  margin: 0;
}

/* ===========================================================
   Reviews
   =========================================================== */
.reviews { background: var(--cream-soft); }
.reviews-mark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.reviews-mark img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.testimonial-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto var(--space-5);
  padding-inline: 3.25rem;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 400ms var(--ease);
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0.25rem;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--brown-800);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.slider-arrow:hover { background: var(--brown-800); color: var(--paper); }
.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-3);
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-soft);
  padding: 0;
  cursor: pointer;
  transition: background-color 200ms var(--ease), transform 200ms var(--ease);
}
.slider-dot:hover { background: var(--gold); }
.slider-dot[aria-selected="true"] {
  background: var(--sage-dark);
  transform: scale(1.3);
}
.review-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

/* ===========================================================
   Review page
   =========================================================== */
.review-page { padding-block: var(--space-5) var(--space-7); }
.review-page-inner { max-width: 560px; margin: 0 auto; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: var(--space-4);
  transition: color 200ms var(--ease);
}
.back-link:hover { color: var(--brown-800); }
.testimonial {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  margin: 0;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.testimonial-stars svg { width: 20px; height: 20px; }
.testimonial-quote {
  font-size: 1.05rem;
  color: var(--brown-800);
  margin: 0 0 0.75rem;
}
.testimonial-author {
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 0.95rem;
}
.review-form-head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.review-form-head h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}
.review-form-head p {
  color: var(--brown-700);
  margin: 0;
}
.review-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.25rem;
  border: 0;
  padding: 0;
  margin: 0 0 1.5rem;
}
.star-rating legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.star-rating input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.star-rating label {
  cursor: pointer;
  color: var(--border-soft);
  transition: color 150ms var(--ease), transform 150ms var(--ease);
  line-height: 0;
}
.star-rating label svg { width: 40px; height: 40px; display: block; }
.star-rating label:hover { transform: scale(1.08); }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}
.star-rating input:focus-visible + label {
  outline: 3px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--brown-800);
}
.optional { font-weight: 400; color: var(--brown-700); }
.form-row input[type="text"],
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown-900);
  background: var(--cream);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.75em 0.9em;
  min-height: 44px;
  resize: vertical;
  transition: border-color 150ms var(--ease);
}
.form-row input[type="text"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
}
.field-error {
  color: #B3261E;
  font-size: 0.9rem;
  font-weight: 600;
  margin: -0.9rem 0 1rem;
}
.review-form .btn { width: 100%; }
.review-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--brown-700);
  margin: 0.9rem 0 0;
}
.review-form .form-success {
  text-align: center;
  color: var(--sage-dark);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--brown-900);
  color: rgba(251, 243, 230, 0.85);
  padding-top: var(--space-5);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { border-radius: 50%; }
.footer-brand .brand-word { display: block; font-size: 1.5rem; color: var(--paper); }
.footer-tagline { font-family: var(--font-script); font-size: 1.05rem; color: var(--gold-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--space-3); font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social .icon-link { color: var(--paper); }
.footer-social .icon-link:hover { background: rgba(255, 255, 255, 0.1); color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-1);
  padding-block: var(--space-3);
  font-size: 0.85rem;
  color: rgba(251, 243, 230, 0.6);
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: rgba(251, 243, 230, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms var(--ease);
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ===========================================================
   Floating action buttons
   =========================================================== */
.fab-stack {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.fab-whatsapp,
.fab-instagram {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), opacity 200ms var(--ease);
}
.fab-whatsapp { background: var(--green-wa); }
.fab-whatsapp:hover { background: var(--green-wa-dk); transform: scale(1.06); }
.fab-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.fab-instagram:hover { opacity: 0.9; transform: scale(1.06); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (min-width: 640px) {
  .strip-inner { grid-template-columns: repeat(4, 1fr); }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .video-frame-row { flex-direction: row; align-items: center; justify-content: center; gap: var(--space-4); }
  .video-side-media { max-width: 220px; }
  .ingredient-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 859px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-2);
    padding: 5.5rem var(--space-4) var(--space-4);
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 1.1rem; width: 100%; padding: 0.6em 0; }
  .nav-toggle { display: inline-flex; }
  .header-actions { display: none; }
  .mobile-actions { display: flex; }
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
}
