/* ═══════════════════════════════════════════════════════════════
   SKYDIVE SWOOP — Homepage v1
   Namespace: .sw-*   (all classes prefixed to avoid collisions)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --sw-bg:        #FAF7F2;
  --sw-bg-2:      #F1EDE4;
  --sw-bg-3:      #E7E1D5;
  --sw-ink:       #141A24;
  --sw-ink-2:     #5A6270;
  --sw-muted:     #8A8375;
  --sw-line:      rgba(20,26,36,0.10);
  --sw-line-hot:  rgba(225,37,27,0.35);
  --sw-orange:    #E1251B;
  --sw-orange-hot:#C51A11;
  --sw-cyan:      #2C7BE5;
  --sw-ok:        #4ADE80;
  --sw-warn:      #FBBF24;
  --sw-danger:    #EF4444;
  --sw-r-card:    8px;
  --sw-r-pill:    999px;
  --sw-max:       1240px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-num:     'Bebas Neue', 'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sw-bg);
  color: var(--sw-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Skip link */
.sw-skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--sw-orange); color: #fff; padding: 10px 16px; border-radius: 4px;
  font-weight: 600;
}
.sw-skip:focus { left: 8px; }

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sw-cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Container */
.sw-wrap { max-width: var(--sw-max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .sw-wrap { padding: 0 20px; } }

/* ─────────── NAV ─────────── */
.sw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sw-line);
  transition: background .3s ease;
}
.sw-nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sw-nav__logo {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -.01em; display: flex; align-items: center; gap: 10px;
}
.sw-nav__logo::before { content: none; }
.sw-nav__logo img { height: 36px; width: auto; display: block; }
.sw-nav__links {
  display: flex; gap: 28px; align-items: center;
}
.sw-nav__links a {
  font-size: 14px; font-weight: 500; color: var(--sw-ink-2);
  transition: color .2s;
}
.sw-nav__links a:hover { color: var(--sw-ink); }
.sw-nav__cta {
  padding: 10px 18px;
  background: var(--sw-orange); color: #fff; font-weight: 600; font-size: 14px;
  border-radius: var(--sw-r-pill); transition: background .2s;
}
.sw-nav__cta:hover { background: var(--sw-orange-hot); color: #fff; }
.sw-nav__toggle { display: none; font-size: 22px; padding: 6px; }
@media (max-width: 900px) {
  .sw-nav__links { display: none; }
  .sw-nav__toggle { display: block; }
}

/* ─────────── HERO ─────────── */
.sw-hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.sw-hero__media {
  position: absolute; inset: 0; z-index: -2;
  background: url('images/hero-poster.jpg') center/cover no-repeat;
}
.sw-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* dark gradient overlay sits above the video, below the headline */
.sw-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,30,0.30) 0%, rgba(15,20,30,0.25) 40%, rgba(15,20,30,0.78) 100%);
}
.sw-hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.sw-hero__pill {
  position: absolute; top: 96px; right: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--sw-r-pill);
  background: rgba(15, 20, 30, 0.62);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.sw-hero__pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sw-ok); box-shadow: 0 0 10px var(--sw-ok);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.sw-hero__pill-status { color: var(--sw-ok); font-weight: 600; letter-spacing: .04em; }

