/* ============================================================
   Swing Lab Hawaii — Homepage
   Palette: Core Black #121212 · Steel Grey #8F8F8F · Cloud White #FFFFFF
            Forest Green #2E8B57 · Seafoam Green #90EE90 · Dark Charcoal #3A3A3A
   ============================================================ */

:root {
  --c-black: #121212;
  --c-charcoal: #3A3A3A;
  --c-grey: #8F8F8F;
  --c-white: #FFFFFF;
  --c-forest: #2E8B57;
  --c-seafoam: #90EE90;

  --bg: var(--c-black);
  --bg-elev: #1a1a1a;
  --bg-elev-2: var(--c-charcoal);
  --text: var(--c-white);
  --text-muted: #b8b8b8;
  --text-dim: var(--c-grey);
  --accent: var(--c-forest);
  --accent-bright: var(--c-seafoam);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);

  --f-heading: 'Oswald', 'Impact', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-lg: 0 24px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 48px rgba(46, 139, 87, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Typography ===== */
h1, h2, h3, h4, .hero-title, .section-title, .banner-title {
  font-family: var(--f-heading);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}
.accent { color: var(--accent); }
.accent-bright { color: var(--accent-bright); }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-primary {
  background: var(--accent);
  color: var(--c-white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-bright);
  color: var(--c-black);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(18, 18, 18, 0.94);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 72px;
  width: auto;
  transition: transform var(--dur) var(--ease);
}
.brand:hover .brand-logo {
  transform: scale(1.05);
}
.primary-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.primary-nav a {
  font-family: var(--f-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color var(--dur) var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: right var(--dur) var(--ease);
}
.primary-nav a:hover {
  color: var(--c-white);
}
.primary-nav a:hover::after {
  right: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease);
}
.phone-link:hover {
  color: var(--accent-bright);
}
.phone-link svg { color: var(--accent); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  margin-left: auto;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/dryvebox-trailer.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.6);
  z-index: 0;
  animation: heroKen 24s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.55) 0%,
    rgba(18, 18, 18, 0.7) 40%,
    rgba(18, 18, 18, 0.95) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent-bright);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(144, 238, 144, 0.3);
  border-radius: 100px;
  background: rgba(46, 139, 87, 0.08);
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(48px, 8.5vw, 128px);
  max-width: 1100px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--bg);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(46, 139, 87, 0.04); }
.stat-ball {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto 14px;
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.stat:hover .stat-ball {
  opacity: 1;
  transform: rotate(-18deg);
}
.stat-num {
  font-family: var(--f-heading);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-white);
  margin-bottom: 12px;
}
.stat-plus, .stat-unit {
  color: var(--accent-bright);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 4px;
}
.stat-unit {
  vertical-align: baseline;
  font-size: 0.4em;
}
.stat-label {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ===== Section base ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-dark { background: var(--bg); }
.section-darker { background: var(--bg-elev); }
.section-head {
  margin-bottom: 72px;
  max-width: 900px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 32px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== Split (Experience) ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
}
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2 / 1;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.image-frame:hover img { transform: scale(1.04); }
.frame-accent {
  position: absolute;
  inset: -24px -24px auto auto;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: transform var(--dur) var(--ease);
}
.split-media:hover .frame-accent {
  transform: translate(-8px, 8px);
}
.feature-list {
  margin: 0 0 36px;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
}
.feature-list li:last-child { border-bottom: 0; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(46, 139, 87, 0.15);
  color: var(--accent-bright);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards-4 { grid-template-columns: 1fr; }
}
.card {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: #222;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--accent-bright);
}
.card-icon svg { width: 100%; height: 100%; }
.card-title {
  font-size: 26px;
  margin-bottom: 16px;
}
.card-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.card-link {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  transition: gap var(--dur) var(--ease);
}
.card-link:hover {
  color: var(--c-white);
}

/* ===== Features Grid (numbered) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 48px;
}
.feature {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}
.feature::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}
.feature:hover::before { transform: scaleX(1); }
.feature-num {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-size: 26px;
  margin-bottom: 16px;
}
.feature-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* ===== Banner (interior shot or flat) ===== */
.banner-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.banner-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0;
}
/* Flat variant — no image, dark band with subtle forest-green left accent */
.banner-flat {
  background: linear-gradient(90deg, #0a0a0a 0%, #121212 40%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 360px;
}
.banner-flat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(46, 139, 87, 0.4);
}
.banner-title {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 32px;
  max-width: none;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.price-card-featured {
  background: linear-gradient(180deg, #1f2a23 0%, var(--bg-elev-2) 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.price-header {
  margin-bottom: 20px;
}
.price-name {
  font-family: var(--f-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}
.price-duration {
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.price-amount {
  font-family: var(--f-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--c-white);
}
.price-dollar {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--accent-bright);
  margin-right: 2px;
}
.price-slash {
  font-size: 0.45em;
  color: var(--text-dim);
  font-weight: 500;
}
.price-custom {
  color: var(--accent-bright);
  font-size: 44px;
}
.price-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.price-features {
  margin: 0 0 32px;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--accent-bright);
  font-weight: 700;
}
.price-features li:last-child { border-bottom: 0; }

/* ===== Book / Contact section ===== */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.book-content { padding-top: 16px; }
.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.contact-method:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}
.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--accent-bright);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--c-white);
}

