/* Coalition + independent location sites */
:root {
  --ink: #1a1917;
  --muted: #6a6560;
  --line: #e4dfd8;
  --bg: #f4f1ec;
  --paper: #fffcf8;
  --card: #fff;
  --accent: #3d3a36;
  --accent-ink: #fff;
  --hero: #1a1917;
  --radius: 8px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --max: 1240px;
  --header-h: 72px;
}
.page-home {
  --accent: #1a1917;
  --accent-ink: #fff;
  --hero: #141312;
  --bg: #f3f0ea;
}

.theme-krokus {
  --accent: #c4784a;
  --accent-ink: #fff;
  --hero: #1c1612;
  --bg: #f6f1ea;
  --serif: "Playfair Display", Georgia, serif;
}
.theme-silver {
  --accent: #5e7a66;
  --accent-ink: #fff;
  --hero: #2b2430;
  --bg: #f1eee8;
  --serif: "Cormorant Garamond", Georgia, serif;
}
.theme-legend {
  --accent: #b49a78;
  --accent-ink: #1a1917;
  --hero: #2a2724;
  --bg: #f3efe8;
  --serif: "Cormorant Garamond", Georgia, serif;
}
.theme-psh {
  --accent: #7a2436;
  --accent-ink: #fff;
  --hero: #2a181c;
  --bg: #f5efe8;
  --serif: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  scroll-padding-bottom: 80px;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.wrap { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* ===== HEADER: homepage = light/neutral; locations = themed ===== */
.top {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,252,248,.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.page-home .top { background: rgba(243,240,234,.94); }
.theme-krokus .top, .theme-silver .top, .theme-legend .top, .theme-psh .top {
  background: color-mix(in srgb, var(--hero) 88%, transparent);
  color: #f6f1ea;
  border-bottom-color: rgba(255,255,255,.08);
}
.top__in {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--header-h);
  position: relative;
}
.logo { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo strong { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.logo small { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.theme-krokus .logo small, .theme-silver .logo small, .theme-legend .logo small, .theme-psh .logo small {
  color: rgba(255,255,255,.55);
}
.nav {
  display: flex; gap: 18px; margin-left: auto;
  font-size: 13px; font-weight: 650; letter-spacing: .02em;
}
.nav a { opacity: .72; white-space: nowrap; }
.nav a:hover, .nav a.is-on { opacity: 1; }
.burger {
  display: none; width: 42px; height: 42px; margin-left: auto;
  border: 1px solid var(--line); background: transparent; border-radius: 10px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 10px;
}
.burger span { display: block; height: 1.5px; background: currentColor; }
.theme-krokus .burger, .theme-silver .burger, .theme-legend .burger, .theme-psh .burger {
  border-color: rgba(255,255,255,.2);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 6px; font-weight: 700; font-size: 13px;
  border: 0; cursor: pointer; letter-spacing: .02em; white-space: nowrap;
  transition: transform .15s, opacity .15s;
}
.btn:active { transform: scale(.98); }
.btn--p { background: var(--accent); color: var(--accent-ink); }
.page-home .btn--p { background: #1a1917; color: #fff; }
.btn--g {
  background: transparent; border: 1px solid currentColor; opacity: .9;
}
.page-home .btn--g { color: var(--ink); }
.page-home .hero .btn--g {
  color: #f7f3ee;
  border-color: rgba(255,255,255,.65);
  background: rgba(0,0,0,.22);
}
.theme-krokus .btn--g, .theme-silver .btn--g, .theme-legend .btn--g, .theme-psh .btn--g {
  color: #f6f1ea; border-color: rgba(255,255,255,.28);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: min(78vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #f7f3ee; overflow: hidden;
  background: var(--hero);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  filter: saturate(.92) contrast(1.05);
}
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(247,243,238,.78);
  max-width: 46ch;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.62) 70%, rgba(0,0,0,.78) 100%);
}
.page-home .hero__bg::after {
  background: linear-gradient(90deg, rgba(16,15,14,.82) 0%, rgba(16,15,14,.35) 55%, rgba(16,15,14,.2) 100%);
}
.hero__in { position: relative; z-index: 1; padding: 48px 0 56px; }
.page-home .hero__in { padding-bottom: 16px; }
.kicker {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 10px;
}
.hero .kicker { color: #e8d5b8; }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.05;
  max-width: 14ch; letter-spacing: -.02em;
}
.page-home .hero h1 { max-width: 16ch; }
}
.hero .lead { margin-top: 16px; max-width: 42ch; font-size: 17px; color: #e6ddd3; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 16px; font-size: 13px; color: #d5ccc2; }
.hero__cta { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }

.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 8px; margin-bottom: 48px;
  position: relative; z-index: 1;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: -1px;
}
.stat { background: var(--paper); padding: 22px 18px; }
.stat b { display: block; font-family: var(--serif); font-size: 28px; }
.stat span { color: var(--muted); font-size: 12px; letter-spacing: .04em; }

.sec { padding: 72px 0; }
.sec h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px); margin: 6px 0 28px; letter-spacing: -.02em;
}
.sec-head { max-width: 46ch; margin-bottom: 8px; color: var(--muted); }
.links-inline { margin-top: 20px; }
.links-inline a { text-decoration: underline; text-underline-offset: 3px; }

