/* ============================================================
   Sweet St. — Design System v3  "Soft Boutique, Kinetic"
   Tuned to the logo: blush peach · taupe-brown · caramel gold
   Delicate motifs (scallops, dotted borders, heart) + gentle motion
   Display: Bricolage Grotesque  •  UI/body: Inter
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Logo-matched warm palette */
  --peach: #ecd4b9;        /* logo badge fill */
  --blush: #f6e7d5;
  --cream: #fbf4ea;        /* page background */
  --cream-deep: #f4e7d4;
  --paper: #fffcf6;        /* cards */

  --brand-brown: #93765a;  /* logo lettering */
  --coffee: #6f5842;
  --deep: #4f3d2b;         /* "dark" sections (soft, not black) */

  --gold: #cea878;         /* soft caramel accent */
  --gold-deep: #b28c54;
  --gold-soft: #eeddc0;
  --rose: #d7a49c;         /* gentle sweet accent */
  --rose-deep: #bf847b;

  --ink: #4b3927;          /* body text (soft dark brown) */
  --ink-soft: #8a7259;
  --on-dark: #fbf4ea;
  --on-dark-soft: rgba(251, 244, 234, 0.75);

  --outline: #e2cead;      /* soft borders */
  --outline-strong: #d3b78d;
  --line: rgba(75, 57, 39, 0.12);

  --bg: var(--cream);
  --surface: var(--paper);

  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1220px;
  --container-narrow: 840px;

  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;

  /* Gentle tactile shadows (soft brown, not black) */
  --pop: 5px 5px 0 rgba(147, 118, 90, 0.22);
  --pop-sm: 3px 3px 0 rgba(147, 118, 90, 0.2);
  --shadow-soft: 0 16px 40px rgba(120, 95, 66, 0.15);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.4, 0.64, 1);

  --header-h: 78px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--deep);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-brown);
}

.eyebrow::before {
  content: "✦";
  color: var(--rose);
  font-size: 0.85em;
}

.eyebrow.center {
  justify-content: center;
}

.section-title {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.text-gold {
  color: var(--gold-deep);
}
.text-rose {
  color: var(--rose-deep);
}

.mark {
  background: linear-gradient(180deg, transparent 58%, var(--gold-soft) 58%);
  padding: 0 0.06em;
}
.wiggle {
  display: inline-block;
  color: var(--rose-deep);
  font-style: italic;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
}

.section.tight {
  padding-block: clamp(38px, 5vw, 68px);
}

.section-dark {
  background: var(--deep);
  color: var(--on-dark);
  position: relative;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--on-dark);
}

.section-dark .lead {
  color: var(--on-dark-soft);
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-cream {
  background: var(--cream-deep);
}

.section-peach {
  background: var(--peach);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold-deep);
  background: var(--gold);
  color: var(--deep);
  cursor: pointer;
  box-shadow: var(--pop-sm);
  transition: transform 0.2s var(--ease-back), box-shadow 0.2s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--pop);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(147, 118, 90, 0.25);
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
}

.btn-rose {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--outline-strong);
  color: var(--ink);
}

.section-dark .btn-ghost {
  border-color: var(--on-dark-soft);
  color: var(--on-dark);
}

.btn-light {
  background: var(--paper);
  color: var(--deep);
  border-color: var(--outline);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.06rem;
}

.btn-arrow::after {
  content: "→";
  font-weight: 700;
  transition: transform 0.3s var(--ease-back);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Sticker pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--outline-strong);
  box-shadow: var(--pop-sm);
}

.pill.gold {
  background: var(--gold-soft);
  border-color: var(--gold-deep);
}
.pill.rose {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose-deep);
}
.pill.tilt-l {
  transform: rotate(-3deg);
}
.pill.tilt-r {
  transform: rotate(3deg);
}

/* ---------- Ticker banners ---------- */
.ticker {
  overflow: hidden;
  background: var(--deep);
  color: var(--gold);
  padding-block: 15px;
  border-block: 1.5px solid var(--coffee);
}

