:root {
  --bg: #0b0d10;
  --bg-deep: #050607;
  --panel: #15181d;
  --panel-2: #1d2229;
  --panel-3: #101318;
  --border: #343b45;
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f4f6;
  --muted: #aeb8c4;
  --muted-2: #8f9aa6;
  --silver: #dce2e8;
  --silver-dark: #a8b2bd;
  --good: #72d68a;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(207, 213, 220, 0.06) 0%, transparent 34%),
    linear-gradient(180deg, #080a0d 0%, #101317 55%, #0b0d10 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Header */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 7, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo,
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text,
.brand span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 950;
}

.brand small,
.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.15;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--text);
}

/* Page shell */

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
}

.page,
.hero,
.hero-copy,
.section,
.section-head,
.hero-card,
.content-card,
.wide-card,
.cta-card,
.contact-card,
.split-card,
.mini-card,
.feature-card,
.stat-card {
  min-width: 0;
  max-width: 100%;
}

/* Type */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  text-transform: uppercase;
  font-weight: 950;
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6.1vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

strong {
  color: var(--text);
}

/* Shared UI */

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(207, 213, 220, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 14px rgba(114, 214, 138, 0.5);
}

.kicker::before {
  content: none;
}

.btn,
.button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    opacity 140ms ease;
}

.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  transform: translateY(-1px);
}

.btn:active,
.button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary,
.button-primary {
  background: linear-gradient(180deg, var(--silver) 0%, var(--silver-dark) 100%);
  color: #101317;
}

.btn-secondary,
.button-secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.065);
}

/* Hero */

.hero {
  padding: 16px 0 28px;
}

.hero-copy {
  max-width: 880px;
}

.hero-lead,
.hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-card {
  margin-top: 28px;
}

/* Button rows */

.hero-actions,
.button-row,
.cta-actions,
.contact-actions,
.card-actions,
.tool-row,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Cards */

.hero-card,
.content-card,
.wide-card,
.cta-card,
.contact-card,
.split-card,
.feature-card,
.mini-card,
.stat-card {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(29, 34, 41, 0.96) 0%, rgba(21, 24, 29, 0.98) 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.hero-card,
.content-card,
.wide-card,
.feature-card {
  padding: clamp(22px, 3vw, 34px);
}

.cta-card,
.contact-card {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.cta-card p,
.contact-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-actions,
.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.section {
  padding: clamp(16px, 2.8vw, 28px) 0;
}

.section + .section {
  padding-top: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  margin-bottom: 14px;
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.section-head p {
  max-width: 680px;
}

.no-margin {
  margin-bottom: 0;
}

/* Split card */

.split-card {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
}

.split-card h2,
.split-card p {
  margin-bottom: 0;
}

.split-card h2 {
  max-width: 100%;
}

.split-card p {
  max-width: 680px;
}

.split-card .button-row,
.split-card .tool-row {
  margin-top: 18px;
  width: 100%;
  max-width: 100%;
}

.split-card .btn,
.split-card .button {
  max-width: 100%;
}

/* Feature / logo area */

.logo-panel {
  display: grid;
  place-items: center;
  width: min(330px, 100%);
  margin: 0 auto 22px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-panel img {
  width: min(270px, 100%);
  object-fit: contain;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 18px;
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  font-size: 1.18rem;
}

/* Lists */

.stack {
  display: grid;
  gap: 12px;
}

.feature-list,
.list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-list > div,
.list > div,
.list-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--muted);
  font-weight: 800;
}

/* Opening section */

#opening {
  display: block;
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(18px, 3vw, 30px);
}

#opening .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  margin-bottom: 18px;
}

#opening .section-head h2 {
  margin: 0;
}

#opening .section-head p {
  margin: 0;
  max-width: 680px;
}

#opening .stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

#opening .content-card,
#opening .compact-card {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(29, 34, 41, 0.96) 0%, rgba(21, 24, 29, 0.98) 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

#opening .kicker {
  margin-bottom: 14px;
}

.big-value,
#opening .big-value {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

#opening .compact-card p {
  margin: 0;
  max-width: 760px;
}

.hours-list,
#opening .hours-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.hours-list > div,
#opening .hours-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.hours-list strong,
#opening .hours-list strong {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.hours-list span,
#opening .hours-list span {
  display: block;
  color: var(--muted);
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
  text-align: right;
}

/* Events */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 22px;
}

