/* GENERATED by build-css.sh — do not edit. Sources: styles/{tokens reset typography layout components sections pages motion responsive}.css */

/* ===== tokens.css ===== */
/* ============================================================
   Handkala Creatives — design tokens
   ============================================================ */
:root {
  /* Surfaces */
  --cream-50: #FFFDF9;
  --cream-100: #F8F4ED;
  --cream-200: #F2E9DD;
  --cream-300: #EFE4D5;
  --surface-warm: #F5EBDD;

  /* Ink */
  --ink-900: #1D211B;
  --ink-700: #45483F;
  --ink-600: #626158;
  --ink-500: #6C6A61;
  --ink-400: #6F695F;

  /* Brand */
  --green-700: #294D2C;
  --green-800: #1F3D23;
  --green-soft: #E8EEE5;
  --terracotta-500: #C65F34;   /* graphics, icons, fills — meets 3:1 */
  --terracotta-text: #B14A1F;  /* small text — meets 4.5:1 on every cream surface */
  --terracotta-600: #A84A29;
  --clay-400: #D58A61;
  --gold-500: #C8902F;

  /* Lines */
  --border: #DED8CE;
  --border-light: #EBE5DC;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  /* Shadow — fine borders are preferred over heavy shadows */
  --shadow-sm: 0 3px 12px rgba(35, 30, 24, .05);
  --shadow-md: 0 10px 32px rgba(35, 30, 24, .08);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --transition-fast: 160ms var(--ease);
  --transition-normal: 280ms var(--ease);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;
}

/* ===== reset.css ===== */
/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, picture, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; margin: 0; padding: 0; }
figure, blockquote { margin: 0; }
address { font-style: normal; }

/* Anchors clear the sticky header */
section[id], div[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

:focus-visible {
  outline: 3px solid var(--terracotta-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--green-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

[hidden] { display: none !important; }

/* ===== typography.css ===== */
/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  /* Cormorant runs small and light for its point size; 600 holds up on cream */
  font-weight: 600;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink-900);
}

h1 { font-size: clamp(46px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.012em; }
h2 { font-size: clamp(33px, 3.6vw, 50px); line-height: 1.06; letter-spacing: -.01em; }
h3 { font-size: 22px; line-height: 1.25; }

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-text);
}
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow--plain::after { display: none; }

/* Restrained script — decorative phrases and the logo only, never body copy */
.handwritten {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.05;
}

.lede {
  color: var(--ink-700);
  font-size: 16px;
  max-width: 56ch;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.section-head__text { max-width: 62ch; }
.section-head h2 { margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-3); color: var(--ink-500); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}
.arrow-link svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
.arrow-link:hover svg { transform: translateX(4px); }
.arrow-link--terracotta { color: var(--terracotta-text); }

/* ===== layout.css ===== */
/* ============================================================
   Layout
   ============================================================ */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

section { padding: 72px 0; }
.section--tight { padding: 56px 0; }
.section--flush { padding: 0; }

.bg-cream { background: var(--cream-100); }
.bg-cream-50 { background: var(--cream-50); }
.bg-cream-200 { background: var(--cream-200); }

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 620px;
}

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

/* Collection */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 18px; }

/* Story */
.story-grid { display: grid; grid-template-columns: .92fr 1.1fr .68fr; min-height: 300px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

/* Instagram */
.instagram-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 2.2fr); gap: var(--space-10); align-items: center; }
.instagram-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }

/* Lead magnet */
.lead-grid {
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr);
  align-items: center;
  gap: var(--space-10);
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .42fr 1.58fr; gap: var(--space-10); align-items: start; }
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }

/* Footer */
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.2fr .7fr .8fr; gap: var(--space-12); }

/* ===== components.css ===== */
/* ============================================================
   Components
   ============================================================ */

/* ---- Icons ----
   Every inline icon is <svg><use href="#…"></svg>, which has no intrinsic size.
   One default here prevents oversized arrows anywhere an icon is added later. */
