/* ==========================================================================
   THE GREATEST SHOW OF ALL — shared stylesheet
   Design direction: premium traveling theatrical/circus experience.
   References: Cirque du Soleil, The Thorn — cinematic, dark, editorial.
   ========================================================================== */

:root {
  /* core palette */
  --ink: #05070c;
  --navy: #0a0f1c;
  --navy-2: #121a2e;
  --navy-3: #1a2440;
  --curtain: #6e1423;
  --curtain-light: #9c2c3d;
  --gold: #d4a437;
  --gold-light: #f0d38a;
  --gold-deep: #9c7220;
  --ivory: #f6f1e6;
  --ivory-dim: #ece4d2;
  --text-dark: #1c1a15;
  --text-muted: #6b6558;
  --line: rgba(255,255,255,0.14);
  --line-dark: rgba(0,0,0,0.08);

  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --container-narrow: 780px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
}

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
}
.rule.left { margin-left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #241703;
  box-shadow: 0 10px 30px -8px rgba(212,164,55,0.55);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,0.35);
}
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 12px 24px; font-size: 0.85rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cta-row.center { justify-content: center; }

/* ---------- header / nav ---------- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5,7,12,0.4);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease;
}
header.site-header.scrolled {
  background: rgba(5,7,12,0.88);
}
nav.navbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.brand .brand-mark { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: #e8e6df;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .brand { font-size: 0.82rem; letter-spacing: 0.03em; max-width: 190px; line-height: 1.3; }
  nav.navbar { padding: 14px 20px; }
  .nav-cta { gap: 12px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,7,12,0.98);
    padding: 24px 28px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ---------- hero (full-bleed cinematic) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 150px 24px 90px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,6,11,0.55) 0%, rgba(4,6,11,0.62) 40%, rgba(4,6,11,0.94) 100%);
}
.hero-content { position: relative; max-width: 860px; z-index: 2; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero .subhead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #e4e2da;
  max-width: 680px;
  margin: 0 auto 14px;
}
.hero .tagline {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 22px 0 8px;
  font-weight: 700;
}
.hero .coming {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 34px;
}
.hero .microcopy {
  margin-top: 22px;
  font-size: 0.85rem;
  color: #b9b6ac;
  letter-spacing: 0.02em;
}
.hero-logo-lockup {
  width: min(92%, 480px);
  margin: 6px auto 24px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.6));
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* smaller inner-page hero (for subpages) */
.page-hero {
  position: relative;
  padding: 168px 24px 90px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,12,0.38) 0%, rgba(5,7,12,0.5) 55%, rgba(5,7,12,0.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  background: rgba(4,6,11,0.62);
  backdrop-filter: blur(4px);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  padding: 40px 44px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin: 16px 0 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.page-hero p.lede { color: #e8e6de; font-size: 1.08rem; max-width: 680px; margin: 0 auto; }
@media (max-width: 620px) {
  .page-hero-content { padding: 28px 24px; }
}

/* ---------- sections ---------- */
.section { padding: 108px 0; position: relative; }
.section.tight { padding: 76px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-ink { background: var(--ink); color: #fff; }
.section-ivory { background: var(--ivory); color: var(--text-dark); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
.section-dark .section-head h2,
.section-ink .section-head h2 { color: #fff; }
.section-head p.lede {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--text-muted);
}
.section-dark .section-head p.lede,
.section-ink .section-head p.lede { color: #c7c4ba; }

.eyebrow-center { display: block; text-align: center; }

/* full-bleed image-background section */
.bleed-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
}
.bleed-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,12,0.42) 0%, rgba(5,7,12,0.5) 100%);
}
.bleed-section > .container,
.bleed-section > .container-narrow {
  position: relative;
  z-index: 2;
  background: rgba(4,6,11,0.6);
  backdrop-filter: blur(4px);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  padding: 52px 56px;
}
.bleed-section h2, .bleed-section p { text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
@media (max-width: 620px) {
  .bleed-section > .container,
  .bleed-section > .container-narrow { padding: 34px 26px; }
}

/* ---------- numbered steps (replaces boxed cards) ---------- */
.steps {
  display: grid;
  gap: 44px;
  margin-top: 10px;
}
.step {
  display: grid;
  grid-template-columns: minmax(84px, max-content) 1fr;
  gap: 26px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.section-dark .step, .section-ink .step, .bleed-section .step { border-bottom-color: var(--line); }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.step p { color: var(--text-muted); }
.section-dark .step p, .section-ink .step p, .bleed-section .step p { color: #c7c4ba; }

/* ---------- icon / feature rows ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
  margin-top: 8px;
}
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature {
  padding-top: 22px;
  border-top: 2px solid var(--gold);
}
.feature h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
}
.feature p { color: var(--text-muted); font-size: 0.98rem; }
.section-dark .feature p, .section-ink .feature p, .bleed-section .feature p { color: #c7c4ba; }

/* ---------- weekend schedule grid ---------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.schedule-day {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
}
.schedule-day.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,164,55,0.3);
  background: rgba(212,164,55,0.05);
}
.schedule-day h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .time {
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.schedule-row .event { color: #e8e6df; text-align: right; }
.schedule-row.highlight {
  background: rgba(212,164,55,0.1);
  margin: 6px -12px;
  padding: 12px;
  border-radius: 6px;
  flex-direction: column;
  text-align: center;
  gap: 4px;
}
.schedule-row.highlight .time { text-align: center; }
.schedule-row.highlight .event { text-align: center; color: var(--gold-light); font-weight: 600; }
@media (max-width: 820px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

/* ---------- role cards (equipping sessions) ---------- */
.role-card { text-align: center; }
.role-card .role-badge {
  width: 96px;
  height: auto;
  margin: 0 auto 16px;
}
.role-card .role-verse {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.role-card h3 { font-family: var(--font-display); font-size: 1.3rem; }

/* simple tag pill list (what you'll experience) */
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.pill {
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: #eee;
}
.section-ivory .pill { border-color: rgba(0,0,0,0.18); color: var(--text-dark); }

/* ---------- editorial split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img, .split-media video {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
}
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin: 14px 0 20px; }
.split p { color: var(--text-muted); margin-bottom: 16px; }
.section-dark .split p, .section-ink .split p { color: #c7c4ba; }
.split p.emph { color: var(--text-dark); font-weight: 600; }
.section-dark .split p.emph, .section-ink .split p.emph { color: #fff; }

/* ---------- pull quote ---------- */
.pull-quote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  max-width: 800px;
  margin: 70px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.section-ivory .pull-quote { border-top-color: var(--line-dark); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 3px; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; height: 616px; }

/* ---------- tour / city cards ---------- */
.city-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 40px 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.city-card .city-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}
.city-card .city-note { color: #b9b6ac; font-size: 0.95rem; font-style: italic; margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 110px 24px;
  color: #fff;
  background: radial-gradient(ellipse at 30% 0%, rgba(212,164,55,0.16), transparent 60%), var(--ink);
  position: relative;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 16px 0 26px; color: #fff; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; color: #cbc8bf; font-size: 1.05rem; }

/* ---------- forms ---------- */
.form-card {
  max-width: 680px;
  margin: 50px auto 0;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 46px;
  text-align: left;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.25);
}
.section-dark .form-card, .section-ink .form-card, .bleed-section .form-card {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fff;
  color: var(--text-dark);
}
.section-dark .form-group input, .section-dark .form-group textarea, .section-dark .form-group select,
.section-ink .form-group input, .section-ink .form-group textarea, .section-ink .form-group select,
.bleed-section .form-group input, .bleed-section .form-group textarea, .bleed-section .form-group select {
  background: rgba(255,255,255,0.06);
  border-color: var(--line);
  color: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; text-align: center; }
.section-dark .form-note, .section-ink .form-note, .bleed-section .form-note { color: #a9a69c; }

/* ---------- amount tiles (give page) ---------- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 26px;
}
.amount-tile {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 18px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(255,255,255,0.03);
  transition: border-color .15s ease, background .15s ease;
}
.amount-tile.selected, .amount-tile:hover {
  border-color: var(--gold);
  background: rgba(212,164,55,0.12);
  color: var(--gold-light);
}

/* progress bar */
.progress-wrap { max-width: 620px; margin: 0 auto; }
.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}
.progress-labels {
  display: flex; justify-content: space-between;
  margin-top: 12px; font-size: 0.9rem; color: #cbc8bf;
}
.progress-labels strong { color: #fff; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line-dark); }
.section-dark .faq-item, .section-ink .faq-item { border-bottom-color: var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  color: inherit;
}
.faq-q .icon { color: var(--gold); font-size: 1.3rem; transition: transform 0.2s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--text-muted);
}
.section-dark .faq-a, .section-ink .faq-a { color: #c7c4ba; }
.faq-a p { padding-bottom: 26px; max-width: 700px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- signature block ---------- */
.signature { margin-top: 46px; }
.signature .name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.signature .role { color: var(--text-muted); font-size: 0.92rem; margin-top: 4px; }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #a9a69c;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; color: #a9a69c; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: #a9a69c; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: #a9a69c; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- reveal-on-scroll ----------
   Content is visible by default (no hidden-until-JS state) so nothing can
   get stranded invisible if the animation never fires. The .in class adds
   a very subtle finishing touch only when JS does run. */
.reveal { opacity: 1; transform: none; }
.reveal:not(.in) { opacity: 1; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- misc utility ---------- */
.mt-0 { margin-top: 0 !important; }
.center-text { text-align: center; }
.max-narrow { max-width: 700px; margin-left: auto; margin-right: auto; }
.badge-note {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .feature-grid, .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .tall { height: 300px; grid-row: span 1; }
}
@media (max-width: 620px) {
  .section { padding: 76px 0; }
  .feature-grid, .feature-grid.cols-4, .feature-grid.cols-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .city-card { padding: 30px 26px; flex-direction: column; align-items: flex-start; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .form-card { padding: 30px 24px; }
  .step { grid-template-columns: minmax(56px, max-content) 1fr; gap: 16px; }
  .step-num { font-size: 1.9rem; }
}