.grid { display: grid; gap: 18px; }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }

.loc-card {
  position: relative; min-height: 280px; border-radius: 8px; overflow: hidden;
  color: #fff; display: flex; align-items: flex-end;
}
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loc-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72) 100%);
}
.loc-card__b { position: relative; z-index: 1; padding: 22px; }
.loc-card h3 { font-family: var(--serif); font-size: 26px; }
.loc-card p { font-size: 14px; color: #ddd4ca; margin-top: 6px; }

.places { display: grid; gap: 56px; }
.place {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center;
}
.place:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
.place:nth-child(even) .place__photo { order: 2; }
.place__photo {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; background: #ddd;
}
.place__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.place__body h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); margin: 6px 0 12px; }
.place__who { margin: 14px 0 18px; }
.place__who li { list-style: none; padding: 6px 0 6px 16px; position: relative; color: var(--muted); font-size: 15px; }
.place__who li::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.place__meta { font-size: 14px; margin-bottom: 18px; color: var(--ink); }
.place__cta { display: flex; flex-wrap: wrap; gap: 10px; }

.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.card img { width: 100%; height: 180px; object-fit: cover; }
.card__b { padding: 18px; }
.card h3 { font-size: 18px; }
.meta { color: var(--muted); font-size: 13px; margin: 6px 0 8px; }
.chip { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }

.num-list { display: grid; gap: 16px; }
.num-list li { list-style: none; display: grid; grid-template-columns: 42px 1fr; gap: 12px; }
.num-list b {
  font-family: var(--serif); font-size: 22px; color: var(--accent);
}
.list { display: grid; gap: 10px; }
.list li { list-style: none; padding-left: 16px; position: relative; }
.list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
}

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.gallery a {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  cursor: zoom-in;
  display: block;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.mosaic a {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 3 / 2; display: block; color: #fff;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.mosaic span {
  position: absolute; left: 12px; bottom: 12px; z-index: 1;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.fact { background: var(--paper); padding: 20px 16px; }
.fact b { display: block; font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.fact span { color: var(--muted); font-size: 12px; }
.prose { max-width: 68ch; font-size: 17px; }
.prose p { margin: 0 0 14px; }
.amen { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.amen li { list-style: none; padding-left: 16px; position: relative; }
.amen li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { font-size: 13px; }

.apt { overflow: hidden; }
.apt .cover { height: 280px; width: 100%; object-fit: cover; object-position: center 40%; }
.apt.renovation { filter: grayscale(.35); }
.badge {
  font-size: 11px; font-weight: 800; background: var(--ink); color: #fff;
  padding: 4px 9px; border-radius: 999px; display: inline-block;
}
.badge--wait { background: #8a6a3a; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { padding: 22px; border-top: 2px solid var(--accent); background: var(--paper); border-radius: 0 0 16px 16px; }
.step b { font-family: var(--serif); font-size: 32px; display: block; }

.faq details {
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 8px; color: var(--muted); }

.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 14px 0 0; font-size: 13px; color: var(--muted);
}
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.reno {
  margin-top: 18px; border: 1px dashed var(--line); border-radius: 8px;
  padding: 12px 16px; background: var(--paper);
}
.reno summary { cursor: pointer; font-weight: 700; color: var(--muted); }
.reno[open] summary { margin-bottom: 12px; }
.dates { display: grid; gap: 10px; margin: 0; padding: 0; max-width: 720px; }
.dates li {
  list-style: none; padding: 14px 16px; background: var(--card);
  border: 1px solid var(--line); border-radius: 8px;
}

.map-note {
  padding: 28px; background: var(--paper); border-radius: 16px; border: 1px solid var(--line);
}

.sec--guest { background: var(--paper); }
.guest {
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px 48px; align-items: center;
}
.quote {
  margin: 0; padding: 0; background: transparent; border: 0;
}
.quote p {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3; max-width: 22ch;
  color: var(--ink);
}
.quote footer { margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.quote a { text-decoration: underline; text-underline-offset: 3px; }
.marks {
  list-style: none; display: grid; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marks a {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.marks li:last-child a { border-bottom: 0; }
.marks em {
  font-family: var(--serif); font-style: normal; font-size: 28px; font-weight: 500;
  color: #c4784a;
}
.theme-krokus .marks em { color: var(--accent); }
.marks span {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.look {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start;
}
.showreel {
  width: 100%; border-radius: 12px; background: #111; aspect-ratio: 16 / 9;
}
.mapframe {
  width: 100%; height: 320px; border: 0; border-radius: 12px;
  background: var(--line);
}
.bookband {
  background: #141210; color: #f7f3ee; padding: 40px 0;
}
.bookband .kicker { color: #e8d5b8; }
.bookband h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); margin: 6px 0 10px; }
.bookband p { color: rgba(247,243,238,.72); max-width: 46ch; }
.bookband__in {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.bookband .btn--p { background: #fff; color: #141210; }

.sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(20,18,16,.94); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.sticky a { flex: 1; text-align: center; color: #fff; }
.sticky .btn--p { background: var(--accent); color: var(--accent-ink); }
.sticky .btn--g,
.page-home .sticky .btn--g {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: #2c2825;
}
.page-home .sticky .btn--p {
  background: #fff;
  color: #1a1917;
}

.foot {
  padding: 48px 0 40px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.foot a { display: block; margin: 6px 0; }
.foot strong { color: var(--ink); display: block; margin-bottom: 8px; }

.lightbox {
  position: fixed; inset: 0; z-index: 80; background: rgba(10,9,8,.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.is-on { display: flex; }
.lightbox img { max-width: min(96vw, 1400px); max-height: 90vh; object-fit: contain; }
.lightbox button {
  position: absolute; top: 16px; right: 16px; background: transparent; color: #fff;
  border: 0; font-size: 28px; cursor: pointer;
}

.doc { padding: 40px 0 80px; }
.doc article {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(20px, 4vw, 40px); max-width: 820px;
}
.doc h1 { font-family: var(--serif); font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.doc h2 { font-family: var(--serif); margin: 28px 0 10px; }
.doc p, .doc li { margin: 8px 0; color: #3a3734; }

.hero--loc { min-height: min(52vh, 520px); }
.studio {
  display: grid; grid-template-columns: minmax(200px, 280px) 1fr; gap: 22px 28px;
  align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line);
}
.studio h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 8px; }
.studio__blurb { font-size: 15px; color: var(--muted); line-height: 1.5; }
.studio__hero { display: none; }
.studio-gal { grid-template-columns: repeat(4, 1fr); gap: 6px; }
.studio-gal a { aspect-ratio: 4 / 3; }
.studio-main {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.studio-main a {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; display: block; background: #ddd;
}
.studio-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.studio-thumbs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.studio-thumbs a {
  width: 76px; height: 56px; flex: 0 0 auto; overflow: hidden; border-radius: 6px;
  display: block; background: #ddd; opacity: .92;
}
.studio-thumbs a:hover { opacity: 1; }
.studio-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.studio__void {
  aspect-ratio: 16 / 9; max-height: 160px; width: 100%;
  background: #111; border-radius: 8px;
}
.studio__note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.sec--studios { padding-top: 40px; padding-bottom: 24px; }

.theme-krokus { --paper: #fbf6f0; }
.theme-krokus .sec--studios { background: #fbf6f0; }
.theme-silver { --bg: #eef1ec; --paper: #f7f8f4; --accent: #4d6a55; }
.theme-silver .top { background: #2b2430; }
.theme-silver .sec--studios { background: #f4f6f1; }
.theme-legend { --bg: #ebe6de; --paper: #f7f3ec; --accent: #9a815f; }
.theme-legend .hero { background: #1f1c19; }
.theme-legend .sec--studios { background: #f3eee6; }
.theme-psh { --bg: #f3ebe6; --paper: #faf4ef; --accent: #6e1d2e; }
.theme-psh .hero { background: #2a151a; }
.theme-psh .sec--studios { background: #f7efe9; }

@media (max-width: 980px) {
  .g-4, .g-3, .steps, .foot__grid, .look, .bookband__in, .guest { grid-template-columns: 1fr 1fr; }
  .bookband__in { display: grid; }
  .stats, .facts, .mosaic, .gallery { grid-template-columns: 1fr 1fr; }
  .top__in > .btn { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    z-index: 70;
    box-shadow: 0 18px 36px rgba(0,0,0,.14);
  }
  .theme-krokus .nav, .theme-silver .nav, .theme-legend .nav, .theme-psh .nav {
    background: var(--hero);
    color: #f6f1ea;
    border-bottom-color: rgba(255,255,255,.08);
  }
  .nav a { opacity: 1; padding: 8px 0; }
  .nav.is-open { display: flex; }
  .burger { display: flex; }
  .sticky { display: flex; }
  .foot { padding-bottom: 96px; }
  .amen { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .sec { padding: 48px 0; }
  #rooms, #blocks { scroll-margin-top: calc(var(--header-h) + 8px); }
}
@media (max-width: 900px) {
  .look, .guest { grid-template-columns: 1fr; }
  .place, .place:nth-child(even) { grid-template-columns: 1fr; }
  .place:nth-child(even) .place__photo { order: 0; }
  .studio { grid-template-columns: 1fr; gap: 16px; }
  .studio-gal { grid-template-columns: repeat(3, 1fr); }

  /* Homepage: photo + text, mosaic as its own 2×2 strip — not overlaid on the hero */
  .page-home .hero {
    min-height: 0;
    justify-content: flex-start;
    background: var(--bg);
  }
  .page-home .hero__bg {
    position: relative;
    inset: auto;
    height: 70vh;
    height: min(70svh, 560px);
    min-height: 400px;
    transform: none;
    flex: 0 0 auto;
  }
  .page-home .hero__bg::after {
    background: linear-gradient(180deg, rgba(16,15,14,.18) 0%, rgba(16,15,14,.5) 42%, rgba(16,15,14,.84) 100%);
  }
  .page-home .hero__in {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(100% - 32px, var(--max));
    height: 70vh;
    height: min(70svh, 560px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 0 24px;
    box-sizing: border-box;
  }
  .page-home .mosaic {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 4px;
    background: var(--bg);
    color: var(--ink);
  }
  .hero--loc {
    min-height: 58vh;
    min-height: min(58svh, 500px);
  }
  .hero h1 { max-width: none; }
}
@media (max-width: 640px) {
  .studio-main {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .studio-main a:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
  .studio-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .studio-thumbs a {
    width: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .g-4, .g-3, .g-2, .steps, .foot__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero .lead { font-size: 15px; }
  .loc-card { min-height: 240px; }
  .wrap { width: min(100% - 24px, var(--max)); }
  .page-home .hero__in { width: min(100% - 24px, var(--max)); }
  .compare { font-size: 13px; }
  .place__photo { aspect-ratio: 16 / 10; }
  .btn { white-space: nowrap; }
}
