:root {
  --cream: #fdf8ef;
  --cream-2: #f7efdf;
  --ink: #241407;
  --ink-soft: #6b5949;
  --line: #ecdfc8;
  --amber: #d97a29;
  --amber-dark: #b05f17;
  --yolk: #f6b52b;
  --green: #3c6e4f;
  --green-soft: #e7f2ea;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(36, 20, 7, 0.07);
  --shadow-lg: 0 24px 60px rgba(36, 20, 7, 0.14);
  --r-lg: 26px;
  --r-md: 16px;
  --font-head: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.025em;
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--yolk);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  padding: 9px 0;
  animation: ticker 22s linear infinite;
}

.ticker-track span { white-space: nowrap; }
.ticker-track i { font-size: 6px; font-style: normal; opacity: 0.6; }

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

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; }

.brand-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-top: 3px;
}

.topnav { display: flex; gap: 22px; margin-left: auto; }

.topnav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}

.topnav a:hover { color: var(--amber-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(217, 122, 41, 0.35);
}

.btn-solid:hover { background: var(--amber-dark); }

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

.btn-ghost:hover { border-color: var(--amber); color: var(--amber-dark); }

.btn-line {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover { background: var(--ink); color: var(--cream); }

.btn-block { width: 100%; }
.btn-small { min-height: 42px; padding: 9px 20px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(700px 420px at 88% 0%, rgba(246, 181, 43, 0.22), transparent 65%),
    radial-gradient(520px 380px at 0% 100%, rgba(60, 110, 79, 0.1), transparent 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 15px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: 0.02em;
  width: 96%;
  height: 0.14em;
  background: var(--yolk);
  border-radius: 999px;
  opacity: 0.55;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 26px;
}

.hero-sub strong { color: var(--ink); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin: 0;
}

.hero-stats div { display: flex; flex-direction: column; }

.hero-stats dt {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
}

.hero-stats dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 13.5px; }

.hero-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: visible;
}

.hero-photo img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.6deg);
}

.photo-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.badge-price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--amber-dark);
}

.badge-note {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--cream); padding: 26px 0; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-row p { margin: 0; display: flex; flex-direction: column; gap: 3px; }
.trust-row strong { font-size: 15.5px; }
.trust-row span { font-size: 13px; opacity: 0.65; }

/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 42px; }
.section-head.left { text-align: left; margin-inline: 0; }

.section-head h2 {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-head p { margin: 0; color: var(--ink-soft); font-size: 17px; }

/* ---------- Prices ---------- */
.prices { padding: 76px 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: var(--yolk);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }

.price-big {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.price-per { margin: 6px 0 18px; font-size: 14px; color: var(--ink-soft); }
.featured .price-per { color: rgba(253, 248, 239, 0.65); }

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14.5px;
}

.price-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--green);
}

.featured li::before { color: var(--yolk); }

.featured .btn-solid { box-shadow: none; }

.stock-note {
  margin: 26px auto 0;
  text-align: center;
  font-weight: 700;
  color: var(--amber-dark);
}

/* ---------- Pickup ---------- */
.pickup { padding: 76px 0; background: var(--cream-2); }

.pickup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.day-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.day-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.day-name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
}

.day-time { margin: 0; font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.day-note { margin: 8px 0 0; font-size: 13.5px; color: var(--ink-soft); }

.steps {
  margin: 0;
  padding: 30px;
  list-style: none;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  counter-reset: step;
  display: grid;
  gap: 20px;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
}

.steps li span {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--yolk);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
}

/* ---------- Order ---------- */
.order { padding: 76px 0; }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.order-copy h2 {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.order-copy > p { color: var(--ink-soft); font-size: 17px; margin: 0 0 26px; }

.order-photo {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}

.order-form {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}

.field { display: grid; gap: 7px; }

.field label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(253, 248, 239, 0.7);
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--yolk);
}

.form-note {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(253, 248, 239, 0.55);
}