:where(svg:not([width])) { width: 18px; height: 18px; }
:where(.leaf) { width: 120px; height: 120px; }

/* ---- Buttons ---- */
.btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-secondary:hover { background: rgba(29, 33, 27, .04); transform: translateY(-1px); }

.btn-terracotta { background: var(--terracotta-500); color: #fff; border-color: var(--terracotta-500); }
.btn-terracotta:hover { background: var(--terracotta-600); border-color: var(--terracotta-600); transform: translateY(-1px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.btn-sm { min-height: 40px; padding: 0 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---- Photo placeholders ----
   No stock or AI photography is shipped. Each slot below reserves the exact
   aspect ratio a real photograph will occupy and is labelled, so swapping in
   a real file is a one-line change and causes no layout shift. */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .7), transparent 58%),
    radial-gradient(circle at 18% 84%, rgba(213, 138, 97, .16), transparent 46%),
    linear-gradient(155deg, var(--surface-warm), var(--cream-200) 62%, var(--cream-300));
  display: grid;
  place-items: center;
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-700);
  background: rgba(255, 253, 249, .88);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph--green {
  background: linear-gradient(155deg, var(--green-soft), var(--cream-200));
}
.ph--flat { background: var(--cream-200); }
.ph .ph-motif { width: 46%; max-width: 210px; height: auto; color: var(--clay-400); opacity: .45; }

/* Real images use the same wrapper */
.image-wrap { overflow: hidden; border-radius: var(--radius-md); }
/* <picture> is inline by default, so it would not fill an aspect-ratio box */
.image-wrap picture { display: block; width: 100%; height: 100%; }
.image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-normal); }
.image-wrap:hover img { transform: scale(1.025); }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(248, 244, 237, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 33, 27, .07);
  transition: height var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}
.header.is-compact {
  height: 64px;
  background: rgba(255, 253, 249, .95);
  box-shadow: 0 4px 18px rgba(30, 25, 20, .05);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo { display: block; flex-shrink: 0; line-height: 1; }
.logo__name { font-family: var(--font-display); font-size: 27px; font-weight: 700; letter-spacing: -.01em; }
.logo__script {
  display: block;
  margin-top: -6px;
  margin-left: 22px;
  font-family: var(--font-script);
  font-size: 23px;
  color: var(--terracotta-text);
}
.logo__tagline {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.header.is-compact .logo__tagline { display: none; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; font-size: 14px; font-weight: 500; padding: 6px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--terracotta-500);
  transition: right var(--transition-fast);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-900);
}
.icon-btn:hover { background: rgba(29, 33, 27, .04); }
.icon-btn svg { width: 19px; height: 19px; }

.mobile-toggle { display: none; }

/* ---- Mobile drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(29, 33, 27, .45); }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 340px);
  background: var(--cream-50);
  padding: 20px 22px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  box-shadow: -18px 0 46px rgba(30, 25, 20, .18);
}
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__panel a.drawer__link {
  padding: 14px 2px;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
  font-weight: 500;
}
.drawer__cta { margin-top: 18px; display: grid; gap: 10px; }

/* ---- Trust ---- */
.trust-bar { background: var(--cream-50); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--border-light); }
.trust-icon { width: 34px; height: 34px; flex: 0 0 auto; color: var(--terracotta-500); }
.trust-title { font-weight: 700; font-size: 14px; }
.trust-copy { margin-top: 2px; font-size: 12px; color: var(--ink-500); }

/* ---- Collection card ---- */
.collection-card { min-width: 0; display: block; }
.collection-card__media { aspect-ratio: 1 / 1; }
.collection-card__content { position: relative; padding: 12px 40px 0 0; }
.collection-card__title { font-family: var(--font-body); font-size: 15px; font-weight: 700; }
.collection-card__description { margin-top: 3px; color: var(--ink-500); font-size: 13px; }
.collection-card__arrow {
  position: absolute; right: 4px; top: 14px;
  color: var(--terracotta-500);
  transition: transform var(--transition-fast);
}
.collection-card:hover .collection-card__arrow { transform: translateX(4px); }
.collection-card:hover .ph, .collection-card:hover .image-wrap img { transform: scale(1.02); }
.collection-card .ph { transition: transform var(--transition-normal); }