.mini-card .kicker {
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.mini-card p {
  margin-bottom: 0;
}

/* Partners */

.partner-tags,
.partner-list,
.partners-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.partner-tags span,
.partner-list span,
.partner-list a,
.partners-list span,
.partners-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(207, 213, 220, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Forms / generic controls */

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #101317;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

/* Gallery */

body.lightbox-active {
  overflow: hidden;
}

.bucket-status {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
}

.bucket-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.bucket-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: inherit;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

.bucket-card:hover,
.bucket-card:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
}

.bucket-card.is-empty {
  cursor: default;
}

.bucket-card.is-empty:hover,
.bucket-card.is-empty:focus-visible {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.bucket-preview {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.bucket-card.is-empty .bucket-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.24);
}

.bucket-card.is-empty .bucket-preview::before {
  color: rgba(255, 255, 255, 0.56);
  content: "Coming soon";
  font-weight: 800;
}

.bucket-preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bucket-card.is-empty .bucket-preview img:not([src]) {
  display: none;
}

.bucket-title,
.bucket-count {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
}

.bucket-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  padding-top: 15px;
}

.bucket-count {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.35;
  padding-bottom: 17px;
  padding-top: 5px;
}

/* Lightbox */

.bucket-lightbox {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: clamp(10px, 2vw, 24px);
  position: fixed;
  z-index: 999999;
}

.bucket-lightbox.is-open {
  display: flex;
}

.bucket-lightbox-backdrop {
  background: rgba(0, 0, 0, 0.86);
  inset: 0;
  position: absolute;
}

.bucket-lightbox-panel {
  align-items: center;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  display: flex;
  height: min(760px, calc(100dvh - 32px));
  justify-content: center;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  z-index: 1;
}

.bucket-lightbox-image {
  display: block;
  height: 100%;
  object-fit: contain;
  padding: 64px 86px 72px;
  width: 100%;
}

.bucket-lightbox-close {
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  color: #111111;
  cursor: pointer;
  display: grid;
  font-size: 2rem;
  height: 46px;
  line-height: 1;
  min-height: 46px;
  padding: 0;
  place-items: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 46px;
  z-index: 5;
}

.bucket-lightbox-close:hover,
.bucket-lightbox-close:focus-visible {
  background: #ffffff;
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.bucket-lightbox-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  color: #111111;
  cursor: pointer;
  display: grid;
  font-size: 2.2rem;
  height: 72px;
  justify-content: center;
  line-height: 1;
  min-height: 72px;
  padding: 0;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  z-index: 4;
}