/* ---------- Done ---------- */
.done { padding: 44px 0; background: var(--green-soft); }

.done-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.done-side { text-align: center; }

.done-art {
  display: block;
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto 12px;
}

.done-side h2 { font-size: 27px; font-weight: 800; margin-bottom: 6px; }
.done-side p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }

.done-hint {
  margin-top: 10px !important;
  font-size: 12.5px !important;
  opacity: 0.8;
}

.receipt {
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.receipt > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 16px;
}

.receipt > div + div { border-top: 1px solid var(--line); }

.receipt dt {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.receipt dd {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  text-align: right;
}

.receipt-total { background: var(--cream); }

.receipt-total dd {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--amber-dark);
}

.done-actions { display: grid; gap: 10px; }

.btn-wa {
  background: #23b33a;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(35, 179, 58, 0.3);
}

.btn-wa:hover { background: #1c9530; }

.done-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------- FAQ ---------- */
.faq { padding: 76px 0 84px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15.5px;
  list-style: none;
  position: relative;
  padding-right: 26px;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--amber);
}

.faq details[open] summary::after { content: "\2212"; }

.faq details p { margin: 12px 0 0; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--cream); padding: 34px 0; }
.foot-inner { text-align: center; }
.foot-inner p { margin: 0; }
.foot-small { margin-top: 8px !important; font-size: 12.5px; opacity: 0.55; }

/* ---------- Premium polish: motion & micro-interactions ---------- */

::selection { background: var(--yolk); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

section { scroll-margin-top: 84px; }

/* Skip rendering below-the-fold sections until needed */
.pickup,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

/* Header elevates once you scroll */
.topbar { transition: box-shadow 0.18s ease, background 0.18s ease; }

.topbar.scrolled {
  background: rgba(253, 248, 239, 0.97);
  box-shadow: 0 10px 30px rgba(36, 20, 7, 0.09);
}

/* Brand mark wobbles hello on hover */
.brand-mark { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }

/* Ticker pauses when inspected */
.ticker:hover .ticker-track { animation-play-state: paused; }

/* Scroll reveal: transform + opacity only, GPU composited */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* Hero enters immediately with a soft rise */
.hero-copy > * {
  animation: rise 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.28s; }

.hero-photo { animation: rise 0.55s 0.18s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Card hover lift: shadow fades via pseudo layer, no repaint jank */
.price-card,
.day-card {
  position: relative;
  z-index: 0;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 0.25s ease;
}

.price-card::after,
.day-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.price-card:hover::after,
.day-card:hover::after { opacity: 1; }

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--yolk);
}

.price-card.featured:hover { transform: translateY(-12px); }

.day-card:hover { transform: translateY(-3px); }

/* Buttons press down */
.btn:active { transform: scale(0.985); }