/* ---- Process step ---- */
.process-step { position: relative; }
.process-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-warm);
  color: var(--terracotta-500);
  margin-bottom: 16px;
}
.process-icon svg { width: 26px; height: 26px; }
.process-step h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; }
.process-step p { margin-top: 4px; font-size: 13px; color: var(--ink-500); max-width: 30ch; }
.process-connector {
  position: absolute;
  top: 30px;
  right: -13px;
  color: var(--border);
}

/* ---- Testimonial ---- */
.testimonial {
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.testimonial__quote { font-size: 14px; color: var(--ink-700); }
.testimonial__person { display: flex; gap: 12px; align-items: center; margin-top: 16px; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-warm);
  display: grid; place-items: center;
  font-weight: 700; color: var(--terracotta-500);
  flex: none;
}
.testimonial__name { font-size: 14px; font-weight: 700; }
.testimonial__place { font-size: 12px; color: var(--ink-400); }
.testimonial__stars { color: var(--gold-500); letter-spacing: 2px; font-size: 13px; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}
.rating-summary__score { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.rating-summary__meta { font-size: 13px; color: var(--ink-500); }

/* ---- Lead magnet ---- */
.lead-card {
  position: relative;
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px clamp(24px, 4vw, 46px);
  overflow: hidden;
}
.lead-guide { aspect-ratio: 1 / 1.12; border-radius: var(--radius-md); }
.lead-guide__cover {
  width: 78%;
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-md);
}
.lead-guide__num { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--terracotta-500); }
.lead-guide__text { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; color: var(--ink-700); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-top: 18px; align-items: end; }
.field { display: grid; gap: 5px; }
.field label { font-size: 12px; font-weight: 600; color: var(--ink-600); }
.field input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--terracotta-600); }
.lead-form .btn { min-height: 48px; }
.form-note { margin-top: 12px; font-size: 12px; color: var(--ink-400); }
.form-status { margin-top: 12px; font-size: 13px; font-weight: 600; }
.form-status[data-state="error"] { color: var(--terracotta-600); }
.form-status[data-state="ok"] { color: var(--green-700); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.faq-trigger svg { flex: none; color: var(--ink-500); transition: transform var(--transition-fast); }
.faq-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; color: var(--ink-500); font-size: 14px; max-width: 70ch; }

/* ---- Decorative ---- */
.decor { position: absolute; pointer-events: none; user-select: none; }
.script-note { color: var(--terracotta-500); font-size: 26px; }

/* ---- Mobile order bar ---- */
.mobile-order-bar {
  position: fixed;
  z-index: 40;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(30, 25, 20, .16);
}
.mobile-order-bar.is-visible { display: flex; }
.mobile-order-bar__copy { font-size: 13px; font-weight: 600; }
.mobile-order-bar__copy span { display: block; font-weight: 400; font-size: 11px; color: var(--ink-400); }

/* ---- Reveal (progressive enhancement only) ---- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Fail-safe: if the observer never runs, content must not stay hidden. */
.js .reveal { animation: reveal-failsafe 0s linear 2.5s forwards; }
@keyframes reveal-failsafe { to { opacity: 1; transform: none; } }

