/* =============================================================================
   Lilium Travel — base design system
   Design language carried over from the legacy Hotel Lilium site (stone /
   green / amber palette, Vazirmatn, soft radii, minimal premium feel), with
   hotel-specific components removed and travel/booking components added
   (stepper, availability badges, price cards, passenger forms).
   ============================================================================= */

:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;

  --amber-50: #fffbeb;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  --amber-700: #b45309;

  --red-50: #fef2f2;
  --red-600: #dc2626;
  --red-700: #b91c1c;

  --white: #ffffff;
  --whatsapp: #25d366;

  --font-body: "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
  --font-display: "Vazirmatn", Tahoma, "Segoe UI", sans-serif;

  --header-height: 68px;
  --container: 76rem;
  --container-narrow: 46rem;
  --container-copy: 38rem;
  --radius-sm: 0.75rem;
  --radius: 1.1rem;
  --radius-lg: 1.75rem;
  --radius-full: 9999px;

  --z-header: 40;
  --z-drawer: 50;
  --z-toast: 70;

  /* v5: a single motion-timing scale — reused everywhere instead of ad hoc
     per-element durations, per the brief's "restrained motion" + "reuse CSS
     variables" instructions. */
  --transition: 180ms ease;
  --transition-slow: 420ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06);
  --shadow: 0 4px 16px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 12px 36px rgba(28, 25, 23, 0.14);
  --shadow-xl: 0 24px 64px rgba(12, 10, 9, 0.22);

  /* v5: section vertical rhythm scale, reused by every section instead of
     one-off padding values per page. */
  --space-section: clamp(3.5rem, 7vw, 6.5rem);
  --space-section-sm: clamp(2.25rem, 4vw, 3.5rem);
}

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

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--stone-50);
  color: var(--stone-900);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: var(--container-narrow); }
.container--copy { max-width: var(--container-copy); margin-inline: auto; }

.section { padding-block: var(--space-section); scroll-margin-top: var(--header-height); }
.section--sm { padding-block: var(--space-section-sm); }
.section__head { margin-bottom: 2.5rem; text-align: center; }
.section__head.section__head--start { text-align: start; }
.section__head .text-desc { color: var(--stone-500); margin-top: 0.5rem; }

/* v5: a small uppercase "eyebrow" label — the editorial signal used across
   the hero, the featured tour, and section heads instead of relying on
   badges alone for every label. */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: var(--green-800); text-transform: uppercase; }
.eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--light { color: var(--stone-200); }

.text-h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
.text-h2 { font-size: clamp(24px, 4.2vw, 36px); font-weight: 800; line-height: 1.25; letter-spacing: -0.005em; }
.text-h3 { font-size: clamp(18px, 3vw, 22px); font-weight: 700; }
.text-desc { color: var(--stone-500); font-size: 1rem; line-height: 1.8; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-lead { font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.85; color: var(--stone-600); }

.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon--sm { width: 0.875rem; height: 0.875rem; }
.icon--md { width: 1.25rem; height: 1.25rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.35rem; border-radius: var(--radius-full);
  font-size: clamp(13px, 1.6vw, 15px); font-weight: 600;
  transition: background-color var(--transition), color var(--transition), opacity var(--transition);
}
.btn--primary { background-color: var(--green-800); color: var(--white); }
.btn--primary:hover { background-color: var(--green-900); }
.btn--outline { border: 1px solid var(--green-800); color: var(--green-800); }
.btn--outline:hover { background-color: var(--green-800); color: var(--white); }
.btn--danger { background-color: var(--red-600); color: var(--white); }
.btn--danger:hover { background-color: var(--red-700); }
.btn--muted { background-color: var(--stone-200); color: var(--stone-500); cursor: not-allowed; }
.btn--block { width: 100%; padding-block: 0.9rem; }
.btn--sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn--lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn--ghost-light { border: 1px solid rgba(255,255,255,0.55); color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--stone-950); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--stone-200); transition: box-shadow var(--transition), transform var(--transition); }
.card--padded { padding: 1.25rem; }
.card--elevated { box-shadow: var(--shadow); }

