/* ==========================================================================
   Padel & Pines — Design System
   Boutique padel club / private members club & wellness retreat aesthetic
   ========================================================================== */

:root {
  --ink: #14160f;
  --ink-soft: #1c1f16;
  --forest: #232e1e;
  --forest-2: #364a2c;
  --sage: #99a878;
  --sage-dark: #7c8c5e;
  --cream: #f4efe3;
  --stone: #e9e2d2;
  --stone-dark: #d9d0b9;
  --text-light: #f6f2e8;
  --text-light-soft: rgba(246, 242, 232, 0.72);
  --text-dark: #20221a;
  --text-dark-soft: rgba(32, 34, 26, 0.66);
  --gold: #bfa06a;
  --line-light: rgba(246, 242, 232, 0.28);
  --line-dark: rgba(32, 34, 26, 0.16);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --script: 'adventures-unlimited', cursive;

  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#story, #club, #visit { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.01em;
}

em, .italic { font-style: italic; font-family: var(--serif); }

.script {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: 1.15em;
  vertical-align: -0.03em;
  margin-top: -0.08em;
}
@media (max-width: 640px) {
  .script { margin-top: 0.05em; line-height: 0.95; }
}

p { margin: 0 0 1.2em; line-height: 1.75; font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 6vw;
}

/* ---------- divider motif ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto;
}
.divider .stem { width: 56px; height: 1px; background: currentColor; opacity: 0.45; }
.divider .leaf { width: 14px; height: 14px; opacity: 0.85; }
.divider.on-dark { color: var(--text-light); }
.divider.on-light { color: var(--forest); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  box-sizing: border-box;
  vertical-align: middle;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(.22,.61,.36,1), box-shadow 0.4s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sage { background: var(--sage); color: var(--ink); }
.btn-sage:hover { background: var(--sage-dark); box-shadow: 0 14px 30px rgba(124,140,94,0.3); }
.btn-outline-light { border-color: var(--line-light); color: var(--text-light); background: transparent; }
.btn-outline-light:hover { background: rgba(246,242,232,0.1); border-color: var(--text-light); }
.btn-outline-dark { border-color: var(--line-dark); color: var(--text-dark); background: transparent; }
.btn-outline-dark:hover { background: rgba(32,34,26,0.06); border-color: var(--text-dark); }
.btn-line {
  position: relative;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  transition: padding-right 0.4s cubic-bezier(.22,.61,.36,1), opacity 0.3s ease;
}
.btn-line:hover { padding-right: 8px; opacity: 0.75; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow .4s ease;
  background: linear-gradient(180deg, rgba(20,22,15,0.55), rgba(20,22,15,0));
}
.site-nav.solid {
  background: rgba(20, 22, 15, 0.96);
  padding: 16px 6vw;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.site-nav .logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}
.site-nav .logo-mark img { height: 34px; width: auto; }
.site-nav .logo-mark .wordmark {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, opacity .3s ease;
  opacity: 0.86;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--sage); opacity: 1; }
.nav-links .btn { margin-left: 8px; padding: 13px 26px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--text-light); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 10vw 3vw rgba(14,16,10,0.55);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,11,0.35) 0%, rgba(15,17,11,0.28) 40%, rgba(15,17,11,0.82) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw 8vw;
  text-align: center;
}
.hero-mark { width: clamp(140px, 16vw, 210px); height: auto; margin: 0 auto 30px; opacity: 0.94; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 16em;
  margin: 0 auto;
  font-weight: 500;
}
.hero .eyebrow { display: block; margin-bottom: 20px; opacity: 0.85; }
.hero-sub {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  color: var(--text-light-soft);
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-short { min-height: 62vh; }
.hero-short .hero-inner { padding-bottom: 5vw; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-light-soft);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line { width: 1px; height: 32px; background: var(--text-light-soft); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 640px) {
  .hero { flex-direction: column; align-items: center; padding-top: 110px; }
  .hero-mark { width: 108px; margin: 0 auto 18px; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero-sub { margin-top: 16px; }
  .hero-actions { margin-top: 28px; }
  .scroll-cue { position: static; margin: 24px auto 0; transform: none; }
}

/* ---------- sections ---------- */
section { position: relative; }
.section { padding: 9rem 0; }
.section-tight { padding: 6rem 0; }
.bg-cream { background: var(--cream); color: var(--text-dark); }
.bg-stone { background: var(--stone); color: var(--text-dark); }
.bg-ink { background: var(--ink); color: var(--text-light); }
.bg-forest { background: var(--forest); color: var(--text-light); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 4.5rem; }
.section-head .eyebrow { display: block; margin-bottom: 18px; color: var(--sage-dark); }
.bg-ink .section-head .eyebrow, .bg-forest .section-head .eyebrow { color: var(--sage); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.section-head p { margin-top: 22px; font-size: 1.05rem; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.5;
  font-weight: 400;
  max-width: 920px;
  margin: 0 auto;
}
.lede.center { text-align: center; }

/* ---------- full bleed break ---------- */
.bleed {
  height: 82vh;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.bleed.short { height: 58vh; }
.bleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 10vw 3vw rgba(14,16,10,0.5);
  z-index: 0;
}
.bleed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,17,11,0.55), rgba(15,17,11,0) 46%);
  z-index: 1;
}
.bleed-caption {
  position: relative; z-index: 2;
  color: var(--text-light);
  padding: 3.2rem 6vw;
  max-width: 620px;
}
.bleed-caption .eyebrow { color: var(--sage); display:block; margin-bottom: 14px; }
.bleed-caption h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* ---------- split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 8vw 2.5vw rgba(14,16,10,0.35);
}
.split-text { display: flex; align-items: center; }
.split-text-inner { padding: 5vw 7vw; max-width: 560px; }
.split-text-inner .eyebrow { color: var(--sage-dark); display: block; margin-bottom: 18px; }
.split-text-inner h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 24px; }