/* ===== sections.css ===== */
/* ============================================================
   Sections
   ============================================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--cream-100) 0%, var(--cream-100) 43%, var(--cream-300) 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 64px 48px 64px 0; }
.hero-title { max-width: 660px; margin: 16px 0 18px; }
.hero-title em { color: var(--terracotta-500); font-style: italic; }
.hero-description { max-width: 560px; color: var(--ink-700); font-size: 16px; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-microcopy { margin-top: 12px; font-size: 12px; color: var(--ink-400); }

.hero-categories {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(29, 33, 27, .08);
}
.hero-category { text-align: center; }
.hero-category svg { width: 26px; height: 26px; color: var(--terracotta-500); margin: 0 auto 8px; }
.hero-category span { font-size: 12px; color: var(--ink-600); }

.hero-media { position: relative; min-height: 620px; height: 100%; }
.hero-media .ph, .hero-media .image-wrap, .hero-media picture { position: absolute; inset: 0; border-radius: 0; height: 100%; }
.hero-media picture { display: block; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero-note {
  position: absolute;
  right: 5%;
  top: 9%;
  z-index: 3;
  max-width: 160px;
  font-size: 29px;
  /* Sits over photography, so it carries its own legibility */
  color: #FFFDF9;
  text-shadow: 0 2px 14px rgba(40, 28, 18, .55), 0 1px 3px rgba(40, 28, 18, .4);
  transform: rotate(-4deg);
  text-align: center;
}
.hero-note svg { width: 26px; height: 26px; margin: 6px auto 0; color: #FFFDF9; filter: drop-shadow(0 2px 8px rgba(40, 28, 18, .5)); }

/* ---- Featured work ---- */
.work { background: var(--cream-50); }

/* ---- Story band ---- */
.story {
  position: relative;
  background: #3A2C22;
  color: #fff;
  overflow: hidden;
}
.story-grid { align-items: stretch; }
.story-media { position: relative; min-height: 300px; }
.story-media .ph, .story-media .image-wrap { position: absolute; inset: 0; border-radius: 0; height: 100%; }
.story-media .image-wrap img { height: 100%; object-position: 64% 52%; }
.story-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58, 44, 34, .25) 0%, rgba(58, 44, 34, .78) 78%, #3A2C22 100%);
}
.story-quote {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 20%;
  max-width: 300px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  color: #fff;
}
.story-content { display: flex; flex-direction: column; justify-content: center; padding: 44px clamp(24px, 3.5vw, 54px); }
.story-content p { color: rgba(255, 255, 255, .85); font-size: 14.5px; max-width: 46ch; }
.story-content .arrow-link { color: #fff; margin-top: 18px; }
.story-sign {
  background: #3A2C22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 44px clamp(20px, 3vw, 40px) 44px 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.story-sign__name { font-family: var(--font-script); font-size: 30px; color: #fff; line-height: 1; }
.story-sign__role {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

/* ---- Process ---- */
.process { background: var(--cream-100); }

/* ---- Instagram ---- */
.instagram { background: var(--cream-200); }
.instagram h2 { font-size: clamp(26px, 2.6vw, 34px); }
.instagram p { margin-top: 10px; color: var(--ink-600); font-size: 14px; max-width: 34ch; }
.instagram .btn { margin-top: 18px; }
.instagram-strip .ph, .instagram-strip .image-wrap { aspect-ratio: 1 / 1.1; }

/* ---- Lead magnet ---- */
.lead { background: var(--cream-100); position: relative; overflow: hidden; }

/* ---- Testimonials ---- */
.testimonials { background: var(--cream-50); }
.testimonials__intro { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-8); margin-bottom: var(--space-8); flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq { background: var(--cream-100); }
.faq-aside h2 { font-size: clamp(26px, 2.6vw, 34px); }
.faq-aside .arrow-link { margin-top: 16px; }

/* ---- Final CTA ---- */
.final-cta { background: var(--green-700); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { margin: 14px auto 0; max-width: 54ch; color: rgba(255, 255, 255, .85); font-size: 15px; }
.final-cta .hero-actions { justify-content: center; }
.final-cta__note { margin-top: 14px; font-size: 12px; color: rgba(255, 255, 255, .7); }

/* ---- Footer ---- */
.footer { background: var(--cream-200); padding: 56px 0 0; border-top: 1px solid var(--border-light); }
.footer h3 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 14px; }
.footer a:hover { color: var(--terracotta-500); }
.footer-links li + li { margin-top: 9px; }
.footer-links a { font-size: 14px; color: var(--ink-600); }
.footer-tagline { margin-top: 14px; font-size: 13px; color: var(--ink-500); }
.footer-contact { font-size: 14px; color: var(--ink-600); line-height: 1.7; }
.footer-contact .row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; margin-top: 5px; flex: none; color: var(--terracotta-500); }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-700);
}
.footer-social a:hover { border-color: var(--terracotta-500); color: var(--terracotta-500); }
.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid var(--border);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-400);
  flex-wrap: wrap;
}