.badge {
  display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700;
}
.badge--green { background: var(--green-100); color: var(--green-800); }
.badge--amber { background: var(--amber-50); color: var(--amber-700); }
.badge--red { background: var(--red-50); color: var(--red-700); }
.badge--stone { background: var(--stone-100); color: var(--stone-600); }

.header {
  position: fixed; top: 0; inset-inline: 0; z-index: var(--z-header);
  height: var(--header-height); background-color: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }
.header__logo { height: 1.9rem; }
/* v4: the header previously used logo-full.svg, a leftover legacy wordmark
   that literally reads "LILIUM HOTEL — Experience Nature" baked into the
   image — visually contradicting Lilium Travel's own brand on every page.
   The flower mark itself (logo-mark-white.svg) is brand-neutral and kept;
   it's now paired with a real "Lilium Travel" text label instead, matching
   the lockup the footer already used correctly. */
.header__brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header__brand-name { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.header__nav { display: none; gap: 2rem; margin-inline-end: auto; }
.header__nav a { position: relative; color: var(--stone-300); font-size: 0.9rem; font-weight: 600; transition: color var(--transition); padding-block: 0.3rem; }
.header__nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px; background: var(--amber-400); border-radius: var(--radius-full); transform: scaleX(0); transition: transform var(--transition); }
.header__nav a:hover { color: var(--white); }
.header__nav a.active { color: var(--white); }
.header__nav a.active::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }
.header__icon-btn { display: flex; padding: 0.4rem; color: var(--white); border-radius: var(--radius-full); transition: background-color var(--transition); }
.header__icon-btn:hover { background: rgba(255,255,255,0.08); }
@media (min-width: 860px) {
  .header__nav { display: flex; }
  /* Desktop already shows the full nav, so the hamburger is redundant
     (and duplicates navigation) once .header__nav takes over at the
     same breakpoint. */
  .menu-toggle { display: none; }
}

main { padding-top: var(--header-height); min-height: 60vh; }

/* v5: the mobile menu — previously an un-styled block that just appeared
   inline under the header — is now a deliberate full-height slide-in
   panel, matching the brief's "must feel intentional, not like a default
   utility drawer" instruction. */
.mobile-drawer {
  position: fixed; top: var(--header-height); inset-inline: 0; bottom: 0; z-index: var(--z-drawer);
  background: var(--stone-950); transform: translateY(-8px); opacity: 0;
  pointer-events: none; transition: transform var(--transition-slow), opacity var(--transition-slow);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer__link {
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
  padding: 1.1rem 0.25rem; font-size: 1.15rem; font-weight: 700; font-family: var(--font-display);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer__link svg { opacity: 0.5; transform: scaleX(-1); }
.mobile-drawer__foot { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-drawer__overlay { position: fixed; inset: 0; z-index: calc(var(--z-drawer) - 1); background: rgba(0,0,0,0.001); }

/* v7: app-like mobile bottom navigation, restored from the original Hotel
   Lilium design language. Mobile-only (hidden from var(--bottom-nav-bp) up,
   where the header nav already covers navigation); adds bottom padding to
   <main> on mobile so content never sits under it, and respects the home
   indicator / gesture area on notched devices. */
:root { --bottom-nav-height: 4.25rem; }
.bottom-nav {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-header);
  display: flex; align-items: stretch; justify-content: space-around;
  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--stone-200); box-shadow: 0 -4px 20px rgba(28,25,23,0.06);
}
.bottom-nav__link {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; color: var(--stone-500); font-size: 0.68rem; font-weight: 600; transition: color var(--transition);
}
.bottom-nav__link svg { width: 1.35rem; height: 1.35rem; }
.bottom-nav__link.active { color: var(--green-800); }
@media (min-width: 860px) { .bottom-nav { display: none; } }
@media (max-width: 859.98px) { main { padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px)); } }
@media print { .bottom-nav, .header, .mobile-drawer { display: none !important; } }

.footer { background: var(--stone-950); color: var(--stone-300); padding-block: 4rem 1.5rem; margin-top: 2rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer__brand { grid-column: 1 / -1; }
.footer h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer a { color: var(--stone-400); font-size: 0.85rem; display: block; margin-bottom: 0.5rem; transition: color var(--transition); }
.footer a:hover { color: var(--white); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.06); color: var(--stone-300); margin-bottom: 0; transition: background-color var(--transition), color var(--transition); }
.footer__social a:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.footer__bottom { border-top: 1px solid var(--stone-800); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.78rem; color: var(--stone-500); text-align: center; }
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { grid-column: auto; }
}