/* ---------- feature triptych ---------- */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
}
.feature { text-align: center; }
.feature .icon { width: 40px; height: 40px; margin: 0 auto 22px; opacity: 0.9; }
.feature h3 { font-size: 1.5rem; margin-bottom: 14px; }
.feature p { font-size: 0.95rem; }
.bg-ink .feature p, .bg-forest .feature p { color: var(--text-light-soft); }

.soon-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
  border-radius: 20px;
  padding: 4px 11px;
  vertical-align: middle;
  margin-left: 8px;
  transform: translateY(-3px);
}
.bg-ink .soon-tag, .bg-forest .soon-tag { color: var(--sage); }

/* ---------- faq accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: opacity 0.3s ease;
}
.faq-q:hover { opacity: 0.7; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--sage-dark);
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}
.faq-icon::before { width: 16px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease;
}
.faq-item.open .faq-a { opacity: 1; }
.faq-a p { padding: 0 4px 26px; max-width: 620px; font-size: 1rem; color: var(--text-dark-soft); }

/* ---------- gallery grid ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery .g-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery .g-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 3vw 1vw rgba(14,16,10,0.4);
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.g-item:hover .g-photo, .g-item:focus-visible .g-photo { transform: scale(1.08); }

.g-expand {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 15, 0);
  opacity: 0;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.g-item:hover .g-expand, .g-item:focus-visible .g-expand {
  opacity: 1;
  background: rgba(20, 22, 15, 0.28);
}
.g-expand svg {
  width: 28px;
  height: 28px;
  color: #fff;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}
.g-item:hover .g-expand svg { transform: scale(1); }
.g-item:focus-visible { outline: 2px solid var(--sage); outline-offset: -2px; }

@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 17, 11, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 5vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox-img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1), opacity 0.5s ease;
  transition-delay: 0.05s;
}
.lightbox.open .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 10px;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-prev:hover { opacity: 1; transform: translateY(-50%) translateX(-4px); }
.lightbox-next:hover { opacity: 1; transform: translateY(-50%) translateX(4px); }
.lightbox-close { top: 22px; right: 3vw; font-size: 1.8rem; line-height: 1; }
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
}
.lightbox-prev { left: 1.5vw; }
.lightbox-next { right: 1.5vw; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light-soft);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
}
.lightbox.open .lightbox-counter { opacity: 1; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { font-size: 1.3rem; }
  .lightbox-close { top: 16px; right: 5vw; }
}

/* ---------- video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 17, 11, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 5vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.video-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.video-modal-frame {
  width: min(1000px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1), opacity 0.5s ease;
  transition-delay: 0.05s;
}
.video-modal.open .video-modal-frame { transform: scale(1); opacity: 1; }
.video-modal-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-modal-close {
  position: absolute;
  top: 22px; right: 3vw;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 10px;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 1;
}
.video-modal-close:hover { opacity: 1; transform: rotate(90deg); }
@media (max-width: 640px) {
  .video-modal-close { top: 16px; right: 5vw; }
}

/* ---------- quote ---------- */
.quote-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.quote-block .mark { font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--sage); display:block; margin-bottom: 6px; }
.quote-block .quote-icon { width: 38px; height: auto; display: block; margin: 0 auto 22px; opacity: 0.92; }
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.45;
  margin: 0 0 24px;
}
.quote-block cite { font-style: normal; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.7; }

/* ---------- membership teaser strip ---------- */
.tiers-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}
.tier-col {
  padding: 4.5rem 2.5rem;
  text-align: center;
  border-left: 1px solid var(--line-light);
}
.tier-col:first-child { border-left: none; }
.tier-col .tier-name { font-size: clamp(1.7rem, 2.4vw, 2.3rem); margin-bottom: 10px; }
.tier-col .tier-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; display:block; }
.tier-col p { color: var(--text-light-soft); font-size: 0.92rem; }

/* ---------- membership full cards ---------- */
.tier-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
  margin-bottom: 2px;
}
.tier-card .tier-media {
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 8vw 2.5vw rgba(14,16,10,0.35);
}
.tier-card .tier-body {
  padding: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tier-card .tier-eyebrow { color: var(--sage-dark); display: block; margin-bottom: 16px; }
.tier-card h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: 6px; }
.tier-card .tier-position { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--text-dark-soft); margin-bottom: 26px; display: block; }
.tier-card .tier-desc { font-size: 1.02rem; max-width: 520px; }
.tier-card .tier-meta {
  display: flex;
  gap: 40px;
  margin: 30px 0 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.tier-card .tier-meta .m-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dark-soft); display: block; margin-bottom: 8px; }
.tier-card .tier-meta .m-value { font-family: var(--serif); font-size: 1.5rem; }
.tier-card.reverse { grid-template-columns: 1.1fr 0.9fr; }
.tier-card.reverse .tier-media { order: 2; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--text-light-soft);
  padding: 6rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4vw;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }
.footer-col h4 {
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--sage); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 340px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 8vh 10vw;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  }
  .nav-links.open-mobile { display: flex; }
  .nav-toggle { display: flex; z-index: 210; }
  .split, .tier-card, .tier-card.reverse { grid-template-columns: 1fr; }
  .split-media { min-height: 380px; order: -1; }
  .tier-card .tier-media { min-height: 340px; order: -1 !important; }
  .triptych { grid-template-columns: 1fr; gap: 3.5rem; }
  .tiers-strip { grid-template-columns: 1fr; }
  .tier-col { border-left: none; border-top: 1px solid var(--line-light); }
  .tier-col:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .g-span2, .g-span3, .g-span4 { grid-column: span 2; }
  .section { padding: 6rem 0; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
