/* ============================================================
   AUKSO LAIKAS — premium, mobile-first stylesheet
   Less brown, more cream/ink. Subtle motion.
   ============================================================ */

:root {
  --bg: #fbf8f3;
  --bg-soft: #f3ead7;
  --card: #ffffff;
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #4b5563;
  --line: #e8e1cf;
  --line-2: #efe8d6;

  --gold: #c8931f;
  --gold-600: #b08018;
  --gold-700: #8a6413;
  --gold-soft: #f6e27a;
  --gold-soft-2: #fff2b0;

  --success: #166534;
  --success-600: #14532d;
  --success-bg: #dcfce7;

  --danger: #b91c1c;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 22px 48px rgba(17, 24, 39, 0.12);

  --maxw: 1100px;
  --container-px: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 18px;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Fraunces', 'Inter', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(32px, 7.5vw, 46px); line-height: 1.08; }
h2 { font-size: clamp(26px, 6vw, 36px); line-height: 1.15; }
h3 { font-size: clamp(19px, 4.6vw, 22px); line-height: 1.25; }

p { margin: 0; color: var(--muted); font-size: 17px; }

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

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-px) 48px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--ink);
  color: #f3ead7;
  font-size: 15px;
}

.top-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px var(--container-px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}

.top-bar-safety {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--gold-soft);
}
.top-bar-safety .shield { width: 16px; height: 16px; color: var(--gold-soft); }

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f3ead7;
  transition: color 120ms var(--ease);
}
.top-bar-link:hover { color: var(--gold-soft); }
.top-bar-link svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .top-bar-safety { display: none; }
  .top-bar-inner { justify-content: center; text-align: center; padding: 6px var(--container-px); }
  .top-bar-contact { width: 100%; justify-content: center; gap: 14px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(6px);
  background-color: rgba(251, 248, 243, 0.85);
}

.site-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #fff3c7 0%, var(--gold) 85%);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(200, 147, 31, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.brand-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.city-pill svg { width: 14px; height: 14px; color: var(--gold-700); flex: 0 0 auto; }
.city-pill--btn {
  cursor: pointer;
  font-family: inherit;
  transition: background 160ms var(--ease), border-color 160ms var(--ease),
    box-shadow 160ms var(--ease), transform 120ms var(--ease);
}
.city-pill--btn:hover {
  background: #fff;
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.city-pill--btn:active { transform: scale(0.97); }
.city-pill-arrow { width: 12px !important; height: 12px !important; color: var(--muted) !important; margin-left: 2px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.step { padding-top: 22px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.section-head p { max-width: 62ch; }
.section-head.center {
  align-items: center;
  text-align: center;
  margin-top: 18px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 22px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.hero-title {
  font-size: clamp(26px, 6.6vw, 52px);
  line-height: 1.05;
}
.hero-title-strong {
  display: inline-block;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(246, 226, 122, 0) 55%, rgba(246, 226, 122, 0.75) 55%);
  padding: 0 4px;
}

.hero-sub {
  font-size: clamp(15px, 3.8vw, 19px);
  color: var(--muted);
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.hero-ctas .btn {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  gap: 6px;
  border-radius: 14px;
}
.hero-ctas .btn svg { display: none; }

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  justify-self: end;
}
.hero-photo-stripe {
  position: absolute;
  left: -8px; top: 10px;
  width: 82%; height: 94%;
  background: var(--gold-soft);
  border-radius: 6px;
  transform: rotate(-5deg);
}
.hero-photo {
  position: absolute;
  right: 0; top: 0;
  width: 94%; height: 94%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 780px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .hero-copy { text-align: left; align-items: flex-start; gap: 14px; }
  .hero-ctas { flex-wrap: wrap; gap: 10px; margin-top: 6px; }
  .hero-ctas .btn {
    flex: 0 0 auto;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 999px;
    white-space: normal;
    overflow: visible;
  }
  .hero-ctas .btn svg { display: inline-block; width: 18px; height: 18px; }
  .hero-photo-wrap { max-width: 440px; justify-self: end; }
}

/* ============================================================
   TRUST GRID
   ============================================================ */
.trust {
  padding: 22px 0 8px;
}

.trust-tiles {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 14px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 55%),
    var(--card);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 6px 18px rgba(17, 24, 39, 0.05);
  min-width: 0;
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
    border-color 200ms var(--ease);
}
.trust-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-700) 100%);
  opacity: 0.9;
}
.trust-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 14px 28px rgba(17, 24, 39, 0.10);
  border-color: var(--gold);
}

.trust-tile-figure {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--gold-700);
  background: linear-gradient(140deg, #c89b2a 0%, #e4c45b 45%, #c89b2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}

.trust-tile strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.trust-tile p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  overflow-wrap: break-word;
  hyphens: auto;
}

.trust-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.trust-layout .trust-tiles {
  margin-top: 0;
}

/* Wide lead strip (full width) — same language as tiles */
.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px 18px;
  padding: 16px 14px;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 55%),
    var(--card);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 6px 18px rgba(17, 24, 39, 0.05);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
    border-color 200ms var(--ease);
}
.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-700) 100%);
  opacity: 0.9;
}
.trust-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 14px 28px rgba(17, 24, 39, 0.10);
  border-color: var(--gold);
}
.trust-strip-figure {
  align-self: start;
}
.trust-strip-body {
  min-width: 0;
}
.trust-strip-body strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.trust-strip-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-strip-figure {
    margin-bottom: 2px;
  }
}

/* Three-tile row under the lead strip (legacy) */
.trust-tiles--row3 {
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .trust-tiles--row3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 720px) {
  .trust-tiles--row3 {
    gap: 14px;
  }
}

/* Four-tile row — clean equal-sized grid */
.trust-tiles--row4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 480px) {
  .trust-tiles--row4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 880px) {
  .trust-tiles--row4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

/* Bottom — Patirtis block, side-by-side layout */
.trust-experience {
  margin-top: 0;
  padding: 22px 22px;
  background: linear-gradient(135deg, #fff6dc 0%, #fffaf0 100%);
  border: 1px solid var(--gold-soft);
  border-left: 4px solid var(--gold-700);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
@media (min-width: 720px) {
  .trust-experience-inner {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
}
.trust-experience-figure-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-right: 16px;
}
@media (min-width: 720px) {
  .trust-experience-figure-wrap {
    border-right: 1px solid rgba(200, 147, 31, 0.25);
    padding-right: 24px;
  }
}
.trust-experience-figure {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 48px) !important;
  line-height: 1;
}
.trust-experience-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.trust-experience-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.trust-experience-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.trust-experience-extra {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  animation: expandIn 320ms var(--ease);
}
.trust-experience-extra[hidden] { display: none; }
@keyframes expandIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-experience-toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-700);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease),
    color 160ms var(--ease), transform 120ms var(--ease);
}
.trust-experience-toggle:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
}
.trust-experience-toggle:active { transform: scale(0.97); }
.trust-experience-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 220ms var(--ease);
}
.trust-experience-toggle.is-open svg { transform: rotate(180deg); }
@media (min-width: 720px) {
  .trust-experience { padding: 28px 28px; }
  .trust-experience-copy p { font-size: 14.5px; }
  .trust-experience-toggle { font-size: 14px; padding: 9px 16px; }
}