.ticker.gold {
  background: var(--peach);
  color: var(--brand-brown);
  border-color: var(--outline-strong);
}

.ticker.tilt {
  transform: rotate(-2deg) scale(1.04);
  margin-block: 26px;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker.rev .ticker-track {
  animation-direction: reverse;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-transform: uppercase;
}

.ticker-track span::after {
  content: "✦";
  color: var(--rose);
  font-size: 0.62em;
}

.ticker.gold .ticker-track span::after {
  color: var(--rose-deep);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Spinning badge ---------- */
.spin-badge {
  position: relative;
  width: 128px;
  height: 128px;
  flex: 0 0 auto;
}

.spin-badge svg {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.spin-badge text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  fill: var(--brand-brown);
  text-transform: uppercase;
}

.spin-badge .badge-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--rose-deep);
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Decorative motifs (from the logo) ---------- */
/* Scalloped top edge — reveals the cream behind, like the doily badge */
.scallop-top {
  -webkit-mask: radial-gradient(19px at 50% 0, transparent 96%, #000) repeat-x 50% 0 / 40px 100%;
  mask: radial-gradient(19px at 50% 0, transparent 96%, #000) repeat-x 50% 0 / 40px 100%;
  padding-top: 26px;
}

/* Heart divider */
.heart-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--rose);
  margin: 6px auto 0;
  max-width: 260px;
}

.heart-rule::before,
.heart-rule::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
}

/* Dotted frame — echoes the logo's dotted ring */
.dotted-frame {
  border: 2px dotted var(--outline-strong);
  border-radius: var(--radius);
  padding: 10px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(24px, 5vw, 56px));
  padding-bottom: clamp(28px, 5vw, 60px);
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero h1 .wiggle {
  font-weight: 700;
  font-style: normal;
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin-inline: auto;
}

.hero .btn-row {
  margin-top: 28px;
  justify-content: center;
}

.hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Hero collage */
.hero-collage {
  position: relative;
  min-height: 470px;
}

.hero-collage .blob {
  position: absolute;
  inset: 6% 3%;
  background: radial-gradient(circle at 50% 40%, var(--blush), var(--peach) 72%);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  z-index: 0;
}

.hero-media {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media.main {
  inset: 7% 15% 13% 8%;
}

.hero-media.mini {
  width: 42%;
  aspect-ratio: 3/4;
  right: 2%;
  bottom: 5%;
  z-index: 2;
  transform: rotate(4deg);
}

.hero-collage .spin-badge {
  position: absolute;
  top: -4%;
  left: -3%;
  z-index: 3;
}

.hero-collage .float-pill {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 1%;
  transform: rotate(6deg);
}

/* ---------- Marquee testimonials ---------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker 46s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.quote-card {
  flex: 0 0 min(400px, 82vw);
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--pop);
  color: var(--ink);
}

.quote-card:nth-child(even) {
  background: var(--blush);
}

.quote-card .stars {
  color: var(--rose);
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.quote-card p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.38;
  color: var(--coffee);
  letter-spacing: -0.01em;
}

.quote-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--rose-deep);
  font-size: 0.92rem;
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--pop-sm);
  padding: 24px 20px;
  text-align: center;
}

.stat:nth-child(2n) {
  background: var(--blush);
}
.stat:nth-child(3) {
  transform: rotate(-1.5deg);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--rose-deep);
}

.stat-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 540px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split-media:hover img,
.split-media:hover video {
  transform: scale(1.04);
}

.split-media .tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.feature-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-weight: 500;
}

.section-dark .feature-list li {
  color: var(--on-dark-soft);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  display: block;
  background: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--pop);
  transition: transform 0.22s var(--ease-back), box-shadow 0.22s var(--ease);
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(147, 118, 90, 0.22);
}

a.card:hover {
  border-color: var(--gold-deep);
}

.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  border-radius: 18px;
  background: var(--gold-soft);
  border: 1.5px solid var(--outline-strong);
  margin-bottom: 18px;
}

.card:nth-child(2n) .card-icon {
  background: var(--blush);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.92rem;
}

/* Centered gateway cards (homepage "pick your cart") */
.grid-services .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-services .card-icon {
  margin-inline: auto;
}

.grid-services .card-link {
  margin-top: auto;
  padding-top: 14px;
}

/* ---------- Image service tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--pop);
  color: #fff;
  transition: transform 0.22s var(--ease-back), box-shadow 0.22s var(--ease);
}

.tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: 0;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42, 27, 16, 0) 32%, rgba(42, 27, 16, 0.86) 100%);
}

.tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(147, 118, 90, 0.28);
}

.tile:hover .tile-bg {
  transform: scale(1.06);
}

.tile-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.tile-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tile-tag {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
}

.tile .card-link {
  color: var(--gold-soft);
  margin-top: 12px;
}

.tile:hover .card-link::after {
  transform: translateX(4px);
}

/* ---------- CTA with media background ---------- */
.cta-band.cta-media {
  color: #fff;
  border-color: var(--paper);
  min-height: 440px;
  display: grid;
  align-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Light vignette so the photo/video reads clearly while text stays legible */
.cta-band.cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(33, 22, 13, 0.5) 0%,
      rgba(33, 22, 13, 0.28) 45%,
      rgba(33, 22, 13, 0.62) 100%
    ),
    radial-gradient(ellipse at center, rgba(33, 22, 13, 0) 40%, rgba(33, 22, 13, 0.35) 100%);
}