/* Live price chip inside submit button */
.submit-price {
  margin-left: 10px;
  padding: 3px 11px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

#submit-btn.bump .submit-price { animation: bump 0.35s ease; }

@keyframes bump {
  40% { transform: scale(1.22); }
}

/* Invalid field shake */
.field.error input { border-color: #d64545; }

.field-error {
  margin: 2px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #ff9d9d;
}

.field.shake { animation: shake 0.4s ease; }

@keyframes shake {
  20% { transform: translateX(-6px); }
  45% { transform: translateX(5px); }
  70% { transform: translateX(-3px); }
  90% { transform: translateX(2px); }
}

/* Stock note live dot */
.stock-note::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
  vertical-align: 1px;
}

@keyframes blink {
  50% { opacity: 0.35; }
}

/* FAQ smooth open */
.faq summary::after { transition: transform 0.25s ease; }
.faq details[open] summary::after { content: "+"; transform: translateY(-50%) rotate(45deg); }

.faq details p {
  overflow: hidden;
}

.faq details[open] p { animation: faqOpen 0.3s ease; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Confirmation: card pop + check draw */
.done-card { animation: pop 0.45s cubic-bezier(0.22, 0.9, 0.3, 1) both; }

@keyframes pop {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.done-art { animation: rise 0.5s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

.receipt > div { animation: rise 0.35s both; }
.receipt > div:nth-child(1) { animation-delay: 0.15s; }
.receipt > div:nth-child(2) { animation-delay: 0.21s; }
.receipt > div:nth-child(3) { animation-delay: 0.27s; }
.receipt > div:nth-child(4) { animation-delay: 0.33s; }
.receipt > div:nth-child(5) { animation-delay: 0.39s; }

/* Sticky mobile booking bar */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(36, 20, 7, 0.35);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1);
}

.mobile-cta.show { transform: none; }

.mobile-cta-text { display: flex; flex-direction: column; line-height: 1.25; }
.mobile-cta-text strong { font-size: 15.5px; }
.mobile-cta-text span { font-size: 12px; opacity: 0.65; }

@media (max-width: 720px) {
  .mobile-cta { display: flex; }
}

/* ---------- Hover language ---------- */

/* Buttons: light sweep on hover */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::before { transform: translateX(110%); }

.btn-ghost::before,
.btn-line::before {
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(217, 122, 41, 0.14) 50%,
    transparent 70%
  );
}

/* Nav links: underline slides in */
.topnav a {
  position: relative;
  padding-bottom: 3px;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.3, 1);
}

.topnav a:hover::after { transform: scaleX(1); }

/* Price cards: warm glow follows the cursor */
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 0%),
    rgba(246, 181, 43, 0.16),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.price-card:hover::before { opacity: 1; }

.price-card.featured::before {
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 0%),
    rgba(246, 181, 43, 0.2),
    transparent 65%
  );
}

/* Price inside card nudges up */
.price-big { transition: transform 0.25s ease; }
.price-card:hover .price-big { transform: translateY(-2px) scale(1.03); }

/* Photos straighten when touched: transform only */
.hero-photo img,
.order-photo {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.hero-photo:hover img,
.order-photo:hover {
  transform: rotate(0deg) scale(1.01);
}

/* Day cards: time glows amber */
.day-time { transition: color 0.25s ease; }
.day-card:hover .day-time { color: var(--amber-dark); }

/* Steps: numbers pop as you pass */
.steps li span { transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.22s ease, color 0.22s ease; }
.steps li:hover span { transform: scale(1.1); background: var(--amber); color: var(--white); }

/* FAQ: cards tint on hover, transform only */
.faq details {
  position: relative;
  z-index: 0;
  transition: border-color 0.22s ease, transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq details:hover {
  border-color: var(--yolk);
  transform: translateY(-2px);
}

/* Trust strip items brighten */
.trust-row p { transition: opacity 0.25s ease, transform 0.25s ease; opacity: 0.92; }
.trust-row p:hover { opacity: 1; transform: translateY(-2px); }

/* Receipt rows highlight softly */
.receipt > div { transition: background 0.2s ease; }
.receipt > div:hover { background: var(--cream); }

/* Form fields: clean border highlight, no movement */
.field input,
.field select {
  transition: border-color 0.18s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .done-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .done-art { max-width: 210px; }
}

@media (max-width: 940px) {
  .hero-grid,
  .order-grid,
  .pickup-grid { grid-template-columns: 1fr; gap: 36px; }

  .hero-photo { max-width: 520px; }
  .photo-badge { left: 10px; bottom: -14px; }

  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; }

  .trust-row { grid-template-columns: 1fr 1fr; }

  .faq-grid { grid-template-columns: 1fr; }

  .topnav { display: none; }
}

@media (max-width: 540px) {
  .wrap { width: calc(100% - 28px); }
  .hero { padding: 38px 0 52px; }
  .hero-stats { gap: 22px; }
  .day-cards { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .done-actions .btn { width: 100%; }
}