.sw-hero__content { position: relative; z-index: 2; }
.sw-hero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  color: var(--sw-orange); text-transform: uppercase; font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.sw-hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--sw-orange);
}
.sw-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 15ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.sw-hero__h1 em {
  font-style: normal; font-family: var(--font-num); font-weight: 400;
  color: var(--sw-orange); letter-spacing: 0;
}
.sw-hero__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin: 0 0 40px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.sw-hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.sw-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: var(--sw-r-pill);
  transition: transform .15s ease, background .2s ease, border-color .2s;
}
.sw-btn--primary { background: var(--sw-orange); color: #fff; }
.sw-btn--primary:hover { background: var(--sw-orange-hot); transform: translateY(-1px); color: #fff; }
.sw-btn--ghost {
  background: transparent; color: var(--sw-ink);
  border: 1px solid rgba(20,26,36,0.30);
}
.sw-btn--ghost:hover { border-color: var(--sw-ink); background: rgba(20,26,36,0.04); }
/* Ghost buttons that sit on a photo need white treatment */
.sw-hero .sw-btn--ghost, .sw-final .sw-btn--ghost {
  color: #fff; border-color: rgba(255,255,255,0.45);
}
.sw-hero .sw-btn--ghost:hover, .sw-final .sw-btn--ghost:hover {
  border-color: #fff; background: rgba(255,255,255,0.10);
}
.sw-btn__arrow { display: inline-block; transition: transform .2s; }
.sw-btn:hover .sw-btn__arrow { transform: translateX(3px); }

.sw-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: rgba(255,255,255,0.8); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.sw-hero__scroll::after {
  content: ""; width: 1px; height: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollBar 2s infinite;
}
@keyframes scrollBar {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ─────────── LIVE CONDITIONS STRIP ─────────── */
.sw-conditions {
  border-top: 1px solid var(--sw-line);
  border-bottom: 1px solid var(--sw-line);
  padding: 20px 0;
  background: var(--sw-bg-2);
  overflow: hidden;
}
.sw-conditions__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .sw-conditions__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.sw-cond {
  display: flex; flex-direction: column; gap: 4px;
}
.sw-cond__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sw-muted);
}
.sw-cond__value {
  font-family: var(--font-num); font-size: 28px; letter-spacing: 0.02em;
  color: var(--sw-ink); line-height: 1;
}
.sw-cond__value--ok { color: var(--sw-ok); }
.sw-cond__unit { font-size: 14px; color: var(--sw-ink-2); margin-left: 4px; font-family: var(--font-mono); }

/* ─────────── SECTION BASE ─────────── */
.sw-section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) { .sw-section { padding: 80px 0; } }
.sw-section__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  color: var(--sw-orange); text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.sw-section__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--sw-orange);
}
.sw-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 20ch;
}
.sw-section__h2 em {
  font-style: normal; color: var(--sw-orange);
}
.sw-section__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--sw-ink-2);
  max-width: 62ch;
  line-height: 1.55;
  margin: 0 0 60px;
}

/* ─────────── SINCE 1979 STATS ─────────── */
.sw-story {
  background: linear-gradient(180deg, var(--sw-bg) 0%, var(--sw-bg-2) 100%);
}
.sw-story__year {
  -webkit-text-stroke: 2px var(--sw-orange);
}
.sw-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .sw-story__grid { grid-template-columns: 1fr; gap: 48px; } }

.sw-story__year {
  font-family: var(--font-num);
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--sw-orange);
  letter-spacing: -0.02em;
  display: block;
  position: relative;
}
.sw-story__year-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--sw-muted); text-transform: uppercase; display: block;
  margin-top: 8px;
}
.sw-story__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--sw-line);
  padding-top: 32px;
}
.sw-stat__num {
  font-family: var(--font-num); font-size: 44px; color: var(--sw-ink);
  line-height: 1;
}
.sw-stat__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--sw-ink-2); text-transform: uppercase; margin-top: 8px;
}

/* ─────────── EXPERIENCES ─────────── */
.sw-exp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .sw-exp__grid { grid-template-columns: 1fr; } }

.sw-exp-card {
  position: relative;
  border-radius: var(--sw-r-card);
  overflow: hidden;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  isolation: isolate;
  transition: transform .3s ease;
  border: 1px solid var(--sw-line);
}
.sw-exp-card:hover { transform: translateY(-4px); }
.sw-exp-card__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.sw-exp-card:hover .sw-exp-card__bg { transform: scale(1.05); }
.sw-exp-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,20,30,0.25) 0%, rgba(15,20,30,0.55) 45%, rgba(15,20,30,0.92) 100%);
}
.sw-exp-card__meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: #FF6B5E; text-transform: uppercase; margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.sw-exp-card__h3 {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.05;
  color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.sw-exp-card__p {
  color: rgba(255,255,255,0.92); font-size: 15px; line-height: 1.5;
  margin: 0 0 20px; max-width: 42ch; text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.sw-exp-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: #fff; padding-bottom: 4px;
  border-bottom: 1px solid var(--sw-orange);
  transition: gap .2s;
}
.sw-exp-card__link:hover { gap: 14px; }

/* ─────────── WHY SWOOP ─────────── */
.sw-why { background: var(--sw-bg-2); }
.sw-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .sw-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sw-why__grid { grid-template-columns: 1fr; } }

.sw-why-tile {
  padding: 32px 28px;
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-r-card);
  background: #fff;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sw-why-tile:hover {
  border-color: var(--sw-line-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20,26,36,0.08);
}
.sw-why-tile__num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--sw-orange); margin-bottom: 24px;
}
.sw-why-tile__h4 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 12px;
}
.sw-why-tile__p {
  color: var(--sw-ink-2); font-size: 14.5px; line-height: 1.55; margin: 0;
}

/* ─────────── LOCATION / DISTANCES ─────────── */
.sw-loc__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 900px) { .sw-loc__grid { grid-template-columns: 1fr; gap: 40px; } }