.cta-band.cta-media > *:not(.cta-bg) {
  position: relative;
  z-index: 2;
}

.cta-band.cta-media h2,
.cta-band.cta-media .section-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.cta-band.cta-media .lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.cta-band.cta-media .eyebrow {
  color: var(--gold-soft);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.cta-band.cta-media .eyebrow::before {
  color: var(--gold-soft);
}

.card-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-back);
}

a.card:hover .card-link::after {
  transform: translateX(4px);
}

.card-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.card-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- Menu (toppings & sauces) ---------- */
.menu-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.menu-panel {
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--pop);
}

.menu-panel::before {
  content: "";
  display: block;
  height: 8px;
  margin: -10px -10px 20px;
  border: 2px dotted var(--outline-strong);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.menu-panel:first-child {
  transform: rotate(-1deg);
}
.menu-panel:last-child {
  transform: rotate(1deg);
}

.menu-panel h3 {
  text-align: center;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--brand-brown);
}

.menu-panel .menu-rule {
  width: 64px;
  height: 3px;
  background: var(--rose);
  border-radius: 3px;
  margin: 12px auto 22px;
}

.menu-items {
  list-style: none;
  display: grid;
  gap: 2px;
  text-align: center;
}

.menu-items li {
  padding: 10px 8px;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px dotted var(--line);
}

.menu-items li:last-child {
  border-bottom: none;
}

.menu-note {
  margin-top: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.section-dark .menu-note {
  color: var(--on-dark-soft);
}

/* ---------- Media rail ---------- */
.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.rail::-webkit-scrollbar {
  height: 8px;
}
.rail::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

.rail-item {
  flex: 0 0 auto;
  width: 226px;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  background: var(--deep);
}

.rail-item:nth-child(odd) {
  transform: rotate(-1.5deg);
}
.rail-item:nth-child(even) {
  transform: rotate(1.5deg);
}

.rail-item video,
.rail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid var(--paper);
  box-shadow: var(--pop-sm);
  transition: transform 0.2s var(--ease-back), box-shadow 0.2s var(--ease);
}

.gallery-item:nth-child(3n) {
  transform: rotate(-1.5deg);
}
.gallery-item:nth-child(3n + 1) {
  transform: rotate(1deg);
}

.gallery-item:hover {
  transform: translate(-2px, -2px) rotate(0);
  box-shadow: var(--pop);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(47, 36, 25, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  border: 3px solid var(--paper);
}

.lightbox-btn {
  position: absolute;
  color: var(--deep);
  background: var(--gold);
  border: 2px solid var(--paper);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease-back);
}