/* ===== pages.css ===== */
/* ============================================================
   Craft pages + native <details> FAQ
   ============================================================ */

/* Breadcrumb */
.crumbs { padding: 18px 0 2px; font-size: 12.5px; color: var(--ink-500); }
.crumbs a { color: var(--terracotta-text); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 4px; }

/* Article shell */
.craft { padding-bottom: 64px; }

/* Hero: copy beside the piece, so the page is full-width from the first screen */
.craft-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 22px 0 40px;
}
.craft-hero__copy h1 { margin: 12px 0 16px; font-size: clamp(36px, 4.1vw, 56px); }
.craft-hero__copy .lede { font-size: 17px; max-width: 52ch; }
.craft-hero__copy .hero-actions { margin-top: 24px; }
.craft-hero__media .image-wrap { aspect-ratio: 1 / 1; box-shadow: var(--shadow-md); }
.craft-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Body: readable column plus a sticky order card filling the right */
.craft-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.craft-main { min-width: 0; }
.craft-section { padding: 6px 0 26px; }
.craft-section h2 { font-size: clamp(26px, 2.7vw, 35px); margin-bottom: 14px; }
.craft-section p { margin-bottom: 14px; color: var(--ink-700); max-width: 68ch; }
.craft-section p:last-child { margin-bottom: 0; }
.craft-section--wide { padding-top: 34px; }

.craft-aside { position: sticky; top: calc(var(--header-h) + 18px); display: grid; gap: 16px; }
.order-card {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}
.order-card h2 { font-size: 24px; margin: 8px 0 8px; }
.order-card p { font-size: 14px; color: var(--ink-600); margin-bottom: 16px; }
.order-card .btn { margin-bottom: 8px; }
.order-card--plain { background: transparent; }
.order-card--plain h2 { font-size: 20px; margin-top: 0; }
.order-facts { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--border-light); display: grid; gap: 9px; }
.order-facts div { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.order-facts dt { color: var(--ink-400); }
.order-facts dd { margin: 0; font-weight: 600; text-align: right; }

/* Secondary photos */
.craft-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 320px)); gap: 18px; }
.craft-photo { margin: 0; }
.craft-photo .image-wrap { aspect-ratio: 1 / 1; }
.craft-photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-note {
  padding: 22px 22px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  color: var(--ink-600);
  font-size: 14px;
}

/* Related */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.related-grid--stack { grid-template-columns: 1fr; gap: 8px; }
.related-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 10px;
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.related-card:hover { transform: translateY(-2px); border-color: var(--terracotta-500); }
.related-card__name { font-weight: 700; font-size: 14px; }
.related-card__blurb { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }
.related-card__name { grid-column: 1; }
.related-card__blurb { grid-column: 1; }
.related-card svg { grid-column: 2; grid-row: 1 / span 2; color: var(--terracotta-text); }


/* Native details FAQ — answers stay in the accessibility tree */
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item > summary.faq-trigger {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}
details.faq-item > summary.faq-trigger::-webkit-details-marker { display: none; }
details.faq-item > summary.faq-trigger svg { flex: none; color: var(--ink-500); transition: transform var(--transition-fast); }
details.faq-item[open] > summary.faq-trigger svg { transform: rotate(180deg); }
details.faq-item .faq-answer { padding: 0 0 20px; }