.sw-loc__map {
  border-radius: var(--sw-r-card);
  overflow: hidden;
  border: 1px solid var(--sw-line);
  aspect-ratio: 4 / 3;
  filter: grayscale(0.3) contrast(1.02);
}
.sw-loc__map iframe { width: 100%; height: 100%; border: 0; }

.sw-cities {
  list-style: none; padding: 0; margin: 32px 0 0;
  border-top: 1px solid var(--sw-line);
}
.sw-cities li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--sw-line);
}
.sw-cities__city {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.sw-cities__leader {
  height: 1px; background: var(--sw-line); align-self: end; margin-bottom: 6px;
}
.sw-cities__time {
  font-family: var(--font-num); font-size: 22px; color: var(--sw-orange);
  letter-spacing: 0.02em;
}
.sw-cities__unit {
  font-family: var(--font-mono); font-size: 11px; color: var(--sw-muted);
  letter-spacing: .1em; margin-left: 4px;
}

/* ─────────── TESTIMONIALS ─────────── */
.sw-reviews { background: var(--sw-bg-2); }
.sw-reviews__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}
.sw-reviews__rating {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-num); font-size: 40px; color: var(--sw-ink);
}
.sw-reviews__stars { color: var(--sw-orange); font-size: 24px; letter-spacing: 2px; }
.sw-reviews__count {
  font-family: var(--font-mono); font-size: 11px; color: var(--sw-ink-2);
  letter-spacing: .14em; text-transform: uppercase;
}
.sw-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .sw-reviews__grid { grid-template-columns: 1fr; } }
.sw-review {
  padding: 32px 28px;
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-r-card);
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(20,26,36,0.05);
}
.sw-review__stars {
  color: var(--sw-orange); font-size: 16px; letter-spacing: 2px;
  margin-bottom: 20px;
}
.sw-review__body {
  font-size: 16px; line-height: 1.55; color: var(--sw-ink);
  margin: 0 0 24px; flex: 1;
}
.sw-review__author {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--sw-ink-2);
}
.sw-review__source {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--sw-muted); text-transform: uppercase; margin-top: 4px;
}

/* ─────────── FAQ ─────────── */
.sw-faq__list { margin: 0; padding: 0; }
.sw-faq details {
  border-bottom: 1px solid var(--sw-line);
  padding: 24px 0;
}
.sw-faq details[open] { padding-bottom: 32px; }
.sw-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.3;
  transition: color .2s;
}
.sw-faq summary:hover { color: var(--sw-orange); }
.sw-faq summary::-webkit-details-marker { display: none; }
.sw-faq summary::after {
  content: "+";
  font-family: var(--font-mono); font-weight: 400; font-size: 24px;
  color: var(--sw-orange);
  transition: transform .3s;
  flex: 0 0 auto;
}
.sw-faq details[open] summary::after { content: "−"; }
.sw-faq__answer {
  margin: 16px 0 0;
  color: var(--sw-ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 68ch;
}

/* ─────────── FINAL CTA ─────────── */
.sw-final {
  background:
    linear-gradient(180deg, rgba(15,20,30,0.62) 0%, rgba(15,20,30,0.80) 100%),
    url('images/tandem-skydiving-near-toronto-skydive-swoop-dundas-42.jpg') center/cover no-repeat;
  padding: 140px 0;
  text-align: center;
}
.sw-final__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  max-width: 20ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.sw-final__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.88);
  max-width: 52ch; margin: 0 auto 40px;
}
.sw-final__ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ─────────── FOOTER ─────────── */
.sw-foot {
  background: var(--sw-bg);
  border-top: 1px solid var(--sw-line);
  padding: 80px 0 40px;
}
.sw-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .sw-foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .sw-foot__grid { grid-template-columns: 1fr; } }

.sw-foot__brand {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.sw-foot__brand img { height: 40px; width: auto; display: block; }
.sw-foot__tagline {
  color: var(--sw-ink-2); font-size: 14.5px; line-height: 1.5;
  max-width: 34ch; margin: 0 0 20px;
}
.sw-foot h5 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--sw-muted); text-transform: uppercase; font-weight: 500;
  margin: 0 0 20px;
}
.sw-foot ul { list-style: none; padding: 0; margin: 0; }
.sw-foot ul li { margin-bottom: 12px; }
.sw-foot ul a { font-size: 14.5px; color: var(--sw-ink-2); transition: color .2s; }
.sw-foot ul a:hover { color: var(--sw-ink); }