/* ---- Product cards / listing ---- */
.product-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.product-card__body { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card__title { font-weight: 800; font-size: 1rem; }
.product-card__meta { display: flex; align-items: center; gap: 0.4rem; color: var(--stone-500); font-size: 0.82rem; }
.product-card__price { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; padding-top: 0.5rem; border-top: 1px dashed var(--stone-200); }
.product-card__price b { font-size: 1.05rem; color: var(--green-800); }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--stone-700); }
.field input, .field select, .field textarea {
  border: 1px solid var(--stone-300); border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
  background: var(--white); font-size: 0.92rem; transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-800); }
.field__error { color: var(--red-600); font-size: 0.78rem; }
.field__hint { color: var(--stone-500); font-size: 0.78rem; }
.form-row { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

/* ---- Stepper (checkout) ---- */
.stepper { display: flex; align-items: center; gap: 0.35rem; margin-bottom: 2rem; overflow-x: auto; }
.stepper__item { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.stepper__dot {
  width: 1.6rem; height: 1.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--stone-200); color: var(--stone-500); font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.stepper__item.done .stepper__dot { background: var(--green-800); color: var(--white); }
.stepper__item.active .stepper__dot { background: var(--stone-900); color: var(--white); }
.stepper__label { font-size: 0.78rem; color: var(--stone-500); white-space: nowrap; }
.stepper__item.active .stepper__label { color: var(--stone-900); font-weight: 700; }
.stepper__line { width: 1.25rem; height: 1px; background: var(--stone-300); flex-shrink: 0; }

/* ---- Summary lines (checkout, voucher, invoice) ---- */
.summary-line { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px dashed var(--stone-200); }
.summary-line.total { border-top: 1px solid var(--stone-200); border-bottom: none; margin-top: 0.5rem; padding-top: 0.75rem; font-weight: 800; font-size: 1.05rem; }

/* ---- Table (admin) ---- */
.table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.table th, .table td { padding: 0.65rem 0.8rem; text-align: right; border-bottom: 1px solid var(--stone-200); }
.table th { color: var(--stone-500); font-weight: 700; font-size: 0.78rem; }
.table tr:hover td { background: var(--stone-50); }

/* ---- Utility ---- */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.muted { color: var(--stone-500); }
.hidden { display: none !important; }

.spinner {
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: var(--white);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed; bottom: 1.25rem; inset-inline: 0; z-index: var(--z-toast);
  display: flex; justify-content: center; pointer-events: none;
}
.toast__inner {
  background: var(--stone-900); color: var(--white); padding: 0.75rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.85rem; box-shadow: var(--shadow-lg); max-width: 90vw;
}
.toast__inner.error { background: var(--red-700); }

.skeleton { background: linear-gradient(90deg, var(--stone-200) 25%, var(--stone-100) 37%, var(--stone-200) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---- Tour/event detail page (v5) ---- */
.breadcrumb { display: flex; gap: 0.4rem; align-items: center; margin-block: 1.25rem; }
.breadcrumb a:hover { color: var(--stone-900); text-decoration: underline; }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

.detail-gallery { display: grid; gap: 0.6rem; grid-template-columns: 1fr; margin-bottom: 1.5rem; }
@media (min-width: 760px) { .detail-gallery { grid-template-columns: 1.4fr 1fr; height: 420px; } }
.detail-gallery__lead { border-radius: var(--radius-lg); overflow: hidden; height: 260px; }
@media (min-width: 760px) { .detail-gallery__lead { height: 100%; } }
.detail-gallery__lead img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.detail-gallery__cell { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 120px; }
.detail-gallery__cell img { width: 100%; height: 100%; object-fit: cover; }

.detail-head { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
@media (min-width: 760px) { .detail-head { grid-template-columns: 1fr 16rem; align-items: start; } }
.detail-head__meta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.detail-head__pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem; border-radius: var(--radius-full); background: var(--stone-100); font-size: 0.82rem; color: var(--stone-700); }
.detail-head__price { position: static; }
@media (min-width: 760px) { .detail-head__price { position: sticky; top: calc(var(--header-height) + 1rem); } }

.detail-grid { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 900px) { .detail-grid { grid-template-columns: minmax(0, 1fr) 20rem; } }
.detail-main { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; }
.detail-block { border: 1px solid var(--stone-200); border-radius: var(--radius); padding: 1.5rem; }
.detail-side { min-width: 0; }

.fact-grid { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 480px) { .fact-grid { grid-template-columns: repeat(3, 1fr); } }
.fact-grid__item { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.75rem; background: var(--stone-50); border-radius: var(--radius-sm); }
.fact-grid__item span { font-size: 0.72rem; color: var(--stone-500); }
.fact-grid__item b { font-size: 0.88rem; }

.itinerary { display: flex; flex-direction: column; gap: 1.25rem; }
.itinerary__item { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.itinerary__day { background: var(--green-100); color: var(--green-800); font-size: 0.72rem; font-weight: 800; padding: 0.35rem 0.6rem; border-radius: var(--radius-full); white-space: nowrap; }

.incl-excl { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .incl-excl { grid-template-columns: 1fr 1fr; } }
.incl-excl__col ul { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.6rem; }
.incl-excl__col li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.86rem; }
.incl-excl__col--yes li svg { color: var(--green-700); }
.incl-excl__col--no li svg { color: var(--stone-400); }

.booking-panel { position: static; }
@media (min-width: 760px) { .booking-panel { position: sticky; top: calc(var(--header-height) + 1rem); } }
.departure-list { display: flex; flex-direction: column; gap: 0.6rem; }
.departure-option {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.85rem 1rem; border: 1.5px solid var(--stone-200); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color var(--transition), background-color var(--transition);
}
.departure-option:hover:not(.is-disabled) { border-color: var(--stone-400); }
.departure-option.is-selected { border-color: var(--green-800); background: var(--green-50); }
.departure-option.is-disabled { opacity: 0.55; cursor: not-allowed; }
.departure-option__date { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.88rem; }
.price-options { display: flex; flex-direction: column; gap: 0.5rem; }
.price-option { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.85rem; background: var(--stone-50); border-radius: var(--radius-sm); }
.price-option__label { font-size: 0.85rem; font-weight: 600; }
.price-option__amount { font-size: 0.92rem; color: var(--green-800); }

/* ---- Survey (v7): step-based flow restored from the legacy survey.html
   pattern — a segmented progress bar, one question per step, and a
   star/number rating scale — wired to the current dynamic survey API. ---- */
.survey-progress { display: flex; gap: 0.35rem; margin-bottom: 2rem; }
.survey-progress span { flex: 1; height: 4px; border-radius: var(--radius-full); background: var(--stone-200); transition: background-color var(--transition); }
.survey-progress span.is-done, .survey-progress span.is-active { background: var(--green-800); }
.survey-step__eyebrow { font-size: 0.78rem; font-weight: 700; color: var(--green-800); }
.survey-step__count { color: var(--stone-500); font-weight: 600; }
.rating-scale { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1.25rem; }
.rating-scale button {
  min-width: 2.75rem; height: 2.75rem; padding: 0 0.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--stone-300); background: var(--white); font-weight: 700; font-size: 0.95rem;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}
.rating-scale button:hover { border-color: var(--green-800); }
.rating-scale button.is-on { background: var(--green-800); border-color: var(--green-800); color: var(--white); }
.rating-scale__hint { text-align: center; margin-top: 0.6rem; }
.option-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.option-row {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem;
  border: 1.5px solid var(--stone-200); border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
}
.option-row:hover { border-color: var(--stone-400); }
.option-row.is-checked { border-color: var(--green-800); background: var(--green-50); }
.option-row input { accent-color: var(--green-800); }
.survey-nav { display: flex; gap: 0.75rem; margin-top: 2rem; }
.survey-nav .btn { flex: 1; }

.print-only { display: none; }
@media print {
  .no-print { display: none !important; }
  .print-only { display: block; }
  body { background: var(--white); }
}