@media (min-width: 720px) {
  .trust-strip {
    padding: 20px 22px;
    gap: 14px 24px;
  }
  .trust-strip-body strong { font-size: 17px; }
  .trust-strip-body p { font-size: 14px; }
  .trust-experience { padding: 20px 22px; }
  .trust-experience-copy p { font-size: 14.5px; }
}

/* Highlighted secondary point below the tiles */
.trust-banner {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 14px;
  background: linear-gradient(135deg, #fff6dc 0%, #fffaf0 100%);
  border: 1px solid var(--gold-soft);
  border-left: 4px solid var(--gold-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-banner-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--gold-soft);
  color: var(--gold-700);
  flex: 0 0 auto;
}
.trust-banner-icon svg { width: 22px; height: 22px; }
.trust-banner strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
}
.trust-banner span {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}

.trust-banner-copy {
  min-width: 0;
}
.trust-banner-copy strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.trust-banner-copy p {
  margin: 0 0 0.65em;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.trust-banner-copy p:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .trust-tiles:not(.trust-tiles--row3) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .trust-tile { padding: 20px 18px; }
  .trust-tile-figure { font-size: 34px; }
  .trust-tile strong { font-size: 17px; }
  .trust-tile p { font-size: 14px; }
  .trust-banner { padding: 16px 18px; grid-template-columns: 44px 1fr; }
  .trust-banner strong { font-size: 16px; }
  .trust-banner span { font-size: 14.5px; }
  .trust-banner-copy strong { font-size: 16px; }
  .trust-banner-copy p { font-size: 14.5px; }
}

/* ============================================================
   PRODUCT PICKER
   ============================================================ */
.picker { padding: 28px 0 12px; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 18px;
}
@media (min-width: 560px) { .items-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 900px) { .items-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.item-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease),
    border-color 240ms var(--ease);
  position: relative;
}
@media (min-width: 560px) {
  .item-card { padding: 12px; gap: 10px; }
}
.item-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 147, 31, 0.18), var(--shadow-sm);
}
.item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Each product's image area mimics the hero treatment:
   a rotated yellow stripe sits behind a clean photo square. */
.item-part {
  aspect-ratio: 1 / 1;
  position: relative;
  background: transparent;
  border: none;
  overflow: visible;
  margin: 2px 2px 0 4px;
}
.item-part-stripe {
  position: absolute;
  left: -4px;
  top: 6px;
  width: 82%;
  height: 92%;
  background: var(--gold-soft);
  border-radius: 4px;
  transform: rotate(-5deg);
  z-index: 0;
}
.item-part-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 94%;
  height: 94%;
  padding: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #fbf8f3 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.item-part-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
/* Portrait assets shown horizontal — optional per-item via imageRotateDeg */
.item-part-photo img.item-part-img-rotate {
  transform: rotate(var(--img-rotate-deg, -90deg));
  max-width: 82%;
  max-height: 82%;
}
.item-part-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.82);
  color: #fff8dc;
  border: 1px solid rgba(255, 242, 176, 0.75);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.22);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
}
.item-part-number {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  color: var(--gold-700);
  font-size: clamp(28px, 7vw, 40px);
  letter-spacing: -0.02em;
}

/* Subtle tilt-back on hover — reinforces the "stripe behind photo" idea. */
.item-card:hover .item-part-stripe {
  transform: rotate(-7deg) translate(-2px, 1px);
  transition: transform 260ms var(--ease);
}
.item-part-stripe { transition: transform 260ms var(--ease); }

.item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-details {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-price {
  font-weight: 800;
  color: var(--ink);
  font-size: 17px;
  margin-top: auto;
  line-height: 1.2;
}
@media (min-width: 560px) {
  .item-name { font-size: 16px; line-height: 1.25; min-height: 2.5em; }
  .item-details { font-size: 14px; line-height: 1.4; min-height: 2.6em; }
  .item-price { font-size: 18px; }
}
.item-price em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  margin-right: 4px;
}

/* Qty controls on the card */
.item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.qty-add-btn {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 140ms var(--ease), background 140ms var(--ease);
}
@media (min-width: 560px) {
  .qty-add-btn { padding: 12px 16px; font-size: 16px; }
}
.qty-add-btn:hover { background: #0b1220; }
.qty-add-btn:active { transform: scale(0.98); }

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
  width: 100%;
  justify-content: space-between;
}
.qty-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  display: grid; place-items: center;
  transition: transform 140ms var(--ease), background 140ms var(--ease);
}
.qty-btn:hover { background: var(--gold); color: #fff; }
.qty-btn:active { transform: scale(0.94); }
.qty-value {
  font-weight: 700;
  font-size: 17px;
  min-width: 16px;
  text-align: center;
}

/* Estimate wrap */
.estimate-wrap {
  background: linear-gradient(145deg, #fff6cc 0%, var(--gold-soft) 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-xl);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}
.estimate-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.estimate-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.estimate-value {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(32px, 8vw, 44px);
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: transform 200ms var(--ease);
}
.estimate-value.pulse { transform: scale(1.06); }
.estimate-note {
  font-size: 15px;
  color: var(--gold-700);
}

/* ============================================================
   HOW IT WORKS — vertical map-like timeline
   ============================================================ */
.how {
  background: var(--bg-soft);
  padding: 22px 0 34px;
  margin-top: 18px;
  margin-left: calc(var(--container-px) * -1);
  margin-right: calc(var(--container-px) * -1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how .section-head {
  padding: 0 var(--container-px);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

@media (min-width: 640px) {
  .how { padding: 32px 0 40px; margin-top: 28px; }
}

.how-steps {
  list-style: none;
  padding: 0 var(--container-px);
  margin: 18px auto 0;
  max-width: 560px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Track + progress fill for the connector line (scroll-driven) */
.how-line-track,
.how-line-fill {
  position: absolute;
  left: calc(var(--container-px) + 27px);
  width: 3px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.how-line-track {
  top: var(--how-line-top, 28px);
  height: var(--how-line-length, calc(100% - 56px));
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(212, 175, 55, 0.35) 0 6px,
    transparent 6px 14px
  );
}
.how-line-fill {
  top: var(--how-line-top, 28px);
  height: 0px;
  max-height: var(--how-line-length, calc(100% - 56px));
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-700) 100%);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.55);
  transition: height 120ms linear;
  will-change: height;
}
.how-line-head {
  position: absolute;
  left: calc(var(--container-px) + 22px);
  top: calc(var(--how-line-top, 28px) + 0px);
  width: 13px; height: 13px;
  border-right: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top left;
  opacity: 0;
  transition: opacity 180ms var(--ease), top 120ms linear;
  pointer-events: none;
  z-index: 1;
}
.how-line-head.is-visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .how-line-fill { transition: none; }
  .how-line-head { transition: none; }
}

.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  z-index: 1;
}

.how-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--gold-soft);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 26px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--bg-soft), 0 10px 22px rgba(17, 24, 39, 0.22);
  position: relative;
  transition: background 260ms var(--ease), color 260ms var(--ease),
    box-shadow 260ms var(--ease), transform 260ms var(--ease);
}
.how-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 1px dashed var(--gold);
  opacity: 0.55;
  transition: opacity 260ms var(--ease), border-color 260ms var(--ease);
}