.lightbox-btn:hover {
  transform: scale(1.1);
}

.lb-close {
  top: 22px;
  right: 22px;
}
.lb-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(46px, 8vw, 92px));
  padding-bottom: clamp(38px, 7vw, 76px);
  background: var(--deep);
  color: var(--on-dark);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--gold) 0%, var(--gold-deep) 72%);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  opacity: 0.3;
}

.page-hero.has-media > .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 36, 25, 0.68), rgba(47, 36, 25, 0.86));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  color: #fff;
  max-width: 16ch;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero .lead {
  color: var(--on-dark-soft);
  margin-top: 16px;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  margin-bottom: 18px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ---------- Numbered steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--pop-sm);
}

.step:nth-child(even) {
  transform: rotate(-1deg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  background: var(--rose);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.28rem;
  margin-bottom: 6px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.service {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.service + .service {
  margin-top: clamp(50px, 8vw, 88px);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1.5px solid var(--outline-strong);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 46px);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--outline-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s var(--ease), background 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold-deep);
  box-shadow: var(--pop-sm);
}

.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--outline-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  background: var(--cream);
  transition: transform 0.15s var(--ease-back), box-shadow 0.15s var(--ease);
}

.check:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--pop-sm);
}

.check input {
  width: 20px;
  height: 20px;
  accent-color: var(--rose-deep);
  cursor: pointer;
}

.check:has(input:checked) {
  background: var(--gold-soft);
  border-color: var(--gold-deep);
}

.form-note {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1.5px solid var(--outline);
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: #e3f0e0;
  color: #47693f;
  border-color: #c2ddba;
}

.form-status.err {
  background: #f6e2dd;
  color: var(--rose-deep);
  border-color: #e6c4bc;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 7vw, 76px);
  text-align: center;
  background: var(--peach);
  color: var(--deep);
  border: 1.5px solid var(--outline-strong);
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  color: var(--deep);
}

.cta-band .lead {
  color: var(--coffee);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep);
  color: var(--on-dark);
  padding-block: clamp(48px, 7vw, 76px) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1.5px dotted rgba(206, 168, 120, 0.4);
}

.footer-brand img {
  height: 56px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--on-dark-soft);
  max-width: 340px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col p {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  transition: transform 0.2s var(--ease-back), background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-3px) rotate(-6deg);
  background: var(--gold-soft);
}

.socials svg {
  width: 22px;
  height: 22px;
  display: block;
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-area {
  text-align: center;
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  padding-block: 24px 6px;
}

.footer-area strong {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  color: var(--on-dark-soft);
  font-size: 0.86rem;
  padding-top: 18px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid var(--paper);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease-back);
}

.wa-float:hover {
  transform: translate(-2px, -2px) rotate(-8deg);
}

.wa-float img {
  width: 32px;
  height: 32px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-back);
  transition-delay: var(--delay, 0s);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* NOTE: do not add backdrop-filter/filter/transform here — the mobile nav
   panel is a position:fixed descendant of the header, and any of those
   properties would make it the containing block, breaking the full-height
   slide-in menu once the page is scrolled. */
.site-header.scrolled {
  background: rgba(251, 244, 234, 0.97);
  box-shadow: 0 1px 0 var(--outline-strong);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--brand-brown);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2.5px;
  background: var(--rose);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1.5px solid var(--outline-strong);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--brand-brown);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Quote document ---------- */
.quote-wrap {
  min-height: 100svh;
  background: var(--deep);
  padding: clamp(24px, 6vw, 72px) 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quote-doc {
  width: 100%;
  max-width: 720px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.quote-doc-head {
  background: var(--peach);
  color: var(--deep);
  padding: clamp(30px, 5vw, 44px);
  text-align: center;
  border-bottom: 1.5px dotted var(--outline-strong);
}

.quote-doc-head img {
  height: 60px;
  margin: 0 auto 14px;
}

.quote-doc-head .eyebrow {
  color: var(--rose-deep);
  justify-content: center;
}

.quote-doc-head h1 {
  color: var(--deep);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: 6px;
}

.quote-doc-body {
  padding: clamp(28px, 5vw, 44px);
}

.quote-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1.5px dotted var(--line);
}

.quote-meta .label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 800;
  margin-bottom: 4px;
}

