:root {
  --bg: #fff7f4;
  --bg-soft: #fdeee7;
  --ink: #3a2a2e;
  --ink-soft: #6f5b60;
  --line: #f1d9d4;
  --accent: #e89aa8;
  --accent-deep: #c8657a;
  --peach: #f8d7c2;
  --blush: #f4b8c4;
  --cream: #fbeadf;
  --shadow: 0 24px 60px -28px rgba(168, 78, 96, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* ------- App shell ------- */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell-inner {
  flex: 1;
}

/* ------- Top navigation ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 244, 0.78);
  border-bottom: 1px solid rgba(241, 217, 212, 0.6);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 18px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--peach));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  box-shadow: inset 0 -4px 8px rgba(168, 78, 96, 0.18);
}
.brand-name { letter-spacing: 0.01em; }
.brand-name em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent-deep); }

.nav-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 999px;
}
.nav-tab {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 999px;
  transition: all 200ms ease;
  font-weight: 500;
}
.nav-tab:hover { color: var(--ink); }
.nav-tab.active {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 6px 18px -8px rgba(58, 42, 46, 0.5);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 28px -14px rgba(200, 101, 122, 0.7);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(200, 101, 122, 0.6); }

/* ------- Page transition ------- */
.page {
  animation: fadeup 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ------- Hero ------- */
.hero {
  padding: 88px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-deep);
  display: inline-block;
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Generic buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 14px 30px -14px rgba(58, 42, 46, 0.6);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,0.6); }
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px -14px rgba(200, 101, 122, 0.7);
}

/* Hero photo */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58, 42, 46, 0.42);
  font-family: "JetBrains Mono", "Menlo", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(255, 255, 255, 0.35) 14px,
    rgba(255, 255, 255, 0.35) 15px
  );
}
.photo-slot span {
  background: rgba(255, 247, 244, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* Floating badges around hero */
.float-badge {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px -20px rgba(168, 78, 96, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.float-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6dbe8e;
  box-shadow: 0 0 0 4px rgba(109, 190, 142, 0.18);
}
.float-1 { top: 28px; left: -20px; }
.float-2 { bottom: 36px; right: -22px; }

/* Hero side stats */
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.hero-meta .num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--accent-deep);
  line-height: 1;
}
.hero-meta .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ------- Section primitives ------- */
.section {
  padding: 96px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.section-head h2 em { font-family: "Instrument Serif", serif; font-style: italic; color: var(--accent-deep); font-weight: 400; }
.section-head p { color: var(--ink-soft); max-width: 420px; margin: 0; line-height: 1.55; font-size: 15px; }
.eyebrow {
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ------- Feature row (homepage) ------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-deep);
}
.feature h3 { margin: 0 0 6px; font-size: 17px; font-weight: 500; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* ------- Products ------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, var(--cream), var(--blush));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-photo:not([style*="url("]) {
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(255, 255, 255, 0.32) 14px,
    rgba(255, 255, 255, 0.32) 15px
  );
}
.product-photo-label {
  background: rgba(255, 247, 244, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: "JetBrains Mono", "Menlo", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(58, 42, 46, 0.6);
}
.product-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.product-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--bg-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.product-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}
.product-card h3 em { font-family: "Instrument Serif", serif; font-style: italic; color: var(--accent-deep); font-weight: 400; }
.product-card p.desc { margin: 0; color: var(--ink-soft); line-height: 1.55; font-size: 15px; }
.product-meta-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-meta-row > div { flex: 1; }
.product-meta-row .lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.product-meta-row .val { font-size: 15px; font-weight: 500; }
.includes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.includes .check {
  flex: 0 0 18px;
  width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 11px;
}
.product-cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ------- Calendar (4-week strip) ------- */
.cal-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cal-controls .month {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
}
.cal-machine-toggle {
  display: flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.cal-machine-toggle button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.cal-machine-toggle button.on {
  background: white;
  color: var(--ink);
  box-shadow: 0 4px 12px -6px rgba(168, 78, 96, 0.3);
}
.cal-arrows { display: flex; gap: 8px; }
.cal-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: none;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 180ms;
}
.cal-arrow:hover { background: var(--blush); color: white; }