@media (max-width: 1023px) {
  .craft-hero { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  .craft-hero__media { max-width: 520px; }
  .craft-body { grid-template-columns: 1fr; }
  .craft-aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .craft-hero { padding-top: 14px; }
  .craft-hero__media { max-width: none; }
  .craft-aside { grid-template-columns: 1fr; }
  .craft-gallery { grid-template-columns: 1fr; }
}

/* ---- Crafts dropdown (shared header) ---- */
.nav-drop { position: relative; }
.nav-drop__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 6px 0;
  /* keeps the pointer inside .nav-drop while it travels toward the menu */
  position: relative; z-index: 1;
  font-size: 14px; font-weight: 500; color: inherit; cursor: pointer;
}
.nav-drop__btn svg { transition: transform var(--transition-fast); }
.nav-drop__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-drop__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 232px;
  display: grid;
  padding: 8px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 60;
}
/* Invisible bridge across the 14px gap: without it the pointer leaves
   .nav-drop on the way down and the menu closes before it is reachable. */
.nav-drop__menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -16px;
  height: 16px;
}
.nav-drop__menu a {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  white-space: nowrap;
}
.nav-drop__menu a::after { display: none; }
.nav-drop__menu a:hover { background: var(--cream-200); color: var(--terracotta-text); }

@media (max-width: 1100px) {
  .main-nav { gap: 22px; }
  .main-nav a, .nav-drop__btn { font-size: 13.5px; }
}

/* Drawer grouping, so the mobile menu mirrors the desktop structure */
.drawer__group {
  margin: 16px 0 2px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-400);
}
.drawer__link--sub { padding-left: 12px; }

/* Footer brand column */
.footer-brand .logo { margin-bottom: 14px; }
.footer-blurb { font-size: 13.5px; line-height: 1.6; color: var(--ink-600); max-width: 34ch; margin: 0 0 10px; }
.footer-blurb--tight { margin-bottom: 16px; }
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream-50);
  font-size: 13px;
  color: var(--ink-600);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.footer-rating:hover { border-color: var(--gold-500); transform: translateY(-1px); color: var(--ink-600); }
.footer-rating__stars { color: var(--gold-500); letter-spacing: 1px; }
.footer-rating strong { color: var(--ink-900); }

/* Craft definitions on the homepage */
.craft-defs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.craft-def {
  background: var(--cream-100);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
}
.craft-def h3 { font-size: 26px; margin-bottom: 10px; }
.craft-def p { font-size: 14.5px; color: var(--ink-700); margin-bottom: 14px; }
@media (max-width: 767px) { .craft-defs { grid-template-columns: 1fr; } }

/* ===== motion.css ===== */
/* ============================================================
   Motion layer — graphic movement across the page.
   Rules: transform/opacity only (compositor-friendly), slow and quiet,
   nothing that competes with the artwork, everything disabled under
   prefers-reduced-motion. No auto-advancing carousels or moving text.
   ============================================================ */

/* ---- Mandala motifs turn slowly, like a piece catching light ---- */
@keyframes hk-spin { to { transform: rotate(360deg); } }
@keyframes hk-spin-rev { to { transform: rotate(-360deg); } }
.ph-motif { animation: hk-spin 120s linear infinite; transform-origin: 50% 50%; }
.collection-card .ph-motif { animation-duration: 160s; }
.collection-card:nth-child(even) .ph-motif { animation-name: hk-spin-rev; }

/* ---- Mirror glint sweeping across placeholder art ---- */
@keyframes hk-glint {
  0%   { transform: translateX(-120%) rotate(8deg); opacity: 0; }
  12%  { opacity: .55; }
  40%  { transform: translateX(120%) rotate(8deg); opacity: 0; }
  100% { transform: translateX(120%) rotate(8deg); opacity: 0; }
}
.ph::before {
  content: "";
  position: absolute;
  top: -20%; bottom: -20%; left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: hk-glint 9s var(--ease) infinite;
  pointer-events: none;
  z-index: 1;
}
.collection-card .ph::before { animation-duration: 11s; animation-delay: 1.4s; }
.instagram-strip .ph::before { animation-duration: 13s; }
.instagram-strip > *:nth-child(2) .ph::before { animation-delay: 1s; }
.instagram-strip > *:nth-child(3) .ph::before { animation-delay: 2s; }