/* Reached state — once the step has been passed by the scroll progress */
.how-step.is-reached .how-num {
  background: linear-gradient(180deg, #f5d06b 0%, var(--gold-700) 100%);
  color: #1a1205;
  box-shadow: 0 0 0 6px var(--bg-soft), 0 12px 26px rgba(184, 134, 11, 0.35);
}
.how-step.is-reached .how-num::after {
  opacity: 1;
  border-style: solid;
  border-color: var(--gold-700);
}

.how-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  position: relative;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.how-body::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 14px; height: 14px;
  background: var(--card);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.how-step:hover .how-body { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.how-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.how-step p { font-size: 16px; line-height: 1.5; }

.how-step-cta {
  margin-top: 12px;
  padding: 12px 18px;
  font-size: 15px;
  width: 100%;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.how-step-cta svg { width: 16px; height: 16px; }
@media (min-width: 560px) {
  .how-step-cta { width: auto; }
}

/* (Static arrowhead replaced by the scroll-driven .how-line-head) */

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry { padding: 30px 0; }

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .inquiry-form { grid-template-columns: 1fr 1fr; gap: 14px; padding: 24px; }
  .field-wide { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 147, 31, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }

.file-drop {
  position: relative;
  border: 1.5px dashed var(--line);
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
  cursor: pointer;
}
.file-drop:hover { border-color: var(--gold); background: #fff6cc; }
.file-drop input[type='file'] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-label { display: flex; flex-direction: column; gap: 2px; color: var(--ink); font-size: 16px; }
.file-drop-label small { color: var(--muted); font-size: 14px; }

.file-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.file-list li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  color: var(--ink-2);
}
.file-list button {
  border: none; background: transparent;
  color: var(--danger); font-weight: 700;
  padding: 0 2px; font-size: 14px;
}

.form-note { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 30px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease),
    border-color 240ms var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--gold-soft);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-card strong { font-size: 20px; color: var(--ink); }
.contact-hours { margin-top: 12px; color: var(--muted); font-size: 16px; }

/* ============================================================
   STEP 2 — confirmation panel
   ============================================================ */
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.step2-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step2-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step2-thumb {
  width: 96px;
  aspect-ratio: 1 / 1;
  position: relative;
}
.step2-thumb .item-part {
  aspect-ratio: 1 / 1;
  margin: 2px 2px 2px 4px;
}
.step2-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.step2-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}
.step2-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.step2-price em {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 6px;
  text-transform: lowercase;
}
.step2-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.step2-qty {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 190px;
}
.step2-remove {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--danger);
  display: grid;
  place-items: center;
  transition: background 140ms var(--ease), border-color 140ms var(--ease);
}
.step2-remove svg { width: 18px; height: 18px; }
.step2-remove:hover { background: #fee2e2; border-color: #fca5a5; }

@media (min-width: 560px) {
  .step2-line { grid-template-columns: 120px minmax(0, 1fr); gap: 16px; padding: 14px; }
  .step2-thumb { width: 120px; }
  .step2-name { font-size: 18px; }
  .step2-price { font-size: 30px; }
}

.panel-sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 4px;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  margin: 8px 0 14px;
  font-size: 16px;
  color: var(--muted);
}
.panel-sum strong {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  font-size: 26px;
}
.panel-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.panel-actions .btn-ghost { flex: 0 0 auto; }
.panel-actions .btn-primary { flex: 1 1 auto; }

/* ============================================================
   STEP 3 — final confirmation
   ============================================================ */
.final-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-top: 12px;
}

/* ------- Event info standalone page (step 5) ------- */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.info-map-link {
  width: 100%;
  margin-top: 4px;
  gap: 8px;
}
.info-map-link svg { width: 20px; height: 20px; }
.info-empty {
  margin: 0;
  padding: 18px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}
.info-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .info-actions { grid-template-columns: 1fr 1fr; }
  .info-map-link { width: auto; align-self: flex-start; }
}

.event-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-card-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--ink);
}

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin: 0;
}
.event-meta > div { display: flex; flex-direction: column; gap: 2px; }
.event-meta dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}
.event-meta dd { margin: 0; font-size: 16px; color: var(--ink); font-weight: 500; }
.event-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.event-actions .btn {
  width: 100%;
}
.info-map-link,
.info-calendar-link {
  margin-top: 0;
  gap: 8px;
}
.info-calendar-link svg { width: 20px; height: 20px; }
@media (min-width: 680px) {
  .event-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.final-lock {
  background: var(--success-bg);
  border: 1px solid #86efac;
  color: var(--success-600);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.final-fine {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease), background 160ms var(--ease),
    color 160ms var(--ease), box-shadow 160ms var(--ease), border-color 160ms var(--ease);
  line-height: 1;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 15px 24px; font-size: 17px; }
.btn-xl { padding: 17px 26px; font-size: 18px; }
.btn:active { transform: scale(0.98); }
.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(0.75);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}
.btn-primary:hover { background: #0b1220; box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22); }

.btn-success {
  background: linear-gradient(180deg, #16a34a 0%, var(--success) 100%);
  color: #fff;
  border-color: var(--success-600);
  box-shadow: 0 12px 30px rgba(22, 101, 52, 0.28);
}
.btn-success:hover { filter: brightness(1.04); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--gold); color: var(--gold-700); }

#eventMapLink.is-map-cta-highlight {
  transform: scale(1.08);
  border-color: var(--gold-700);
  color: var(--gold-700);
  background: #fffdf3;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.24);
  animation: mapCtaShake 560ms ease-in-out 3, mapCtaPulse 1400ms ease-in-out 3 1800ms;
}