.cal-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 8px;
}
.cal-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-align: center;
  padding: 6px 0;
}
.cal-week-label {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  padding-left: 8px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  transition: transform 180ms ease;
}
.cal-cell:hover { transform: scale(1.04); }
.cal-cell .num { position: relative; z-index: 1; }
.cal-cell.free {
  background: #f0f9f3;
  color: #3a7a55;
}
.cal-cell.busy {
  background: #fbeeee;
  color: #b66069;
  text-decoration: line-through;
  opacity: 0.7;
}
.cal-cell.option {
  background: var(--cream);
  color: var(--accent-deep);
}
.cal-cell.past {
  background: transparent;
  color: rgba(58, 42, 46, 0.25);
}
.cal-cell.today {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cal-cell .pip {
  position: absolute;
  bottom: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
}
.cal-legend {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.cal-legend .swatch {
  width: 16px; height: 16px; border-radius: 6px;
  display: inline-block; margin-right: 8px;
  vertical-align: middle;
}

/* ------- How it works ------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.step .num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 80px;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 { margin: 0 0 8px; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: 15px; }
.step-tag {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ------- Contact ------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  transition: border 180ms, background 180ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-side h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.contact-side h3 em { font-family: "Instrument Serif", serif; font-style: italic; color: var(--accent-deep); font-weight: 400; }
.contact-side p { color: var(--ink-soft); line-height: 1.6; margin: 0 0 28px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
}
.contact-info-row .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-row .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

/* Submitted state */
.submitted {
  text-align: center;
  padding: 24px 0;
}
.submitted .ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
}
.submitted h4 {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 28px; margin: 0 0 8px; color: var(--ink);
}
.submitted p { color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* ------- Testimonials / quotes strip ------- */
.quote {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  margin-top: 48px;
}
.quote .q {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 18px;
  letter-spacing: -0.005em;
}
.quote .who {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ------- Footer ------- */
.footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { text-decoration: none; color: var(--ink); font-size: 14px; }
.footer a:hover { color: var(--accent-deep); }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink) !important;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.social-link:hover {
  background: var(--accent);
  color: white !important;
  transform: translateY(-1px);
  border-color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 40px;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex; justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* ------- Decorative illustrations ------- */
.deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.deco-cup {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: var(--blush);
}

/* Hide illustrations when toggle is off */
body.no-illu .deco { display: none !important; }
body.no-illu .floating-fruit { display: none !important; }

/* Floating fruit blobs */
.floating-fruit {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}

/* ------- Page padding ------- */
.page-pad-top { padding-top: 64px; }
.page-pad-bottom { padding-bottom: 96px; }

/* Sub-hero (page header for non-home pages) */
.subhero {
  padding: 80px 0 40px;
  position: relative;
}
.subhero h1 {
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 16px;
  max-width: 800px;
}
.subhero h1 em { font-family: "Instrument Serif", serif; font-style: italic; color: var(--accent-deep); font-weight: 400; }
.subhero p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

/* ------- Tweaks panel hosting ------- */
#tweaks-host { position: fixed; inset: 0; pointer-events: none; z-index: 60; }
#tweaks-host > * { pointer-events: auto; }

/* ------- Utility ------- */
.row { display: flex; gap: 12px; align-items: center; }
.spacer-1 { height: 12px; }
.spacer-2 { height: 24px; }
.spacer-3 { height: 48px; }

@media (max-width: 960px) {
  .hero-grid, .product-grid, .contact-grid, .features, .steps {
    grid-template-columns: 1fr;
  }
  .nav-inner { grid-template-columns: auto 1fr; padding: 14px 20px; }
  .nav-tabs { grid-column: 1 / -1; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-tabs::-webkit-scrollbar { display: none; }
  .nav-tab { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 13px; }
  .nav-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; gap: 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 6px; align-items: flex-start; }
  .container { padding: 0 20px; }

  .hero { padding: 48px 0 32px; text-align: center; }
  .hero-grid { gap: 36px; }
  .hero-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(40px, 9vw, 56px); line-height: 1; }
  .hero p.lead { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; padding-top: 22px; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-meta .num { font-size: 28px; }
  .hero-meta .lbl { font-size: 11px; }
  .float-1 { top: 14px; left: 6px; padding: 10px 14px; font-size: 12px; }
  .float-2 { bottom: 14px; right: 6px; padding: 10px 14px; font-size: 12px; }

  .section { padding: 56px 0; }

  .quote { padding: 32px 24px; margin-top: 32px; }
  .quote .q { font-size: clamp(20px, 5vw, 26px); }

  .subhero { padding: 40px 0 24px; text-align: center; }
  .subhero h1 { font-size: clamp(38px, 9vw, 52px); margin-left: auto; margin-right: auto; }
  .subhero p { font-size: 15px; margin-left: auto; margin-right: auto; }

  .section-head { flex-direction: column; align-items: center; gap: 16px; margin-bottom: 28px; text-align: center; }
  .section-head h2 { font-size: clamp(30px, 7vw, 40px); }
  .section-head p { margin-left: auto; margin-right: auto; }

  .product-card h3 { font-size: 26px; }
  .product-body { padding: 22px 22px 24px; gap: 14px; }
  .product-meta-row { gap: 14px; }
  .product-cta { flex-direction: column; align-items: stretch; }
  .product-cta .btn { justify-content: center; }

  .cal-wrap { padding: 18px; border-radius: var(--radius-md); }
  .cal-controls { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 18px; }
  .cal-controls .month { font-size: 22px; }
  .cal-machine-toggle { overflow-x: auto; flex-wrap: nowrap; }
  .cal-machine-toggle button { white-space: nowrap; padding: 8px 12px; font-size: 12px; }
  .cal-grid { grid-template-columns: 36px repeat(7, 1fr); gap: 4px; }
  .cal-week-label { font-size: 13px; padding-left: 0; justify-content: center; }
  .cal-head { font-size: 10px; padding: 4px 0; }
  .cal-cell { border-radius: 8px; font-size: 12px; }
  .cal-legend { gap: 12px; font-size: 12px; }
  .cal-legend > span:last-child { margin-left: 0 !important; }

  .step { padding: 28px 22px; }
  .step .num { font-size: 56px; }
  .step h3 { font-size: 19px; }

  .contact-panel { padding: 24px; border-radius: var(--radius-md); }
  .contact-side h3 { font-size: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .feature { padding: 22px; }

  .btn { padding: 12px 20px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