/* ---- Hero light breathing behind the artwork ---- */
@keyframes hk-breathe {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.06); }
}
.hero::before {
  content: "";
  position: absolute;
  right: 6%;
  top: 8%;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 138, 97, .28), transparent 62%);
  animation: hk-breathe 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---- Handwritten notes drift gently ---- */
@keyframes hk-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-9px) rotate(-2.5deg); }
}
.hero-note { animation: hk-float 7s ease-in-out infinite; }
.script-note { animation: hk-float 9s ease-in-out infinite; }

/* ---- Heart in the hero note pulses ---- */
@keyframes hk-beat {
  0%, 100% { transform: scale(1); }
  14%      { transform: scale(1.18); }
  28%      { transform: scale(1); }
}
.hero-note svg { animation: hk-beat 3.4s ease-in-out infinite; transform-origin: 50% 60%; }

/* ---- Eyebrow rule draws itself in when revealed ---- */
@keyframes hk-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.eyebrow::after { transform-origin: left center; }
.reveal.is-visible .eyebrow::after,
.section-head.is-visible .eyebrow::after { animation: hk-draw .7s var(--ease) both; }

/* ---- Trust icons settle in with a small lift ---- */
@keyframes hk-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.trust-item { animation: hk-rise .6s var(--ease) both; }
.trust-item:nth-child(2) { animation-delay: .08s; }
.trust-item:nth-child(3) { animation-delay: .16s; }
.trust-item:nth-child(4) { animation-delay: .24s; }
.trust-item svg { transition: transform var(--transition-normal); }
.trust-item:hover svg { transform: translateY(-3px) rotate(-4deg); }

/* ---- Process: icons pop on hover, dotted line animates along the row ---- */
.process-icon { transition: transform var(--transition-normal), background-color var(--transition-normal); }
.process-step:hover .process-icon { transform: translateY(-4px) scale(1.04); background: var(--green-soft); }
@keyframes hk-nudge {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50%      { transform: translateX(4px); opacity: 1; }
}
.process-connector { animation: hk-nudge 2.6s ease-in-out infinite; }
.process-step:nth-child(2) .process-connector { animation-delay: .3s; }
.process-step:nth-child(3) .process-connector { animation-delay: .6s; }

/* ---- Drifting decorative leaves ---- */
@keyframes hk-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  33%      { transform: translate3d(6px, -10px, 0) rotate(3deg); }
  66%      { transform: translate3d(-5px, -4px, 0) rotate(-2deg); }
}
.leaf {
  position: absolute;
  color: var(--green-700);
  opacity: .13;
  pointer-events: none;
  animation: hk-drift 16s ease-in-out infinite;
}
.leaf--2 { animation-duration: 21s; animation-delay: -4s; }
.leaf--3 { animation-duration: 19s; animation-delay: -9s; }

/* ---- Buttons: WhatsApp icon gives a tiny wave on hover ---- */
@keyframes hk-wave {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-9deg); }
  75%      { transform: rotate(9deg); }
}
.btn:hover svg { animation: hk-wave .6s var(--ease); }

/* ---- Logo script underlines itself on hover ---- */
.logo__script { position: relative; display: inline-block; }
.logo__script::after {
  content: "";
  position: absolute;
  left: 2px; right: 100%; bottom: 1px;
  height: 1px;
  background: currentColor;
  opacity: .6;
  transition: right var(--transition-normal);
}
.logo:hover .logo__script::after { right: 2px; }

/* ---- Rating summary gently glows on hover ---- */
.rating-summary { transition: transform var(--transition-fast), border-color var(--transition-fast); }
.rating-summary:hover { transform: translateY(-2px); border-color: var(--gold-500); }

/* ---- Story quote fades up when the band scrolls into view ---- */
@keyframes hk-quote { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.story-quote { animation: hk-quote 1s var(--ease) both; animation-delay: .2s; }

/* ---- Final CTA breathes a warm halo ---- */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 780px; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(213, 138, 97, .22), transparent 60%);
  animation: hk-breathe 12s ease-in-out infinite;
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }

/* ---- Everything above is optional decoration ---- */
@media (prefers-reduced-motion: reduce) {
  .ph-motif, .ph::before, .hero::before, .hero-note, .hero-note svg, .script-note,
  .trust-item, .process-connector, .leaf, .story-quote, .final-cta::before, .btn:hover svg {
    animation: none !important;
  }
  .ph::before { display: none; }
}

/* ===== responsive.css ===== */
/* ============================================================
   Responsive — mobile gets its own composition, not a squeezed desktop
   ============================================================ */

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); min-height: 0; }
  .hero-copy { padding: 52px 28px 52px 0; }
  .hero-media { min-height: 520px; }
  .hero-categories { gap: 22px; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-sign { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding: 26px clamp(24px, 4vw, 54px); flex-direction: row; align-items: center; gap: 16px; }
  .story-sign__role { margin-top: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-connector { display: none; }
  .instagram-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .instagram p { max-width: none; }
  .faq-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--border-light); }
}

@media (max-width: 767px) {
  :root { --header-h: 66px; }
  .container { width: min(100% - 32px, var(--container)); }
  section { padding: 52px 0; }
  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: 30px; }

  .main-nav, .header-actions .btn { display: none; }
  .mobile-toggle { display: inline-grid; }

  /* Hero: copy first, then image, then categories */
  .hero { background: var(--cream-100); }
  .hero-grid { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { width: 100%; padding: 42px 0 26px; }
  .hero-media { width: 100%; min-height: 0; aspect-ratio: 4 / 4.2; order: 2; }
  .hero-media .ph, .hero-media picture { position: relative; border-radius: var(--radius-md); overflow: hidden; }
  .hero-categories { order: 3; margin-top: 26px; justify-content: space-between; gap: 10px; }
  .hero-category span { font-size: 11px; }
  .hero-note { font-size: 22px; max-width: 120px; right: 6%; top: 8%; }
  .hero-description { font-size: 15px; }

  /* Collection: peek-scroll so discovery is obvious, user stays in control */
  .collection-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(78vw, 320px);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .collection-grid::-webkit-scrollbar { display: none; }
  .collection-card { scroll-snap-align: start; }

  .story-grid { grid-template-columns: 1fr; }
  .story-media { aspect-ratio: 4 / 3; min-height: 0; }
  .story-media::after { background: linear-gradient(180deg, rgba(58,44,34,.15) 40%, rgba(58,44,34,.75) 100%); }
  .story-quote { right: auto; left: 24px; bottom: 18px; max-width: 220px; font-size: 22px; }
  .story-content { padding: 36px 24px 28px; }
  .story-sign { padding: 22px 24px 30px; }

  /* Process: vertical timeline */
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: grid; grid-template-columns: 60px 1fr; gap: 16px; padding-bottom: 26px; position: relative; }
  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 29px; top: 64px; bottom: 6px;
    width: 1px;
    background: repeating-linear-gradient(var(--clay-400) 0 4px, transparent 4px 9px);
  }
  .process-icon { margin-bottom: 0; }
  .process-step p { max-width: none; }

  .instagram-strip { grid-template-columns: repeat(3, 1fr); }
  .instagram-strip > *:nth-child(n+4) { display: none; }

  .lead-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .lead-guide { aspect-ratio: 16 / 9; }
  .lead-guide__cover { width: min(190px, 55vw); }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form .btn { width: 100%; }

  /* Testimonials: swipe, never auto-rotate */
  .testimonials-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 88%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial { scroll-snap-align: start; }

  .faq-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  /* Room for the sticky order bar */
  body.has-order-bar .footer-bottom { padding-bottom: 84px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 520px) {
  .hero-categories { flex-wrap: wrap; row-gap: 18px; }
  .hero-category { flex: 1 0 40%; }
}

@media (max-width: 480px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-item { padding: 18px 12px; align-items: flex-start; }
  .trust-icon { width: 28px; height: 28px; }
  .final-cta .hero-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .mobile-order-bar, .drawer, .lead, .hero-note { display: none !important; }
}