/* ===== Form ===== */
.book-form {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 28px;
  margin-bottom: 28px;
}
.form-success,
.form-error {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}
.form-success {
  background: rgba(46, 139, 87, 0.12);
  border: 1px solid rgba(144, 238, 144, 0.35);
  color: var(--accent-bright);
}
.form-error {
  background: rgba(220, 53, 69, 0.10);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ffb3ba;
}
.form-error a { color: #ffd6db; border-bottom: 1px solid currentColor; }
.form-row {
  margin-bottom: 20px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.book-form label {
  display: block;
}
.book-form label span {
  display: block;
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: #141414;
  color: var(--c-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #101010;
}
.book-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a0a0a;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-logo {
  height: 96px;
  margin-bottom: 24px;
}
.footer-tagline {
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 360px;
  font-size: 14px;
}
.footer-heading {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.footer-col ul li {
  padding: 6px 0;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== Built by Greenlight Systems — agency credit ===== */
.footer-credit {
  text-align: center;
  padding: 28px 0 8px;
}
.built-by-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transition: opacity 220ms var(--ease);
  text-decoration: none;
}
.built-by-link:hover { opacity: 0.92; }
.built-by-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.built-by-mark {
  height: 28px;
  width: auto;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-inner { gap: 16px; }
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: 13px; }
  .phone-link { display: none; }
  .split-grid { gap: 48px; }
  .features-grid { gap: 36px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-3 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-6px); }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .banner-overlay { padding: 72px 0; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { padding: 12px 20px; font-size: 13px; }
  .site-header.menu-open .primary-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px 32px;
    gap: 4px;
  }
  .site-header.menu-open .primary-nav a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .site-header.menu-open .primary-nav a:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 20px 60px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 240px;
  }
  .hero-scroll { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .book-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-inner { padding: 14px 20px; }
  .brand-logo { height: 56px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }

  /* ===== Mobile centering pass ===== */
  /* Hero */
  .hero-content { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-bg { background-position: 50% 30%; }

  /* Section heads */
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .section-lead { margin-left: auto; margin-right: auto; }

  /* Experience split content */
  .split-content { text-align: center; }
  .split-content .btn { display: inline-flex; margin-left: auto; margin-right: auto; }
  .feature-list {
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Banner CTA (flat variant) */
  .banner-flat .container { text-align: center; }
  .banner-flat .btn { display: inline-flex; margin-left: auto; margin-right: auto; }

  /* Book section */
  .book-content { text-align: center; }
  .book-content .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .contact-methods .contact-method { justify-content: flex-start; }

  /* Footer */
  .footer-brand { text-align: center; }
  .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-col { text-align: center; }
  .footer-col .footer-heading { text-align: center; }
}

/* ===== Scroll reveal (disabled for v1 — keep class for future use) ===== */
.reveal { }
.reveal.in { }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SUB-PAGE PATTERNS (used by all non-home pages)
   ============================================================ */

/* ===== 5-col features grid (homepage Why Swing Lab v2) ===== */
.features-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 28px;
}
@media (max-width: 1024px) {
  .features-5 { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 560px) {
  .features-5 { grid-template-columns: 1fr; }
}

/* ===== Page Hero (sub-page, shorter than homepage hero) ===== */
.page-hero {
  position: relative;
  padding: 200px 32px 100px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0f0f0f 0%, var(--bg) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.35);
}
.page-hero-light .page-hero-bg img {
  filter: saturate(0.9) brightness(0.6);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.92) 100%);
  z-index: 1;
}
.page-hero-light .page-hero-overlay {
  background: linear-gradient(180deg, rgba(18,18,18,0.28) 0%, rgba(18,18,18,0.75) 100%);
}

/* Mobile: lift photo brightness ~15-20% so the imagery reads on smaller screens */
@media (max-width: 860px) {
  .page-hero-bg img {
    filter: saturate(0.85) brightness(0.48);
  }
  .page-hero-light .page-hero-bg img {
    filter: saturate(1.0) brightness(0.72);
  }
  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(18,18,18,0.45) 0%, rgba(18,18,18,0.85) 100%);
  }
  .page-hero-light .page-hero-overlay {
    background: linear-gradient(180deg, rgba(18,18,18,0.22) 0%, rgba(18,18,18,0.68) 100%);
  }
  .section-scenic {
    background-image:
      linear-gradient(180deg, rgba(18, 18, 18, 0.80), rgba(18, 18, 18, 0.90)),
      var(--scenic-img, none);
  }
  .section-scenic-dark {
    background-image:
      linear-gradient(180deg, rgba(18, 18, 18, 0.86), rgba(18, 18, 18, 0.93)),
      var(--scenic-img, none);
  }
  .cta-band.cta-band-scenic {
    background-image:
      linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.88)),
      var(--scenic-img, none);
  }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent-bright);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-title {
  font-size: clamp(42px, 6.5vw, 92px);
  max-width: 1000px;
  margin-bottom: 24px;
}
.page-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.55;
  margin: 0;
}