.bucket-lightbox-arrow:hover,
.bucket-lightbox-arrow:focus-visible {
  background: #ffffff;
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.bucket-lightbox-arrow-left {
  left: 18px;
}

.bucket-lightbox-arrow-right {
  right: 18px;
}

.bucket-lightbox-caption {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  bottom: 18px;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
  left: 50%;
  max-width: calc(100% - 36px);
  padding: 8px 14px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: normal;
  z-index: 3;
}

/* Share QR */

.share-card {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.share-qr-panel {
  align-items: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.share-qr {
  background: #ffffff;
  border-radius: 18px;
  display: block;
  height: 176px;
  padding: 12px;
  width: 176px;
}

/* Footer */

.footer {
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0 36px;
  width: min(1120px, calc(100% - 32px));
}

.footer p {
  margin: 0;
}

.footer strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer span {
  font-size: 1rem;
  margin-left: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.footer a strong {
  color: inherit;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
  outline: none;
  text-decoration: underline;
}

/* Desktop / half-screen */

@media (max-width: 1180px) {
  body {
    font-size: 17px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3.5rem, 7.4vw, 5.5rem);
  }

  .nav,
  .page,
  .footer-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .cta-card,
  .contact-card,
  .split-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-actions,
  .contact-actions {
    justify-content: flex-start;
  }
}

/* Tablet */

@media (max-width: 900px) {
  body {
    font-size: 16.5px;
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 9.5vw, 4.5rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
  }

  .section-head,
  #opening .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #opening .section-head {
    margin-bottom: 14px;
  }

  .card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bucket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .button-row,
  .cta-actions,
  .contact-actions,
  .card-actions,
  .tool-row,
  .action-row {
    align-items: stretch;
  }

  .bucket-lightbox-panel {
    width: calc(100vw - 24px);
    height: calc(100dvh - 24px);
    border-radius: 18px;
  }

  .bucket-lightbox-image {
    padding: 64px 18px 76px;
  }
}

/* Android / large phone */

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
  }

  .nav {
    width: min(100%, calc(100% - 24px));
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo,
  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand strong {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .brand small,
  .brand span span {
    font-size: 0.8rem;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page {
    width: min(100%, calc(100% - 24px));
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero {
    padding: 10px 0 22px;
    overflow: hidden;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-card {
    margin-top: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 11.5vw, 3.65rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .section,
  #opening {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .section + .section {
    padding-top: 0;
  }

  .section-head,
  #opening .section-head {
    margin-bottom: 12px;
  }

  .hero-actions,
  .button-row,
  .cta-actions,
  .contact-actions,
  .card-actions,
  .tool-row,
  .action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-actions .btn,
  .button-row .btn,
  .cta-actions .btn,
  .contact-actions .btn,
  .card-actions .btn,
  .tool-row .btn,
  .action-row .btn,
  .hero-actions .button,
  .button-row .button,
  .cta-actions .button,
  .contact-actions .button,
  .card-actions .button,
  .tool-row .button,
  .action-row .button {
    width: auto;
    flex: 1 1 150px;
    min-width: 0;
  }

  .hero-card,
  .content-card,
  .wide-card,
  .feature-card,
  .cta-card,
  .contact-card,
  .split-card,
  .mini-card,
  #opening .content-card,
  #opening .compact-card {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .content-card h2,
  .wide-card h2,
  .feature-card h2,
  .cta-card h2,
  .contact-card h2,
  .split-card h2 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(2rem, 8.6vw, 2.65rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .content-card p,
  .wide-card p,
  .feature-card p,
  .cta-card p,
  .contact-card p,
  .split-card p {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .split-card {
    display: block;
  }

  .split-card .button-row,
  .split-card .tool-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .split-card .btn,
  .split-card .button {
    width: 100%;
  }

  .logo-panel {
    width: min(100%, 320px);
    margin-bottom: 16px;
    padding: 12px;
  }

  .logo-panel img {
    width: min(230px, 100%);
  }

  .stack,
  .card-grid,
  .feature-list,
  #opening .stack {
    gap: 10px;
  }

  .hours-list > div,
  #opening .hours-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 16px;
  }

  .hours-list span,
  #opening .hours-list span {
    white-space: normal;
    text-align: left;
  }

  .share-card {
    grid-template-columns: 1fr;
  }

  .share-qr-panel {
    justify-items: start;
  }

  .share-qr {
    height: 156px;
    width: 156px;
  }

  .footer {
    margin-top: 18px;
  }

  .footer-inner {
    width: min(100%, calc(100% - 24px));
    flex-direction: column;
    align-items: flex-start;
  }
}

/* iPhone / narrow phones */

@media (max-width: 500px) {
  .hero-actions,
  .button-row,
  .cta-actions,
  .contact-actions,
  .card-actions,
  .tool-row,
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .button-row .btn,
  .cta-actions .btn,
  .contact-actions .btn,
  .card-actions .btn,
  .tool-row .btn,
  .action-row .btn,
  .hero-actions .button,
  .button-row .button,
  .cta-actions .button,
  .contact-actions .button,
  .card-actions .button,
  .tool-row .button,
  .action-row .button {
    width: 100%;
    flex: none;
  }

  .hero-card {
    margin-top: 22px;
  }
}

@media (max-width: 430px) {
  .nav,
  .page,
  .footer-inner {
    width: min(100%, calc(100% - 20px));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10.8vw, 3.15rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }

  .eyebrow,
  .kicker {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-card,
  .content-card,
  .wide-card,
  .feature-card,
  .cta-card,
  .contact-card,
  .split-card,
  .mini-card,
  #opening .content-card,
  #opening .compact-card {
    padding: 16px;
  }

  #opening .big-value {
    font-size: clamp(2.1rem, 11vw, 2.75rem);
  }

  .logo-panel {
    width: 100%;
    margin-bottom: 14px;
  }

  .logo-panel img {
    width: min(210px, 100%);
  }

  .btn,
  .button,
  button,
  input[type="submit"],
  input[type="button"] {
    min-height: 46px;
    padding: 11px 14px;
  }

  .footer strong,
  .footer span,
  .footer p,
  .footer a {
    font-size: 0.88rem;
  }
}

@media (pointer: coarse), (max-width: 760px) {
  .bucket-grid {
    grid-template-columns: 1fr;
  }

  .bucket-card {
    border-radius: 18px;
  }

  .bucket-preview {
    aspect-ratio: 4 / 3;
  }

  .bucket-lightbox {
    padding: 10px;
  }

  .bucket-lightbox-panel {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .bucket-lightbox-image {
    padding: 62px 12px 76px;
  }

  .bucket-lightbox-arrow {
    display: none;
  }

  .bucket-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .bucket-lightbox-caption {
    bottom: 18px;
    font-size: 0.85rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer span {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.share-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.share-qr-panel .btn {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 760px) {
  .share-status {
    text-align: left;
  }

  .share-qr-panel .btn {
    max-width: 100%;
  }
}
/* native-share-css-v1 */
.share-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.share-qr-panel .btn {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 760px) {
  .share-status {
    text-align: left;
  }

  .share-qr-panel .btn {
    max-width: 100%;
  }
}
/* /native-share-css-v1 */