/* ShukBites — Tel Aviv culinary market tours */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --charcoal: #141414;
  --paprika: #D6452D;
  --paprika-dark: #B53722;
  --saffron: #E8A317;
  --mint: #3AAFA9;
  --mint-dark: #2D8F8A;
  --cream: #FFF8F0;
  --cream-soft: #F5EBE0;
  --ink: #1a1a1a;
  --muted: #5c5650;
  --line: rgba(20, 20, 20, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  --radius: 4px;
  --nav-h: 76px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { 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.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Typography ——— */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.stop-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--paprika);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--paprika);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(214, 69, 45, 0.28);
}
.btn-primary:hover { background: var(--paprika-dark); }

.btn-secondary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-secondary:hover { background: #000; }

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-ghost {
  background: rgba(255, 248, 240, 0.14);
  border-color: rgba(255, 248, 240, 0.45);
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.logo span { color: var(--paprika); }
.logo-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--paprika), var(--saffron));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  color: var(--charcoal);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--paprika);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: none; }
@media (min-width: 1100px) {
  .nav-cta { display: inline-flex; padding: 0.7rem 1.15rem; font-size: 0.88rem; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.25s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 20, 20, 0.82) 0%, rgba(20, 20, 20, 0.55) 48%, rgba(20, 20, 20, 0.28) 100%),
    linear-gradient(to top, rgba(20, 20, 20, 0.55), transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.hero .eyebrow { color: var(--saffron); }
.hero h1 {
  max-width: 14ch;
  color: var(--cream);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero .lead {
  color: rgba(255, 248, 240, 0.86);
  margin-bottom: 1.75rem;
}

.hero-slash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: var(--cream);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* ——— Diagonal bands ——— */
.band {
  position: relative;
  padding: 5.5rem 0;
}
.band-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.band-dark .lead { color: rgba(255, 248, 240, 0.72); }
.band-mint { background: var(--mint); color: var(--white); }
.band-saffron { background: var(--saffron); color: var(--charcoal); }
.band-cream { background: var(--cream); }
.band-soft { background: var(--cream-soft); }

.diag-top {
  clip-path: polygon(0 4.5rem, 100% 0, 100% 100%, 0 100%);
  padding-top: 7.5rem;
  margin-top: -1px;
}
.diag-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5rem), 0 100%);
  padding-bottom: 7.5rem;
}
.diag-both {
  clip-path: polygon(0 4.5rem, 100% 0, 100% calc(100% - 4.5rem), 0 100%);
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  margin-top: -1px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.section-head .lead { margin: 0; }

/* ——— Cards / tilt / shine ——— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

.tilt-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  box-shadow: 0 4px 0 rgba(20, 20, 20, 0.04);
}
.tilt-card:hover { box-shadow: var(--shadow); }
.tilt-card .shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: 2;
}
.tilt-card:hover .shine { transform: translateX(120%); }

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tilt-card:hover .card-media img { transform: scale(1.06); }

.card-body { padding: 1.35rem 1.4rem 1.5rem; }
.card-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--mint-dark);
  margin-bottom: 0.85rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  background: rgba(58, 175, 169, 0.12);
  color: var(--mint-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ——— Stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  padding: 1.5rem 1.25rem;
  border-left: 3px solid var(--saffron);
  background: rgba(255, 248, 240, 0.06);
}
.band-cream .stat,
.band-soft .stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--paprika);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ——— Split ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}
.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: auto -8% -12% auto;
  width: 55%;
  height: 40%;
  background: var(--paprika);
  mix-blend-mode: multiply;
  opacity: 0.35;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

/* ——— Tasting stops + filter + sticky rail ——— */
.stops-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 980px) {
  .stops-layout { grid-template-columns: 1fr; }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.stops-list {
  display: grid;
  gap: 1.1rem;
}

.stop-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.3s;
  cursor: pointer;
}
.stop-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.stop-card.hidden { display: none; }
.stop-card.in-itinerary {
  border-color: var(--mint);
  box-shadow: 0 0 0 1px var(--mint);
}

.stop-index {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--paprika);
  line-height: 1;
  padding-top: 0.2rem;
}
.stop-card h3 { margin-bottom: 0.35rem; }
.stop-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.93rem;
}
.stop-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.add-btn {
  border: none;
  background: var(--mint);
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.25s;
}
.add-btn:hover { background: var(--mint-dark); }
.add-btn.added {
  background: var(--charcoal);
}

.itinerary-rail {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.itinerary-rail h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.itinerary-rail .hint {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.65);
  margin-bottom: 1rem;
}
#itinerary-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  min-height: 2rem;
}
#itinerary-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 248, 240, 0.08);
  border-radius: 3px;
  font-size: 0.88rem;
}
#itinerary-list button {
  border: none;
  background: transparent;
  color: var(--saffron);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}
.itinerary-empty {
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.55);
  font-style: italic;
}

/* ——— Tours page cards ——— */
.tour-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.tour-feature:nth-child(even) { direction: rtl; }
.tour-feature:nth-child(even) > * { direction: ltr; }
@media (max-width: 900px) {
  .tour-feature,
  .tour-feature:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.tour-feature .card-media { aspect-ratio: 4 / 3; min-height: 280px; }
.tour-feature .card-body { padding: 2rem 2.1rem; display: flex; flex-direction: column; justify-content: center; }

/* ——— Forms ——— */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(58, 175, 169, 0.18);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .contact-panel { grid-template-columns: 1fr; }
}
.contact-info {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
}
.contact-info a { color: var(--saffron); }
.contact-info dl { margin: 1.5rem 0 0; }
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.55);
  margin-top: 1.1rem;
}
.contact-info dd { margin: 0.25rem 0 0; font-weight: 600; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(58, 175, 169, 0.12);
  border-left: 3px solid var(--mint);
  margin-top: 1rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ——— Legal ——— */
.legal {
  max-width: 760px;
}
.legal h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}
.legal p, .legal li {
  color: var(--muted);
}
.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}
.legal li { margin-bottom: 0.4rem; }

.page-hero {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50vw;
  height: 80%;
  background: linear-gradient(135deg, rgba(214, 69, 45, 0.12), rgba(232, 163, 23, 0.18));
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 80%);
  pointer-events: none;
}

/* ——— Timeline / about ——— */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 0.75rem;
  padding-left: 1.75rem;
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.15rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paprika);
  box-shadow: 0 0 0 4px var(--cream);
}
.band-soft .timeline-item::before { box-shadow: 0 0 0 4px var(--cream-soft); }

/* ——— Footer ——— */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 248, 240, 0.78);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer .logo { color: var(--cream); margin-bottom: 0.85rem; }
.site-footer p { font-size: 0.92rem; max-width: 28ch; }
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.site-footer a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.5);
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-left: auto;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: none;
  border-top: 3px solid var(--saffron);
}
.cookie-banner.show { display: block; animation: cookieIn 0.45s var(--ease); }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.8);
}
.cookie-banner a { color: var(--saffron); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions .btn { padding: 0.65rem 1rem; font-size: 0.85rem; }

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Misc ——— */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  font-weight: 700;
  max-width: 28ch;
}
.accent-bar {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--paprika), var(--saffron));
  margin-bottom: 1.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--paprika), var(--mint));
}

.cta-band {
  text-align: center;
}
.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