#eventMapLink.is-map-cta-highlight svg {
  width: 20px;
  height: 20px;
}

@keyframes mapCtaShake {
  0%, 100% { transform: scale(1.08) translateX(0); }
  20% { transform: scale(1.08) translateX(-4px) rotate(-2deg); }
  40% { transform: scale(1.08) translateX(4px) rotate(2deg); }
  60% { transform: scale(1.08) translateX(-3px) rotate(-1.5deg); }
  80% { transform: scale(1.08) translateX(3px) rotate(1.5deg); }
}

@keyframes mapCtaPulse {
  0%, 100% {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.24);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 16px 36px rgba(217, 119, 6, 0.32);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #e5e7eb;
  margin-top: 30px;
}
.site-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--container-px);
  display: grid;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand strong { color: #fff; font-family: 'Fraunces', Georgia, serif; display: block; font-size: 18px; }
.footer-brand small { color: #9ca3af; font-size: 14px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: var(--gold-soft); font-weight: 600; font-size: 16px; }
.footer-legal { color: #6b7280; font-size: 13px; }

@media (min-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .footer-contact { align-items: center; flex-direction: row; gap: 20px; }
  .footer-legal { justify-self: end; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 40px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
  z-index: 80;
  max-width: min(90vw, 520px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast.is-success { background: #166534; }
.toast.is-error { background: #991b1b; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease) var(--reveal-delay, 0ms),
    transform 620ms var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Reduce 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; }
}

/* Fade between steps */
.step-enter {
  animation: stepFade 320ms var(--ease);
}
@keyframes stepFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PREVIEW CAROUSEL (landing showcase — non-interactive)
   ============================================================ */
.preview { padding: 24px 0 12px; }

.preview-carousel {
  position: relative;
}

.items-grid--preview {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 2px 10px;
  scroll-padding-left: 2px;
  scroll-behavior: smooth;
  align-items: stretch;
}
.items-grid--preview::-webkit-scrollbar { display: none; }

.items-grid--preview .item-card {
  flex: 0 0 calc((100% - 12px) / 2);
  scroll-snap-align: start;
  cursor: pointer;
  min-height: 0;
}
.items-grid--preview .item-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.items-grid--preview .item-card .item-actions { display: none; }
.items-grid--preview .item-card .item-price em { display: inline; }

/* Arrows (desktop) */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: none;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: background 140ms var(--ease), color 140ms var(--ease),
    border-color 140ms var(--ease), opacity 140ms var(--ease);
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.carousel-arrow:disabled { opacity: 0.35; pointer-events: none; }
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--next { right: -8px; }

@media (min-width: 640px) {
  .items-grid--preview .item-card { flex-basis: calc((100% - 24px) / 3); }
  .items-grid--preview { gap: 12px; }
}
@media (min-width: 900px) {
  .carousel-arrow { display: grid; }
  .carousel-arrow--prev { left: -18px; }
  .carousel-arrow--next { right: -18px; }
  .items-grid--preview { padding: 8px 6px 12px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}
.carousel-dots span.is-active {
  background: var(--gold);
  transform: scaleX(2.2);
  border-radius: 4px;
}
.carousel-dots:empty { display: none; }

.preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
  transition: transform 140ms var(--ease), background 140ms var(--ease), box-shadow 140ms var(--ease);
}
.preview-cta svg { width: 18px; height: 18px; flex: 0 0 auto; }
.preview-cta:hover { background: #0b1220; box-shadow: 0 14px 30px rgba(17, 24, 39, 0.22); }
.preview-cta:active { transform: scale(0.98); }
@media (min-width: 560px) {
  .preview-cta { width: auto; margin-left: auto; margin-right: auto; display: flex; padding: 14px 26px; font-size: 16px; }
}

/* ============================================================
   INQUIRY INTRO (combined reassure + header, centered)
   ============================================================ */
.inquiry-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 0 auto 18px;
  max-width: 640px;
  padding: 22px 18px 20px;
  background: linear-gradient(160deg, #fffaec 0%, #fff1c7 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.inquiry-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-700) 50%, var(--gold) 100%);
}
.inquiry-intro .inquiry-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--gold-soft);
  color: var(--gold-700);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
  margin-bottom: 2px;
}
.inquiry-intro .inquiry-icon svg { width: 28px; height: 28px; }
.inquiry-intro .eyebrow { color: var(--gold-700); }
.inquiry-intro h2 {
  margin: 0;
  font-size: clamp(20px, 4.6vw, 26px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
}
.inquiry-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
}
.inquiry-intro p strong { color: var(--ink); font-weight: 700; }

@media (min-width: 640px) {
  .inquiry-intro { padding: 28px 28px 24px; gap: 12px; }
  .inquiry-intro .inquiry-icon { width: 56px; height: 56px; }
  .inquiry-intro .inquiry-icon svg { width: 30px; height: 30px; }
  .inquiry-intro p { font-size: 16px; }
}

/* ============================================================
   PRICE DISCLAIMER BANNER
   ============================================================ */
.price-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  background: linear-gradient(140deg, #fff3c7 0%, var(--gold-soft) 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.price-banner-icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  color: var(--gold-700);
}
.price-banner-icon svg { width: 100%; height: 100%; }
.price-banner-body { display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
.price-banner-body strong {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.price-banner-body span {
  font-size: 15px;
  color: #5c4210;
  line-height: 1.5;
}

/* ============================================================
   INLINE ESTIMATE RECAP (on picker step, above sticky bar)
   ============================================================ */
.estimate-wrap--inline {
  margin-top: 8px;
  margin-bottom: 0;
  background: var(--card);
  border: 1px solid var(--line);
}
.estimate-wrap--inline .estimate-label { color: var(--muted); }

/* ============================================================
   ACKNOWLEDGMENT CHECKBOX (review step)
   ============================================================ */
.ack {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.ack:hover { border-color: var(--gold); }
.ack input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ack-box {
  width: 22px; height: 22px;
  border: 2px solid var(--muted);
  border-radius: 6px;
  background: #fff;
  position: relative;
  margin-top: 1px;
  transition: border-color 140ms var(--ease), background 140ms var(--ease);
}
.ack input:checked ~ .ack-box {
  background: var(--ink);
  border-color: var(--ink);
}
.ack input:checked ~ .ack-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 7px; height: 12px;
  border-right: 2.5px solid var(--gold-soft);
  border-bottom: 2.5px solid var(--gold-soft);
  transform: rotate(45deg);
}
.ack-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.ack-text strong { color: var(--ink); font-weight: 700; }
.ack:has(input:checked) {
  background: #ecfdf5;
  border-color: #86efac;
}

/* ============================================================
   STICKY CTA (global, step-aware)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  top: auto;
  margin: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  background: var(--card);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.10);
  pointer-events: auto;
  transform: none;
  backface-visibility: hidden;
}
.sticky-cta[hidden] { display: none !important; }
.sticky-cta .sticky-cta-inner {
  animation: stickyIn 360ms var(--ease);
}

.sticky-cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  pointer-events: auto;
}
.sticky-cta-inner.no-back { grid-template-columns: 1fr auto; }

.sticky-cta-back {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background 140ms var(--ease), border-color 140ms var(--ease);
}
.sticky-cta-back svg { width: 18px; height: 18px; }
.sticky-cta-back:hover { background: var(--bg-soft); border-color: var(--gold); }
.sticky-cta-back[hidden] { display: none !important; }

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-left: 6px;
}
.sticky-cta-info small {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  line-height: 1;
}
.sticky-cta-info strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}
.sticky-cta-info:empty { display: none; }

.sticky-cta-btn.btn-xl {
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 700;
  white-space: normal;
  text-align: center;
  min-height: 56px;
}
.sticky-cta-btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

@media (min-width: 640px) {
  .sticky-cta-btn.btn-xl { padding: 16px 26px; font-size: 17px; border-radius: 14px; white-space: nowrap; }
  .sticky-cta-info strong { font-size: 24px; }
}

/* Mobile: hide info block when too narrow to keep the button prominent */
@media (max-width: 520px) {
  .sticky-cta-info { display: none; }
  .sticky-cta-inner { grid-template-columns: auto 1fr; }
  .sticky-cta-inner.no-back { grid-template-columns: 1fr; }
  .sticky-cta-btn.btn-xl { width: 100%; justify-content: center; }
}

/* Reserve space so sticky CTA never covers content */
body.has-sticky-cta main { padding-bottom: 120px; }
@media (min-width: 640px) {
  body.has-sticky-cta main { padding-bottom: 110px; }
}

@keyframes stickyIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Step-4 success style on sticky */
.sticky-cta-btn.is-success {
  background: linear-gradient(180deg, #16a34a, #166534);
  border-color: #14532d;
  box-shadow: 0 14px 30px rgba(22, 101, 52, 0.3);
}
.sticky-cta-btn.is-success:hover { filter: brightness(1.04); }

/* Attention-grabbing pulse + shake for the sticky CTA on landing */
.sticky-cta-btn.is-attention {
  animation: ctaAttention 1200ms var(--ease);
}
@keyframes ctaAttention {
  0%   { transform: translateX(0) scale(1); box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18); }
  10%  { transform: translateX(-3px) scale(1.02); }
  20%  { transform: translateX(3px) scale(1.04); box-shadow: 0 18px 36px rgba(200, 147, 31, 0.40); }
  30%  { transform: translateX(-3px) scale(1.04); }
  40%  { transform: translateX(3px) scale(1.04); }
  50%  { transform: translateX(-2px) scale(1.05); box-shadow: 0 20px 38px rgba(200, 147, 31, 0.45); }
  60%  { transform: translateX(2px) scale(1.04); }
  70%  { transform: translateX(0) scale(1.03); }
  100% { transform: translateX(0) scale(1); box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta-btn.is-attention { animation: none; }
}

/* ============================================================
   POLISH LAYER — fresher hero, bigger CTAs, smoother motion
   Designed for older users: large tap targets, clear hierarchy
   ============================================================ */

/* Soft golden ambient backdrop for the whole page */
body {
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(246, 226, 122, 0.28) 0%, rgba(246, 226, 122, 0) 60%),
    radial-gradient(900px 500px at -10% 8%, rgba(200, 147, 31, 0.10) 0%, rgba(200, 147, 31, 0) 55%),
    var(--bg);
}

/* HERO — reverted to original look (no overrides) */

/* SECTION SPACING — give sections more breathing room */
.step { padding-top: 42px; }
@media (min-width: 720px) { .step { padding-top: 64px; } }

.section-head { gap: 10px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(28px, 6.4vw, 40px) !important; }
.eyebrow { font-size: 12.5px; }

/* TRUST tiles — softer cards, smoother lift */
.trust-tile {
  border-radius: var(--radius-xl) !important;
  padding: 22px 18px !important;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.trust-tile:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.14) !important;
}
.trust-tile-figure { font-size: clamp(30px, 6vw, 38px) !important; }

/* HOW — clearer card, gentler hover */
.how-step h3 { font-size: 19px !important; }
.how-step p { font-size: 16.5px !important; }
.how-body {
  border-radius: var(--radius-xl) !important;
  padding: 18px 20px !important;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04);
}
.how-step:hover .how-body {
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.10) !important;
}

/* HOW step CTA — bigger, golden, attention-pulling */
.how-step-cta {
  margin-top: 14px !important;
  padding: 16px 22px !important;
  font-size: 16.5px !important;
  border-radius: 16px !important;
  min-height: 54px !important;
  font-weight: 800 !important;
}

/* PRIMARY buttons everywhere — bigger, easier to press */
.btn.btn-primary {
  letter-spacing: 0.005em;
}
.btn.btn-primary:active { transform: translateY(1px) scale(0.99); }

.preview-cta {
  padding: 18px 24px !important;
  font-size: 17px !important;
  border-radius: 18px !important;
  min-height: 58px;
}

/* Sticky bottom CTA — taller, more thumb-friendly */
.sticky-cta-btn {
  min-height: 58px !important;
  font-size: 16px !important;
  border-radius: 16px !important;
}

/* INQUIRY form — bigger inputs, clearer labels */
.inquiry-form .field input,
.inquiry-form .field textarea {
  font-size: 16.5px !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  min-height: 52px;
}
.inquiry-form .field textarea { min-height: 120px; }
.inquiry-form .field label {
  font-size: 14.5px !important;
  font-weight: 700 !important;
}
.btn.btn-xl {
  min-height: 62px !important;
  font-size: 17.5px !important;
  border-radius: 18px !important;
}

/* CONTACT cards — bigger, more obvious tap targets */
.contact-card {
  padding: 22px !important;
  border-radius: var(--radius-xl) !important;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
}
.contact-card strong { font-size: 18px !important; }

/* REVEAL animation — smoother entrance for sections */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-visible,
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Stagger trust tiles */
.trust-tiles .trust-tile:nth-child(1) { transition-delay: 0ms; }
.trust-tiles .trust-tile:nth-child(2) { transition-delay: 90ms; }
.trust-tiles .trust-tile:nth-child(3) { transition-delay: 180ms; }

/* CITY pill — slightly bigger so it's noticed */
.city-pill {
  padding: 8px 14px !important;
  font-size: 14px !important;
}

/* ============================================================
   DEEP REDESIGN LAYER — bolder, animated, coordinated
   ============================================================ */

/* SCROLL PROGRESS BAR — fixed at top, golden, fills as you read */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #f6e27a 0%, #c8931f 50%, #8a6413 100%);
  z-index: 100;
  box-shadow: 0 0 12px rgba(200, 147, 31, 0.6);
  transition: width 80ms linear;
  will-change: width;
}

/* HERO — reverted (deep redesign overrides removed) */

/* SECTION DIVIDER — decorative gold separator between sections */
section.trust::before,
section.preview::before,
section.inquiry::before,
section.contact::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent 0%, #c8931f 50%, transparent 100%);
  border-radius: 2px;
  opacity: 0.6;
}

/* TRUST TILES — bolder, more dimensional, with shine on hover */
.trust-strip--lead {
  border-radius: var(--radius-xl) !important;
  padding: 22px 18px !important;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.trust-strip--lead:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.14) !important;
}
.trust-experience {
  border-radius: var(--radius-xl) !important;
}
.trust-tile {
  position: relative;
  overflow: hidden;
}
.trust-tile::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transition: left 700ms var(--ease);
  pointer-events: none;
}
.trust-tile:hover::after { left: 140%; }
.trust-strip--lead::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transition: left 700ms var(--ease);
  pointer-events: none;
}
.trust-strip--lead:hover::after { left: 140%; }
.trust-tile-figure {
  display: inline-block;
  font-size: clamp(34px, 7vw, 44px) !important;
  text-shadow: 0 2px 12px rgba(200, 147, 31, 0.18);
}