/* ===== Prose (readable body blocks) ===== */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose.prose-wide {
  max-width: 960px;
}
.prose h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin: 56px 0 20px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 40px 0 14px;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--c-white);
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.prose p strong { color: var(--c-white); font-weight: 600; }
.prose ul, .prose ol {
  margin: 0 0 28px;
  padding-left: 24px;
}
.prose ul li, .prose ol li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 6px 0;
  list-style: disc;
}
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent-bright); border-bottom: 1px solid rgba(144,238,144,0.3); transition: border-color var(--dur) var(--ease); }
.prose a:hover { border-color: var(--accent-bright); }
.prose .lede {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.6;
  color: var(--c-white);
  margin-bottom: 40px;
  font-weight: 400;
}

/* ===== Check list (reusable, for pricing/inclusions lists) ===== */
.check-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.check-list li,
.prose ul.check-list li,
.prose .check-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  list-style: none;
}
.check-list li:last-child,
.prose ul.check-list li:last-child,
.prose .check-list li:last-child { border-bottom: 0; }
.check-list li::before,
.prose ul.check-list li::before,
.prose .check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 22px;
  height: 22px;
  background-color: rgba(46, 139, 87, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2390EE90' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px 13px;
  border-radius: 50%;
}
.check-list li strong { color: var(--c-white); font-weight: 600; }