.sw-foot__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--sw-line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--sw-muted);
}
.sw-foot__socials { display: flex; gap: 16px; }
.sw-foot__socials a {
  padding: 8px 14px; border: 1px solid var(--sw-line); border-radius: var(--sw-r-pill);
  font-size: 12px; color: var(--sw-ink-2);
  transition: border-color .2s, color .2s;
}
.sw-foot__socials a:hover { border-color: var(--sw-orange); color: var(--sw-orange); }

/* ─────────── REVEAL ANIMATION ─────────── */
.sw-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.sw-reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .sw-reveal { opacity: 1; transform: none; }
}


/* ─────────── GALLERY ─────────── */
.sw-gallery { background: var(--sw-bg); }
.sw-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
@media (max-width: 900px) { .sw-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sw-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }
.sw-gallery__item {
  position: relative; overflow: hidden; border-radius: var(--sw-r-card);
  border: 1px solid var(--sw-line); background: var(--sw-bg-2);
}
.sw-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.sw-gallery__item:hover img { transform: scale(1.06); }
.sw-gallery__item--wide { grid-column: span 2; }
.sw-gallery__item--tall { grid-row: span 2; }
@media (max-width: 520px) {
  .sw-gallery__item--wide, .sw-gallery__item--tall { grid-column: auto; grid-row: auto; }
}

/* ─────────── PAGE HERO (inner pages) ─────────── */
.sw-phero {
  position: relative; padding: 180px 0 80px; overflow: hidden; isolation: isolate;
}
.sw-phero__media {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.sw-phero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,20,30,0.55) 0%, rgba(15,20,30,0.80) 100%);
}
.sw-phero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  color: #FF6B5E; text-transform: uppercase; font-weight: 500; margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.sw-phero__h1 {
  font-family: var(--font-display); font-size: clamp(38px, 6vw, 76px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.03em;
  margin: 0 0 20px; max-width: 18ch; color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.sw-phero__sub {
  font-size: clamp(16px, 1.6vw, 20px); color: rgba(255,255,255,0.9);
  max-width: 56ch; margin: 0 0 32px; text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.sw-phero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─────────── PRICE CARDS ─────────── */
.sw-price__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 720px) { .sw-price__grid { grid-template-columns: 1fr; } }
.sw-price-card {
  background: #fff; border: 1px solid var(--sw-line); border-radius: var(--sw-r-card);
  padding: 32px 28px; position: relative;
  box-shadow: 0 8px 24px rgba(20,26,36,0.05);
  display: flex; flex-direction: column;
}
.sw-price-card--featured { border-color: var(--sw-orange); border-width: 2px; }
.sw-price-card__badge {
  position: absolute; top: -11px; left: 28px;
  background: var(--sw-orange); color: #fff;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 12px; border-radius: var(--sw-r-pill);
}
.sw-price-card__name {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  margin: 0 0 6px;
}
.sw-price-card__price {
  font-family: var(--font-num); font-size: 52px; color: var(--sw-ink);
  line-height: 1; margin-bottom: 4px;
}
.sw-price-card__price small { font-size: 20px; color: var(--sw-ink-2); }
.sw-price-card__note {
  font-family: var(--font-mono); font-size: 11px; color: var(--sw-muted);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
}
.sw-price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px; flex: 1;
}
.sw-price-card li {
  padding: 10px 0 10px 26px; position: relative;
  border-bottom: 1px solid var(--sw-line); font-size: 14.5px; color: var(--sw-ink-2);
}
.sw-price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--sw-orange); font-weight: 700;
}

/* ─────────── STEPS / PROCESS ─────────── */
.sw-steps { display: grid; gap: 0; }
.sw-step {
  display: grid; grid-template-columns: 100px 1fr; gap: 32px;
  padding: 36px 0; border-bottom: 1px solid var(--sw-line);
  align-items: start;
}
@media (max-width: 640px) { .sw-step { grid-template-columns: 60px 1fr; gap: 20px; } }
.sw-step__num {
  font-family: var(--font-num); font-size: 64px; color: transparent;
  -webkit-text-stroke: 1.5px var(--sw-orange); line-height: 0.8;
}
@media (max-width: 640px) { .sw-step__num { font-size: 40px; } }
.sw-step__h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: -0.015em; margin: 0 0 10px;
}
.sw-step__p { color: var(--sw-ink-2); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 60ch; }

/* ─────────── PROSE (SEO content) ─────────── */
.sw-prose { max-width: 760px; }
.sw-prose h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; margin: 40px 0 14px;
}
.sw-prose p { color: var(--sw-ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 18px; }
.sw-prose a { color: var(--sw-orange); text-decoration: underline; }

/* v14: transparent <picture> wrappers around optimized gallery images (keeps grid layout identical) */
.sw-gallery__item picture{display:block;width:100%;height:100%}