/* HOW STEPS — coordinated stagger, stronger card lift */
.how-step {
  transition: transform 320ms var(--ease);
}
.how-step.in-view .how-num {
  animation: numPop 600ms var(--ease) both;
}
@keyframes numPop {
  0%   { transform: scale(0.6) rotate(-10deg); opacity: 0; }
  60%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .how-step.in-view .how-num { animation: none; }
}

/* HOW number — bigger, more presence */
.how-num {
  width: 64px !important; height: 64px !important;
  font-size: 30px !important;
  border-radius: 18px !important;
}
.how-step { grid-template-columns: 64px 1fr !important; gap: 18px !important; }

/* PREVIEW carousel cards — soft tilt on hover */
.item-card {
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease) !important;
}
.item-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.16) !important;
  border-color: var(--gold-soft) !important;
}

/* CONTACT cards — stronger hover, gold underline reveal */
.contact-card { position: relative; overflow: hidden; }
.contact-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(90deg, #f6e27a 0%, #c8931f 100%);
  transform: translateX(-50%);
  transition: width 320ms var(--ease);
}
.contact-card:hover::after { width: 80%; }

/* INQUIRY form — focus ring with gold glow */
.inquiry-form .field input:focus,
.inquiry-form .field textarea:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(200, 147, 31, 0.18) !important;
  transition: box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