/* ===== Steps grid (for /how-it-works/) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--f-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.85;
}
.step-title {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.005em;
}
.step-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ===== FAQ accordion (native details/summary) ===== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}
.faq-item[open] { background: rgba(46,139,87,0.04); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 56px 28px 4px;
  position: relative;
  font-family: var(--f-heading);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--c-white);
  text-transform: none;
  letter-spacing: -0.005em;
  transition: color var(--dur) var(--ease);
}
.faq-item summary:hover { color: var(--accent-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  color: var(--accent-bright);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-body {
  padding: 0 4px 28px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}
.faq-body p { margin: 0 0 16px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--accent-bright); border-bottom: 1px solid rgba(144,238,144,0.3); }

/* ===== Gallery grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background:
    repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 12px, #151515 12px, #151515 24px);
}
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ===== Partner logos row (community page) ===== */
.partners-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px 0 16px;
  padding: 40px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: center;
  justify-items: center;
}
.partner-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 100px;
  width: 100%;
  text-align: center;
}
.partner-slot-name {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.partner-slot-note {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-slot.placeholder {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.partner-slot.placeholder .partner-slot-name { color: var(--text-dim); }

/* ===== Callout / highlight box ===== */
.callout {
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(46,139,87,0.08), rgba(46,139,87,0.02));
  border: 1px solid rgba(46,139,87,0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.callout-eyebrow {
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
}
.callout p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-white);
  margin: 0;
}
.callout p + p { margin-top: 12px; }

/* ===== CTA Band (compact reusable CTA) ===== */
.cta-band {
  padding: 80px 0;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band-title {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.cta-band-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-band-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Two-column row for sub-page content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
.two-col.reverse .two-col-media { order: -1; }
.two-col-media {
  position: relative;
}
.two-col-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.two-col-media.sticky {
  position: sticky;
  top: 100px;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.10) 0%, rgba(144, 238, 144, 0.04) 100%);
  border: 2px dashed rgba(144, 238, 144, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  padding: 24px;
  text-align: center;
}
.photo-placeholder svg {
  color: var(--accent-bright);
  opacity: 0.55;
}
.photo-placeholder-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
}
.photo-placeholder-caption {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}
.family-photo {
  margin: 0;
}
.family-photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.family-photo figcaption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
  text-align: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-media.sticky { position: static; }
  .photo-placeholder { aspect-ratio: 4 / 3; max-width: 420px; margin: 0 auto; }
  .family-photo { max-width: 520px; margin: 0 auto; }
}

/* ===== Data grid (for TrackMan data list, etc) ===== */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 860px) {
  .data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .data-grid { grid-template-columns: 1fr; }
}
.data-pill {
  padding: 18px 22px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.data-pill strong {
  display: block;
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ===== Event-type cards (corp, private, coaching category grid) ===== */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .type-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .type-grid { grid-template-columns: 1fr; }
}
.type-grid.type-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .type-grid.type-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .type-grid.type-grid-4 { grid-template-columns: 1fr; }
}
.type-card {
  padding: 36px 32px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.type-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.type-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--c-white);
}
.type-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ===== Contact split (for /contact/ page) ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info .contact-row {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .contact-row:last-child { border-bottom: 0; }
.contact-info .contact-row-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46,139,87,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
}
.contact-info .contact-row-icon svg { width: 18px; height: 18px; }
.contact-info .contact-row-label {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact-info .contact-row-value {
  font-size: 17px;
  color: var(--c-white);
  font-weight: 500;
}
.contact-info .contact-row-value a { color: inherit; }
.contact-info .contact-row-value a:hover { color: var(--accent-bright); }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== TrackMan member box (for /book/ page) ===== */
.member-box {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(46,139,87,0.06);
  border: 1px solid rgba(46,139,87,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.member-box-text {
  flex: 1;
  min-width: 240px;
}
.member-box-title {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.member-box-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Section-level scenic backdrop (for homepage benefits, CTA bands) ===== */
.section-scenic {
  background-image:
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(18, 18, 18, 0.95)),
    var(--scenic-img, none);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.section-scenic-dark {
  background-image:
    linear-gradient(180deg, rgba(18, 18, 18, 0.93), rgba(18, 18, 18, 0.97)),
    var(--scenic-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-band.cta-band-scenic {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.94)),
    var(--scenic-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 0;
  border-bottom: 0;
}

/* ===== Mobile refinements for sub-pages ===== */
@media (max-width: 860px) {
  .page-hero { padding: 160px 20px 80px; }
  .prose h2 { margin: 44px 0 16px; }
  .faq-item summary { padding: 22px 48px 22px 4px; }
}

/* ===== Sub-page hover animations (step cards, type cards, data pills) ===== */
.step-card, .type-card {
  position: relative;
  overflow: hidden;
}
.step-card::before, .type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
  z-index: 1;
}
.step-card:hover::before, .type-card:hover::before {
  transform: scaleX(1);
}

.data-pill {
  transition: border-left-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.data-pill:hover {
  border-left-color: var(--accent-bright);
  background: #222;
  transform: translateX(4px);
}

.faq-item {
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms var(--ease);
}
.faq-item:hover::before, .faq-item[open]::before {
  transform: scaleY(1);
}

.contact-row-icon {
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.contact-row:hover .contact-row-icon {
  background: rgba(46, 139, 87, 0.35);
  transform: scale(1.08);
}

.partner-slot {
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.partner-slot:not(.placeholder):hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 139, 87, 0.18);
}

/* ===== Sub-page mobile centering ===== */
@media (max-width: 560px) {
  /* Page hero */
  .page-hero-content { text-align: center; }
  .page-hero-title { margin-left: auto; margin-right: auto; }
  .page-hero-sub { margin-left: auto; margin-right: auto; }

  /* Step + type cards — stack and center content */
  .step-card, .type-card { text-align: center; }
  .data-pill { text-align: center; border-left-width: 0; border-top: 3px solid var(--accent); }
  .data-pill strong { margin-bottom: 8px; }

  /* Contact split info */
  .contact-split { text-align: center; }
  .contact-info .contact-row {
    justify-content: center;
    text-align: left;
  }

  /* Book grid left side */
  .book-grid .book-content { text-align: center; }
  .book-grid .section-title { margin-left: auto; margin-right: auto; }

  /* Partners row */
  .partners-row { justify-items: center; }

  /* Gallery captions already fine */

  /* CTA band already centered */

  /* Member box on book page */
  .member-box { text-align: center; justify-content: center; }
  .member-box-text { text-align: center; }
}