.quote-meta .val {
  font-weight: 700;
  color: var(--ink);
}

.quote-block {
  padding-block: 24px;
  border-bottom: 1.5px dotted var(--line);
}

.quote-block h2 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-deep);
  color: var(--deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.quote-message {
  color: var(--ink-soft);
  white-space: pre-wrap;
  line-height: 1.7;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: 28px;
  flex-wrap: wrap;
}

.price-row .price-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1;
  color: var(--rose-deep);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.quote-valid {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
}

.quote-state {
  text-align: center;
  color: var(--on-dark);
  padding: 60px 20px;
  max-width: 480px;
}

.quote-state h1 {
  color: #fff;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(251, 244, 234, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

/* ---------- Admin builder ---------- */
.admin-shell {
  min-height: 100svh;
  background: var(--deep);
  padding: clamp(24px, 5vw, 60px) 20px;
}

.admin-card {
  max-width: 720px;
  margin-inline: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  padding: clamp(26px, 5vw, 44px);
  box-shadow: var(--shadow-soft);
}

.admin-card .brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-card .brand-lockup img {
  height: 42px;
}

.gate {
  max-width: 420px;
  margin-inline: auto;
}

.result-box {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-deep);
}

.result-box.show {
  display: block;
}

.result-url {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.result-url input {
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  border: 1.5px solid var(--outline-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

/* ---------- Admin tabs & bookings ---------- */
.admin-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--outline);
}

.admin-tab {
  appearance: none;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.admin-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--rose);
}

.bookings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--rose-deep);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px;
}

.link-btn:hover {
  text-decoration: underline;
}

.muted {
  color: var(--ink-soft);
}

.bookings-list {
  display: grid;
  gap: 16px;
}

.booking-card {
  border: 1.5px solid var(--outline);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--pop-sm);
}

.booking-card.is-quoted {
  opacity: 0.7;
}

.booking-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.1;
}

.booking-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1.5px solid var(--outline-strong);
  background: var(--cream);
  color: var(--ink-soft);
  white-space: nowrap;
}

.booking-badge.new {
  background: #e3f0e0;
  color: #47693f;
  border-color: #c2ddba;
}

.booking-badge.quoted {
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-meta b {
  color: var(--ink);
  font-weight: 700;
}

.booking-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.booking-services span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1.5px solid var(--outline-strong);
}

.booking-message {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  color: var(--ink);
  white-space: pre-wrap;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
}

.booking-actions .btn {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.prefill-note {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
}

/* ---------- Utilities ---------- */
.hidden {
  display: none !important;
}
.text-center {
  text-align: center;
}
.mt-s {
  margin-top: 16px;
}
.mt-m {
  margin-top: 28px;
}
.mt-l {
  margin-top: 44px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-collage {
    min-height: 380px;
    order: -1;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 30px 40px;
    background: var(--blush);
    border-left: 1.5px solid var(--outline-strong);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-open .nav {
    transform: translateX(0);
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1.5px dotted var(--line);
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.15rem;
  }
  .nav-cta {
    margin-top: 22px;
    width: 100%;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(47, 36, 25, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  .nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .split-media img,
  .split-media video {
    max-height: 420px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Contact page: show the form above "Talk to us directly" on mobile */
  .contact-form-col {
    order: -1;
    margin-bottom: 8px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin-inline: auto;
  }
  .socials {
    justify-content: center;
  }
  .rail-item {
    width: 196px;
  }
  .btn {
    width: 100%;
  }
  .ticker.tilt {
    transform: rotate(-2deg) scale(1.08);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .ticker.tilt {
    transform: rotate(-2deg);
  }
}