/* REVEAL — stronger entrance: bigger travel + scale */
.reveal {
  transform: translateY(32px) scale(0.985) !important;
}
.reveal.in-view {
  transform: translateY(0) scale(1) !important;
}

/* CARD lift in reveal — hover micro-interaction on tiles */
.trust-layout .trust-strip--lead,
.trust-tiles .trust-tile,
.contact-grid .contact-card,
.how-step .how-body {
  cursor: default;
}

/* STICKY CTA — subtle continuous shimmer to draw the eye */
.sticky-cta-btn {
  position: relative;
  overflow: hidden;
}
.sticky-cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shimmer 3200ms ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta-btn::before { animation: none; }
}

/* BRAND mark in header — gentle bounce on load */
.brand-mark {
  animation: brandIn 700ms var(--ease) both;
}
@keyframes brandIn {
  0%   { transform: scale(0.6) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.1) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

/* Smoother section background transitions */
.how {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(246, 226, 122, 0.35) 0%, rgba(246, 226, 122, 0) 60%),
    var(--bg-soft) !important;
  position: relative;
}
.how::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

/* SECTION HEAD eyebrow — animated pulse dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200, 147, 31, 0.6);
  animation: dotPulse 2000ms ease-out infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 147, 31, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(200, 147, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 147, 31, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .section-head .eyebrow::before { animation: none; }
}

/* ============================================================
   PREMIUM LAYER — hero eyebrow, sparkles, stats, testimonial
   ============================================================ */

/* HERO eyebrow chip */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(246, 226, 122, 0.35) 0%, rgba(200, 147, 31, 0.18) 100%);
  border: 1px solid rgba(200, 147, 31, 0.35);
  color: var(--gold-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-eyebrow svg { width: 14px; height: 14px; color: var(--gold); }

/* HERO bullets — quick trust strip */
.hero-bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-bullets svg {
  width: 18px; height: 18px;
  color: #166534;
  background: #dcfce7;
  border-radius: 50%;
  padding: 3px;
  box-sizing: border-box;
}
@media (min-width: 780px) {
  .hero-bullets li { font-size: 15px; }
}

/* HERO photo upgraded — glow + floating "0 €" badge */
.hero-photo-wrap { position: relative; }
.hero-glow {
  position: absolute;
  inset: -16% -16% -10% -16%;
  background:
    radial-gradient(50% 55% at 55% 50%, rgba(246, 226, 122, 0.7) 0%, rgba(246, 226, 122, 0) 70%),
    radial-gradient(35% 35% at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(6px);
  z-index: -1;
  animation: glowPulse 4500ms ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.hero-badge {
  position: absolute;
  right: -10px; bottom: 8%;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6e27a 0%, #c8931f 100%);
  color: #1a1205;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  text-align: center;
  box-shadow: 0 14px 28px rgba(200, 147, 31, 0.4), inset 0 0 0 4px rgba(255, 255, 255, 0.5);
  transform: rotate(-8deg);
  animation: badgeBob 3500ms ease-in-out infinite;
  z-index: 3;
}
.hero-badge strong { font-size: 26px; line-height: 1; font-weight: 800; }
.hero-badge small {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}
@keyframes badgeBob {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-5px); }
}
@media (min-width: 780px) {
  .hero-badge { width: 100px; height: 100px; right: -16px; }
  .hero-badge strong { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-badge { animation: none !important; }
}

/* HERO sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle, #fff8dc 0%, rgba(246, 226, 122, 0.9) 40%, rgba(200, 147, 31, 0) 70%);
  border-radius: 50%;
  animation: sparkleFloat 6s ease-in-out infinite;
  opacity: 0;
}
.sparkle.s1 { top: 8%;  left: 12%; animation-delay: 0s;   }
.sparkle.s2 { top: 24%; left: 78%; animation-delay: 1.1s; width: 4px; height: 4px; }
.sparkle.s3 { top: 62%; left: 22%; animation-delay: 2.2s; }
.sparkle.s4 { top: 78%; left: 68%; animation-delay: 0.6s; width: 5px; height: 5px; }
.sparkle.s5 { top: 38%; left: 50%; animation-delay: 3.0s; width: 4px; height: 4px; }
.sparkle.s6 { top: 14%; left: 88%; animation-delay: 1.7s; }
@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20%      { opacity: 1; transform: translateY(-8px) scale(1.2); }
  60%      { opacity: 0.6; transform: translateY(-22px) scale(1); }
}
.hero > .hero-grid { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; opacity: 0; }
}

/* STATS STRIP */
.stats-strip {
  margin: 28px 0 8px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(246, 226, 122, 0.18) 0%, rgba(246, 226, 122, 0) 60%),
    radial-gradient(40% 80% at 100% 100%, rgba(200, 147, 31, 0.20) 0%, rgba(200, 147, 31, 0) 60%);
  pointer-events: none;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(34px, 7vw, 50px);
  line-height: 1;
  background: linear-gradient(180deg, #fff6dc 0%, #c8931f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--gold-soft);
  margin-left: 2px;
  vertical-align: top;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 234, 215, 0.72);
}
.stat-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent 0%, rgba(246, 226, 122, 0.35) 50%, transparent 100%);
  flex: 0 0 auto;
}
@media (max-width: 520px) {
  .stats-strip { padding: 18px 12px; }
  .stat-label { font-size: 10px; }
}
@media (min-width: 720px) {
  .stat-label { font-size: 12.5px; }
  .stats-strip { padding: 28px 24px; gap: 14px; }
}

/* TESTIMONIAL */
.testimonial {
  position: relative;
  margin: 36px auto 8px;
  max-width: 760px;
  padding: 36px 28px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.testimonial-quote-mark {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #f6e27a 0%, #c8931f 100%);
  color: #1a1205;
  border-radius: 50%;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  padding-top: 18px;
  box-shadow: 0 10px 24px rgba(200, 147, 31, 0.35);
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 3.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-700) 100%);
  color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 18px;
}
.testimonial-author > div:not(.testimonial-stars) {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonial-author strong { font-size: 15px; color: var(--ink); }
.testimonial-author span { font-size: 13px; color: var(--muted); }
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  margin-left: 8px;
}
.testimonial-stars svg { width: 18px; height: 18px; }

/* HERO copy alignment refinement on mobile */
.hero-copy { gap: 14px !important; }
@media (min-width: 780px) {
  .hero-copy { gap: 18px !important; }
}

/* ============================================================
   FREE VALUATION RIBBON — impossible to miss
   ============================================================ */
.free-banner {
  position: relative;
  margin: 28px 0 12px;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #c8931f 0%, #f6e27a 50%, #c8931f 100%);
  background-size: 200% 200%;
  animation: bannerShine 5s ease-in-out infinite;
  box-shadow: 0 24px 48px rgba(200, 147, 31, 0.35);
}
@keyframes bannerShine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.free-banner-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 0% 50%, rgba(255, 255, 255, 0.45) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(40% 80% at 100% 50%, rgba(255, 246, 220, 0.5) 0%, rgba(255,246,220,0) 60%);
  pointer-events: none;
}
.free-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 18px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: inherit;
}
.free-banner-coin {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff8dc 0%, #f6e27a 30%, #c8931f 70%, #8a6413 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.6),
    inset 0 -6px 18px rgba(138, 100, 19, 0.45),
    0 12px 24px rgba(138, 100, 19, 0.35);
  animation: coinBob 3.2s ease-in-out infinite;
  flex: 0 0 auto;
  position: relative;
}
.free-banner-coin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: coinShine 3.2s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.free-banner-coin-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 26px;
  color: #5a3b0a;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
@keyframes coinBob {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6), inset 0 -6px 18px rgba(138,100,19,0.45), 0 12px 24px rgba(138,100,19,0.35); }
  50%      { transform: translateY(-4px) scale(1.04); box-shadow: inset 0 0 0 3px rgba(255,255,255,0.7), inset 0 -8px 22px rgba(138,100,19,0.5), 0 18px 32px rgba(138,100,19,0.5); }
}
@keyframes coinShine {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .free-banner { animation: none; }
  .free-banner-coin { animation: none; }
}
.free-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #2a1a04;
}
.free-banner-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a3b0a;
  opacity: 0.85;
}
.free-banner-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(20px, 4.4vw, 30px);
  line-height: 1.15;
  color: #1a1205;
  letter-spacing: -0.01em;
}
.free-banner-hl {
  position: relative;
  white-space: nowrap;
  display: inline-block;
  padding: 0 4px;
  background: #1a1205;
  color: #f6e27a;
  border-radius: 6px;
  transform: rotate(-1deg);
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.free-banner-sub {
  font-size: 14px;
  color: #2a1a04;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.92;
}
@media (min-width: 720px) {
  .free-banner-inner {
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 26px 28px;
  }
  .free-banner-coin { width: 110px; height: 110px; }
  .free-banner-coin-num { font-size: 34px; }
  .free-banner-sub { font-size: 16px; }
}

/* ============================================================
   REVIEWS GRID — 12 testimonials
   ============================================================ */
.reviews { padding: 36px 0 8px; }
.reviews-carousel {
  position: relative;
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 12px;
  flex: 1;
  min-width: 0;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-card {
  flex: 0 0 calc(100% - 8px);
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 640px) {
  .reviews-track .review-card { flex: 0 0 calc(50% - 7px); }
  .reviews-track { gap: 14px; }
}
@media (min-width: 960px) {
  .reviews-track .review-card { flex: 0 0 calc(33.333% - 12px); }
  .reviews-track { gap: 18px; }
}
.reviews-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  align-self: center;
  box-shadow: var(--shadow-sm);
  transition: background 160ms var(--ease), transform 160ms var(--ease), border-color 160ms var(--ease);
}
.reviews-arrow:hover { background: var(--gold-soft); border-color: var(--gold); }
.reviews-arrow:active { transform: scale(0.94); }
.reviews-arrow svg { width: 20px; height: 20px; }
@media (max-width: 639px) {
  .reviews-arrow { display: none; }
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.reviews-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 24, 39, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 200ms var(--ease), transform 200ms var(--ease), width 200ms var(--ease);
}
.reviews-dot.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.05);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-700) 100%);
  opacity: 0.85;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.12);
  border-color: var(--gold-soft);
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  align-items: center;
}
.review-stars svg { width: 18px; height: 18px; }
.review-star-half {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.review-star-half__ghost {
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  opacity: 0.42;
}
.review-star-half__fill-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.review-star-half__fill-wrap svg {
  width: 18px;
  height: 18px;
  display: block;
}
.review-stars svg.review-star--empty {
  opacity: 0.5;
}
.review-card p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-700) 100%);
  color: var(--gold-soft);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  flex: 0 0 auto;
}
.review-avatar--anon {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: #f1f5f9;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.review-card footer > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.review-card footer strong { font-size: 15px; color: var(--ink); }
.review-card footer small { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   SECTION-TO-SECTION GRADIENT FADES
   Soft transitions between sections that have different bg colors
   ============================================================ */
.free-banner { position: relative; }
.free-banner::before {
  content: "";
  position: absolute;
  top: -32px; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(246, 226, 122, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}
.free-banner::after {
  content: "";
  position: absolute;
  bottom: -32px; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(246, 226, 122, 0.20) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* HOW section — bg-soft, fade in/out gently from siblings */
.how::before {
  height: 32px !important;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%) !important;
}
.how::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

/* REVIEWS — sit on white, soft fade from how (cream) above */
.reviews {
  position: relative;
  padding-top: 48px !important;
}

/* INQUIRY — soft fade if it carries a different background */
.inquiry { position: relative; }
.inquiry::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: linear-gradient(180deg, rgba(243, 234, 215, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================================
   LANDING CONFIRM — first screen the user sees:
   event info + big "I will come" button
   ============================================================ */
.landing-confirm {
  padding: 28px 18px 36px;
  margin: 0 calc(var(--container-px) * -1) 22px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(246, 226, 122, 0.35) 0%, rgba(246, 226, 122, 0) 70%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 720px) {
  .landing-confirm { padding: 44px 18px 48px; }
}

.landing-confirm .section-head {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding: 0 var(--container-px);
}

.landing-confirm .event-card,
.event-card--lp {
  max-width: 720px;
  margin: 18px auto 22px;
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 22px 24px 24px;
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.10);
  position: relative;
  overflow: hidden;
}
.event-card--lp::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-700) 100%);
}
.event-card--lp .event-card-head {
  text-align: center;
  margin-bottom: 16px;
}
.event-card--lp .event-card-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 5vw, 34px);
  color: var(--ink);
  margin-top: 4px;
}
.event-card--lp .event-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  margin: 0 0 16px;
  padding: 0;
}
@media (min-width: 560px) {
  .event-card--lp .event-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.event-card--lp .event-meta div {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-2);
}
.event-card--lp .event-meta dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  margin-bottom: 4px;
}
.event-card--lp .event-meta dd {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.event-card--lp .event-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.event-card--lp .event-actions .btn {
  flex: 1 1 calc(50% - 4px);
  min-width: 0;
  font-size: 14px;
  padding: 10px 14px;
  white-space: nowrap;
}

.landing-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--success) 0%, var(--success-600) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 18px 36px rgba(22, 101, 52, 0.28),
              inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 140ms var(--ease), box-shadow 240ms var(--ease),
              background 240ms var(--ease);
  position: relative;
  overflow: hidden;
  animation: landingPulse 2400ms ease-in-out infinite;
}
.landing-confirm-btn svg { width: 22px; height: 22px; flex: 0 0 auto; }
.landing-confirm-btn:hover { filter: brightness(1.05); }
.landing-confirm-btn:active { transform: translateY(1px); }
.landing-confirm-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
  pointer-events: none;
}
.landing-confirm-btn:hover::after { transform: translateX(120%); }

.landing-confirm-btn.is-confirmed {
  background: linear-gradient(135deg, #c8931f 0%, #8a6413 100%);
  box-shadow: 0 14px 28px rgba(200, 147, 31, 0.32);
  animation: none;
}

@keyframes landingPulse {
  0%, 100% { box-shadow: 0 18px 36px rgba(22, 101, 52, 0.28), inset 0 -3px 0 rgba(0,0,0,0.15), 0 0 0 0 rgba(22, 101, 52, 0.45); }
  50%      { box-shadow: 0 22px 42px rgba(22, 101, 52, 0.36), inset 0 -3px 0 rgba(0,0,0,0.15), 0 0 0 14px rgba(22, 101, 52, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .landing-confirm-btn { animation: none; }
}

.landing-confirm-lock {
  max-width: 720px;
  margin: 14px auto 0;
  padding: 12px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--success);
  background: var(--success-bg);
  border-radius: 12px;
}

.landing-confirm-fine {
  max-width: 620px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   EVENT SESSIONS — multiple venues / dates per city
   ============================================================ */
.event-sessions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.event-session {
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.event-session-meta {
  margin: 0;
}
.event-session-date {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.25;
}
.event-session-venue {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
}
.event-session-address {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.event-session-map {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms var(--ease), transform 120ms var(--ease);
}
.event-session-map::after {
  content: "↗";
  font-size: 13px;
}
.event-session-map:hover { background: var(--gold-700); }
.event-session-map:active { transform: scale(0.97); }
@media (min-width: 560px) {
  .event-session-date { font-size: 18px; }
}

/* ============================================================
   MULTI-VENUE: outer card becomes a transparent container so
   each session renders as its OWN standalone tablet.
   ============================================================ */
.event-card--split {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 16px !important;
}
.event-card--split::before { display: none !important; }
.event-card--split .event-card-head {
  text-align: center;
  margin-bottom: 2px;
}
.event-card--split .event-sessions {
  margin-top: 0;
}

/* ============================================================
   LANGUAGE SWITCHER (LT / LV / ET / RU)
   ============================================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  flex: 0 0 auto;
}
.lang-switch-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background 140ms var(--ease), color 140ms var(--ease);
}
.lang-switch-btn:hover { color: var(--ink); background: rgba(255,255,255,0.6); }
.lang-switch-btn.is-active {
  background: var(--ink);
  color: var(--gold-soft);
}
@media (max-width: 560px) {
  .lang-switch { margin-left: 6px; padding: 2px; }
  .lang-switch-btn { padding: 5px 7px; font-size: 11px; }
}
