/*
 * Up & Down Golf Academy — Theme Stylesheet
 * Edit via: Admin Panel > Themes > Up & Down > Options
 * Image assets: user/themes/updown/images/
 */



/* ═══════════════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --cyan:    #00AEEF;
  --black:   #0D0D0D;
  --ink:     #1A1A1A;
  --smoke:   #F5F3EF;
  --mist:    #EBEBEB;
  --mid:     #888;
  --white:   #FFFFFF;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--cyan); }


/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-brand-mark {
  width: 32px; height: 32px;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  position: relative;
}
.nav-brand-text { line-height: 1; }
.nav-brand-name {
  font-family: var(--sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black);
}
.nav-brand-sub {
  font-size: 8px; font-weight: 400; letter-spacing: 0.25em;
  color: var(--mid); text-transform: uppercase; margin-top: 2px;
  display: block;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mid);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--black); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--cyan);
}
.btn-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  background: var(--black); color: var(--white);
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-book:hover { background: var(--cyan); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--black);
  transition: all 0.3s;
}


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  overflow: hidden;
}

.hero-left {
  background: var(--black);
  padding: 80px 64px 80px 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}

/* Big ghost letters */
.hero-ghost {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 320px; font-weight: 700; line-height: 0.8;
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}

.hero-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.4em;
  color: var(--cyan); text-transform: uppercase;
}
.hero-tag-line { width: 28px; height: 1px; background: var(--cyan); }

.hero-headline {
  position: relative; z-index: 2;
}
.hero-headline h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 100px);
  font-weight: 300; line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-headline h1 em {
  font-style: italic; color: var(--cyan);
}
.hero-headline h1 strong {
  font-weight: 700;
}
.hero-cn {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

.hero-meta {
  display: flex; align-items: flex-start; gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-n {
  font-family: var(--serif); font-size: 40px; font-weight: 600;
  color: var(--white); line-height: 1;
}
.hero-stat-l {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-top: 4px;
}
.hero-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.12);
  flex-shrink: 0; margin-top: 8px;
}

.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%),
    url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?w=1200&q=80')
    center/cover;
}
.hero-photo-badge {
  position: absolute; bottom: 48px; left: 40px;
  background: var(--white); padding: 20px 24px;
  z-index: 2;
}
.hpb-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 4px;
}
.hpb-text {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--black); line-height: 1.2;
}

/* Diagonal slice between hero halves */
.hero-slice {
  position: absolute; top: 0; left: -40px; bottom: 0;
  width: 80px; background: var(--black);
  clip-path: polygon(0 0, 100% 0, 40px 100%, 0 100%);
  z-index: 3;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; right: 48px; z-index: 10;
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--white); text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}
.hero-scroll::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: rgba(255,255,255,0.4);
}


/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: var(--cyan); padding: 12px 0;
}
.ticker-inner { display: inline-flex; animation: tickerScroll 30s linear infinite; }
.ticker-item {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--white);
  padding: 0 40px;
}
.ticker-sep { color: rgba(255,255,255,0.4); margin: 0 -20px; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════════ */
.section { padding: 120px 80px; }
.section--smoke { background: var(--smoke); }
.section--black { background: var(--black); }

.max { max-width: 1200px; margin: 0 auto; }

.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block; width: 20px; height: 1px; background: var(--cyan);
}

.display {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--cyan); }
.display strong { font-weight: 700; }

.lead {
  font-size: 17px; line-height: 1.75; font-weight: 300;
  color: #444; max-width: 560px;
}

.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-image {
  position: relative;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4;
  background:
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?w=800&q=80')
    center/cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%);
}
.about-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--cyan);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.aa-num {
  font-family: var(--serif); font-size: 48px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.aa-txt {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8); text-transform: uppercase; margin-top: 4px;
}
.about-corner {
  position: absolute; top: -16px; left: -16px;
  width: 44px; height: 44px;
  border-top: 3px solid var(--black);
  border-left: 3px solid var(--black);
}

.about-body { display: flex; flex-direction: column; gap: 28px; }
.about-body .lead { max-width: 100%; margin: 0; }

.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pillar {
  padding: 16px; background: var(--smoke);
  border-left: 3px solid var(--cyan);
}
.pillar-icon { font-size: 20px; margin-bottom: 8px; }
.pillar-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--black); margin-bottom: 4px;
}
.pillar-desc { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.5; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--black); color: var(--black);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer; background: none;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }


/* ═══════════════════════════════════════════════════
   FACILITIES STRIP
═══════════════════════════════════════════════════ */
.facilities-strip {
  background: var(--black);
  padding: 56px 80px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}
.facility-item {
  flex: 1; padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: flex-start; gap: 14px;
}
.facility-item:first-child { padding-left: 0; }
.facility-item:last-child { border-right: none; }
.facility-num {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--cyan); line-height: 1; flex-shrink: 0;
}
.facility-info {}
.facility-title {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.facility-desc {
  font-size: 11px; color: rgba(255,255,255,0.45);
  font-weight: 300; line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   PROGRAMMES
═══════════════════════════════════════════════════ */
.programs-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 56px;
}

.programs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--mist);
}
.prog-card {
  background: var(--white); padding: 40px 32px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.prog-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--cyan);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.prog-card:hover { background: var(--smoke); }
.prog-card:hover::after { transform: scaleX(1); }
.prog-card.featured {
  background: var(--black); color: var(--white);
}
.prog-card.featured::after { background: var(--cyan); transform: scaleX(1); }

.prog-n {
  font-family: var(--serif); font-size: 64px; font-weight: 700;
  line-height: 1; color: var(--mist); margin-bottom: 20px;
  transition: color 0.3s;
}
.prog-card:hover .prog-n { color: rgba(0,174,239,0.1); }
.prog-card.featured .prog-n { color: rgba(255,255,255,0.06); }

.prog-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
}
.prog-title {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  line-height: 1.1; margin-bottom: 6px;
}
.prog-cn {
  font-size: 11px; letter-spacing: 0.15em; color: var(--mid);
  margin-bottom: 16px;
}
.prog-card.featured .prog-cn { color: rgba(255,255,255,0.4); }
.prog-desc {
  font-size: 13px; line-height: 1.7; color: #555;
  font-weight: 300; margin-bottom: 24px;
}
.prog-card.featured .prog-desc { color: rgba(255,255,255,0.6); }

.prog-arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: gap 0.2s;
}
.prog-arrow:hover { gap: 12px; }


/* ═══════════════════════════════════════════════════
   TRACKMAN
═══════════════════════════════════════════════════ */
.trackman-section {
  padding: 120px 80px;
  background: var(--smoke);
  position: relative; overflow: hidden;
}
.trackman-bg-text {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: 240px; font-weight: 700;
  color: rgba(0,0,0,0.04); white-space: nowrap; pointer-events: none;
  letter-spacing: -0.05em;
}

.trackman-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.trackman-visual {
  position: relative;
}
.trackman-photo {
  width: 100%; aspect-ratio: 4/3;
  background:
    linear-gradient(rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.0) 100%),
    url('https://firebasestorage.googleapis.com/v0/b/web-maker-app.appspot.com/o/assets%2FdRESwkJCH9bZP29kGCc9agUxlz23%2Ftrackman1.png?alt=media&token=6d44acbc-ab92-42a1-ac73-fc03a651b1c8')
    center/cover;
  clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%, 0 32px);
}
.trackman-quote-card {
  position: absolute; bottom: -32px; left: -32px;
  background: var(--cyan); padding: 24px 28px;
  max-width: 280px; z-index: 2;
}
.tqc-quote {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  font-weight: 400; color: var(--white); line-height: 1.55;
}

.trackman-text { display: flex; flex-direction: column; gap: 24px; }

.tm-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--mist);
}
.tm-metric {
  background: var(--white); padding: 20px;
  transition: background 0.2s;
}
.tm-metric:hover { background: var(--black); }
.tm-metric:hover .tm-val { color: var(--cyan); }
.tm-metric:hover .tm-lab { color: rgba(255,255,255,0.5); }
.tm-val {
  font-family: var(--serif); font-size: 30px; font-weight: 700;
  color: var(--black); line-height: 1; transition: color 0.2s;
}
.tm-lab {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--mid); text-transform: uppercase; margin-top: 4px;
  transition: color 0.2s;
}

.tm-checklist { display: flex; flex-direction: column; gap: 10px; }
.tm-check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--white);
  font-size: 13px; font-weight: 400; color: var(--ink);
  transition: background 0.2s;
}
.tm-check-item:hover { background: rgba(0,174,239,0.06); }
.tm-tick {
  width: 18px; height: 18px; background: var(--cyan);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--white); font-weight: 700; flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   ALP PROGRAMME
═══════════════════════════════════════════════════ */
.alp-section {
  background: var(--black); padding: 120px 80px;
  position: relative; overflow: hidden;
}
.alp-watermark {
  position: absolute; right: -80px; bottom: -40px;
  font-family: var(--serif); font-size: 280px; font-weight: 700;
  color: rgba(255,255,255,0.03); pointer-events: none;
  letter-spacing: -0.05em; line-height: 1;
}

.alp-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 2;
}

.alp-left .label { color: var(--cyan); }
.alp-left .display { color: var(--white); }
.alp-left .lead { color: rgba(255,255,255,0.55); margin-top: 20px; }

.alp-week {
  display: flex; flex-direction: column; gap: 2px; margin-top: 32px;
}
.alp-day {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  transition: background 0.2s;
}
.alp-day:hover { background: rgba(0,174,239,0.1); }
.alp-day-time {
  background: var(--cyan); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 14px 16px; writing-mode: vertical-rl;
  text-orientation: mixed; transform: rotate(180deg);
  text-transform: uppercase;
  min-width: 40px; display: flex; align-items: center; justify-content: center;
}
.alp-day-content { padding: 14px 20px; }
.alp-day-title {
  font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px;
}
.alp-day-desc { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 300; }

.alp-right {}
.alp-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.alp-metric {
  background: rgba(255,255,255,0.05);
  padding: 28px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}
.alp-metric:hover { background: rgba(0,174,239,0.12); border-color: rgba(0,174,239,0.3); }
.alp-metric-n {
  font-family: var(--serif); font-size: 42px; font-weight: 700;
  color: var(--cyan); line-height: 1; margin-bottom: 6px;
}
.alp-metric-l {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.alp-cta {
  margin-top: 24px;
  background: var(--cyan); padding: 32px;
}
.alp-cta-text {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.alp-cta-sub {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.75);
}


/* ═══════════════════════════════════════════════════
   COACHES
═══════════════════════════════════════════════════ */
.coaches-section { padding: 120px 80px; }
.coaches-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.coaches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coach-card {
  background: var(--white); overflow: hidden;
  border: 1px solid var(--mist);
  transition: transform 0.3s, box-shadow 0.3s;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.coach-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: var(--smoke);
}
.coach-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.5s ease;
  filter: grayscale(30%);
}
.coach-card:hover .coach-photo-img { transform: scale(1.04); filter: grayscale(0%); }
.coach-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.coach-cert {
  position: absolute; top: 16px; left: 16px;
  background: var(--cyan); color: var(--white);
  font-size: 8px; font-weight: 700; letter-spacing: 0.3em;
  padding: 4px 10px; text-transform: uppercase;
}
.coach-body { padding: 28px 24px; }
.coach-name {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  margin-bottom: 2px; letter-spacing: -0.01em;
}
.coach-name-cn {
  font-size: 11px; letter-spacing: 0.15em; color: var(--cyan);
  margin-bottom: 4px;
}
.coach-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--mid); text-transform: uppercase; margin-bottom: 14px;
}
.coach-bio {
  font-size: 12px; line-height: 1.7; color: #666; font-weight: 300;
  margin-bottom: 20px;
}

/* Pricing table inside coach card */
.coach-rates-label {
  font-size: 8px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 10px;
}
.coach-rates {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--mist);
}
.rate-cell {
  background: var(--smoke); padding: 10px; text-align: center;
  transition: background 0.2s;
}
.rate-cell:hover { background: rgba(0,174,239,0.08); }
.rate-lessons {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 3px;
}
.rate-price {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--black); line-height: 1;
}
.rate-total { font-size: 9px; color: var(--mid); margin-top: 2px; }


/* ═══════════════════════════════════════════════════
   JUNIOR
═══════════════════════════════════════════════════ */
.junior-section {
  padding: 120px 80px;
  background: var(--smoke);
}
.junior-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.junior-photo-wrap { position: relative; }
.junior-photo {
  width: 100%; aspect-ratio: 1;
  background:
    url('https://firebasestorage.googleapis.com/v0/b/web-maker-app.appspot.com/o/assets%2FdRESwkJCH9bZP29kGCc9agUxlz23%2Fjunior%201.png?alt=media&token=fa1db7a9-a8c7-4a07-9967-376e8876d70c')
    center/cover;
}
.junior-tag-over {
  position: absolute; bottom: 0; right: 0;
  background: var(--black); padding: 24px 28px;
}
.jto-title {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  color: var(--white); margin-bottom: 4px;
}
.jto-cn { font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); }

.junior-body { display: flex; flex-direction: column; gap: 20px; }
.junior-points { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.jpoint {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; background: var(--white);
  border-right: 3px solid transparent; transition: all 0.25s;
}
.jpoint:hover { border-right-color: var(--cyan); background: rgba(0,174,239,0.03); }
.jp-num {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--cyan); opacity: 0.5; line-height: 1; flex-shrink: 0;
}
.jp-title {
  font-size: 13px; font-weight: 700; margin-bottom: 3px; letter-spacing: 0.02em;
}
.jp-desc { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.5; }


/* ═══════════════════════════════════════════════════
   CAMPS
═══════════════════════════════════════════════════ */
.camps-section { padding: 120px 80px; }
.camps-header { margin-bottom: 56px; }
.camps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 1px; background: var(--mist);
}
.camp-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.3s;
}
.camp-card:hover { background: var(--black); }
.camp-card:hover .camp-title { color: var(--white); }
.camp-card:hover .camp-desc { color: rgba(255,255,255,0.55); }
.camp-card:hover .camp-items li { color: rgba(255,255,255,0.55); }
.camp-card:hover .camp-cat { color: var(--cyan); }
.camp-icon { font-size: 28px; margin-bottom: 16px; }
.camp-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
  transition: color 0.3s;
}
.camp-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  margin-bottom: 12px; line-height: 1.1; transition: color 0.3s;
}
.camp-desc {
  font-size: 13px; color: #666; font-weight: 300; line-height: 1.65;
  margin-bottom: 16px; transition: color 0.3s;
}
.camp-items {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
}
.camp-items li {
  font-size: 11px; color: #777; padding-left: 12px;
  position: relative; transition: color 0.3s;
}
.camp-items li::before {
  content: '—'; position: absolute; left: 0; color: var(--cyan); font-size: 10px;
}


/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-section { padding: 120px 80px; background: var(--black); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}

.contact-left .label { color: var(--cyan); }
.contact-left .display { color: var(--white); }
.contact-left .lead { color: rgba(255,255,255,0.5); margin-top: 20px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.cdetail {
  display: flex; gap: 16px; align-items: flex-start;
}
.cd-icon {
  width: 40px; height: 40px; background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.cd-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 2px;
}
.cd-value { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 300; }

/* Big phone */
.contact-phone-big {
  display: inline-block;
  font-family: var(--serif); font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; color: var(--white); letter-spacing: -0.01em;
  margin-top: 32px;
}
.contact-phone-big span { color: var(--cyan); }

.contact-right {}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.cf-input, .cf-select, .cf-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: var(--sans); font-size: 14px;
  padding: 13px 16px; outline: none; transition: border-color 0.2s;
  width: 100%;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--cyan); }
.cf-select { appearance: none; cursor: pointer; }
.cf-textarea { resize: vertical; min-height: 90px; }
.cf-submit {
  width: 100%; padding: 16px;
  background: var(--cyan); color: var(--white);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s; margin-top: 4px;
}
.cf-submit:hover { background: var(--white); color: var(--black); }

/* Select option fix */
.cf-select option { background: #1a1a1a; color: var(--white); }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #080808; padding: 48px 80px 24px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 9px; letter-spacing: 0.3em; color: var(--mid);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 12px; color: var(--mid); font-weight: 300;
  line-height: 1.7; max-width: 280px; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none;
  transition: all 0.2s;
}
.fsoc:hover { border-color: var(--cyan); background: rgba(0,174,239,0.1); }

.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 18px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 12px; color: var(--mid); font-weight: 300;
  text-decoration: none; transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cyan); }


/* ═══════════════════════════════════════════════════
   WECHAT FLOAT
═══════════════════════════════════════════════════ */
.wechat-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 50px; height: 50px; background: #07C160; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(7,193,96,0.4);
  transition: transform 0.2s; text-decoration: none;
}
.wechat-float:hover { transform: scale(1.1); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .section { padding: 80px 40px; }
  .hero-left { padding: 60px 40px; }
  .coaches-grid { grid-template-columns: 1fr 1fr; }
  .facilities-strip { flex-direction: column; padding: 48px 40px; gap: 24px; }
  .facility-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 24px; }
  .facility-item:last-child { border-bottom: none; }
  .trackman-section, .alp-section, .junior-section, .contact-section { padding: 80px 40px; }
  .camps-section { padding: 80px 40px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 360px; }
  .hero-left { padding: 60px 24px; }
  .hero-ghost { font-size: 180px; }

  .about-grid, .trackman-inner, .alp-inner, .junior-inner, .contact-inner
  { grid-template-columns: 1fr; gap: 40px; }

  .programs-list, .camps-grid { grid-template-columns: 1fr; }
  .programs-header, .coaches-header { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .trackman-section, .alp-section, .junior-section, .contact-section, .camps-section
  { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cf-row { grid-template-columns: 1fr; }
  .alp-metrics { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════
   BROCHURE SECTION
═══════════════════════════════════════════════════ */
#brochure {
  background: var(--black);
  padding: 120px 80px;
  position: relative; overflow: hidden;
}
.bro-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.bro-ghost {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-size: 320px; font-weight: 700;
  color: rgba(255,255,255,0.025); pointer-events: none; letter-spacing: -0.05em;
}
.bro-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.bro-left .label { color: var(--cyan); }
.bro-left .display { color: var(--white); }
.bro-sub {
  font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 300;
  line-height: 1.7; margin-top: 16px; margin-bottom: 32px;
}
.bro-note {
  padding: 16px; background: rgba(0,174,239,0.08);
  border-left: 3px solid var(--cyan);
  font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6;
  margin-top: 24px;
}
.bro-note strong { color: var(--cyan); }
.bro-right { display: flex; flex-direction: column; gap: 20px; }

/* Preview card */
.bro-preview {
  background: var(--white); overflow: hidden;
}
.bro-preview-cover {
  width: 100%; aspect-ratio: 210/130;
  background: linear-gradient(135deg, #1A2830 0%, #0D1A20 60%, #0a1520 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; position: relative; overflow: hidden;
}
.bro-preview-cover::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,174,239,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,174,239,0.04) 1px,transparent 1px);
  background-size: 28px 28px;
}
.bro-cover-title {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--white); text-align: center; line-height: 1.1; position: relative; z-index: 2;
}
.bro-cover-title span { color: var(--cyan); display: block; }
.bro-cover-sub {
  font-size: 8px; font-weight: 700; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; position: relative; z-index: 2;
}
.bro-preview-foot {
  padding: 12px 18px; background: var(--smoke);
  display: flex; align-items: center; justify-content: space-between;
}
.bpf-name { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.bpf-type { font-size: 10px; color: var(--mid); }

/* Chapters */
.bro-chapters {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08);
}
.bro-ch {
  background: rgba(255,255,255,0.04); padding: 14px 12px;
  font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 300;
  display: flex; align-items: center; gap: 7px;
  transition: background 0.2s;
}
.bro-ch:hover { background: rgba(0,174,239,0.1); color: var(--white); }
.bro-ch-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* Download form */
.bro-form-wrap { background: rgba(255,255,255,0.04); padding: 24px; border: 1px solid rgba(255,255,255,0.1); }
.bro-form-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.bro-form { display: flex; flex-direction: column; gap: 10px; }
.bro-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bro-inp {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: var(--sans); font-size: 13px;
  padding: 10px 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.bro-inp::placeholder { color: rgba(255,255,255,0.25); }
.bro-inp:focus { border-color: var(--cyan); }
.bro-sel { appearance: none; cursor: pointer; }
.bro-sel option { background: #1a1a1a; }
.bro-chk {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; cursor: pointer;
}
.bro-chk input { accent-color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.bro-submit {
  padding: 13px; background: var(--cyan); color: var(--white);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s;
}
.bro-submit:hover { background: var(--white); color: var(--black); }
.bro-success {
  display: none; padding: 24px; text-align: center;
  background: rgba(0,174,239,0.08); border: 1px solid rgba(0,174,239,0.3);
}
.bro-success-icon { font-size: 32px; margin-bottom: 8px; }
.bro-success-title {
  font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 6px;
}
.bro-success-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 14px; }
.bro-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; background: var(--cyan); color: var(--white);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.bro-dl-btn:hover { background: var(--white); color: var(--black); }

/* ═══════════════════════════════════════════════════
   PORTAL SECTION
═══════════════════════════════════════════════════ */
#portal {
  background: var(--smoke);
  padding: 120px 80px;
}
.portal-sec-inner { max-width: 1200px; margin: 0 auto; }
.portal-sec-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 48px;
}
.portal-sec-header .lead { font-size: 14px; max-width: 100%; }

.portal-tabs-wrap { background: var(--white); }
.ps-tabs {
  display: flex; border-bottom: 2px solid var(--mist);
  overflow-x: auto; scrollbar-width: none;
}
.ps-tabs::-webkit-scrollbar { display: none; }
.ps-tab {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); background: none; border: none;
  padding: 14px 28px; cursor: pointer; white-space: nowrap;
  position: relative; transition: color 0.2s; flex-shrink: 0;
}
.ps-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--cyan); transform: scaleX(0);
  transition: transform 0.25s;
}
.ps-tab:hover { color: var(--ink); }
.ps-tab.active { color: var(--black); }
.ps-tab.active::after { transform: scaleX(1); }

.ps-panel { display: none; }
.ps-panel.active { display: block; animation: tabIn 0.2s ease; }
@keyframes tabIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }

.ps-panel-intro {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: rgba(0,174,239,0.05);
  border-left: 3px solid var(--cyan);
}
.ps-panel-intro-text { font-size: 13px; color: var(--ink); font-weight: 300; line-height: 1.6; }
.ps-panel-intro-text strong { font-weight: 700; }
.ps-at-badge {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); padding: 5px 10px; border: 1px solid var(--mist); white-space: nowrap;
}
.ps-frame-wrap { position: relative; min-height: 520px; background: var(--smoke); }
.ps-frame {
  display: block; width: 100%; min-height: 580px; border: none; background: transparent;
}
.ps-frame-wrap.live .ps-placeholder { display: none; }
.ps-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 48px 32px; text-align: center;
  background: var(--smoke);
}
.ps-ph-icon { font-size: 36px; margin-bottom: 14px; }
.ps-ph-title { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.ps-ph-desc { font-size: 13px; color: var(--mid); line-height: 1.7; max-width: 440px; margin-bottom: 20px; }
.ps-ph-desc code { background: rgba(0,0,0,0.06); padding: 1px 5px; font-family: monospace; font-size: 11px; color: var(--cyan); }
.ps-ph-steps { display: flex; flex-direction: column; gap: 10px; text-align: left; max-width: 400px; width: 100%; }
.ps-ph-step { display: flex; gap: 12px; align-items: flex-start; }
.ps-ph-sn {
  width: 22px; height: 22px; border-radius: 50%; background: var(--cyan);
  color: var(--white); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ps-ph-st { font-size: 12px; line-height: 1.6; color: var(--ink); font-weight: 300; }
.ps-ph-st strong { font-weight: 700; }
.ps-ph-st code { background: rgba(0,0,0,0.06); padding: 1px 4px; font-family: monospace; font-size: 10px; color: var(--cyan); }
.ps-ph-link { font-size: 11px; font-weight: 700; color: var(--cyan); margin-top: 4px; }

/* Lesson type chips below Book tab */
.ps-lesson-types {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--mist);
}
.ps-lt {
  background: var(--white); padding: 16px 14px; text-align: center;
  transition: background 0.2s;
}
.ps-lt:hover { background: var(--black); }
.ps-lt:hover .ps-lt-name { color: var(--white); }
.ps-lt:hover .ps-lt-dur { color: var(--cyan); }
.ps-lt-icon { font-size: 18px; margin-bottom: 6px; }
.ps-lt-name { font-size: 12px; font-weight: 600; margin-bottom: 3px; transition: color 0.2s; }
.ps-lt-dur { font-size: 10px; color: var(--cyan); font-weight: 700; }

/* TrackMan metrics legend */
.ps-metrics-legend {
  padding: 16px 20px; background: rgba(0,174,239,0.04);
  border-top: 1px solid var(--mist);
}
.ps-ml-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 10px;
}
.ps-ml-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.ps-ml-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink); }
.ps-ml-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ── RESPONSIVE ADDITIONS ── */
@media(max-width:1100px) {
  #brochure, #portal { padding: 80px 40px; }
}
@media(max-width:900px) {
  .bro-inner { grid-template-columns: 1fr; gap: 40px; }
  .portal-sec-header { grid-template-columns: 1fr; gap: 24px; }
  .bro-chapters { grid-template-columns: 1fr 1fr; }
  .ps-lesson-types { grid-template-columns: 1fr 1fr; }
  .ps-ml-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width:600px) {
  #brochure, #portal { padding: 64px 20px; }
  .bro-form-row { grid-template-columns: 1fr; }
  .bro-chapters { grid-template-columns: 1fr; }
  .ps-lesson-types { grid-template-columns: 1fr 1fr; }
  .ps-tab { padding: 11px 16px; font-size: 10px; }
}

  

/* ═══════════════════════════════════════════════════
   PAGE TEMPLATE (photo left / text right)
═══════════════════════════════════════════════════ */
.page-section {
  padding: 120px 80px;
  background: var(--white);
}

.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Photo column */
.page-photo-col { position: relative; }

.page-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.page-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.page-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  z-index: 2;
}

.page-photo--placeholder {
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--mist);
}

.page-photo-placeholder-text {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  line-height: 1.6;
}

/* Text column */
.page-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

.page-body p { margin-bottom: 16px; }
.page-body p:last-child { margin-bottom: 0; }

.page-body strong { font-weight: 600; color: var(--ink); }
.page-body em { font-style: italic; color: var(--cyan); }

.page-body ul {
  list-style: none;
  padding: 0; margin: 0 0 16px 0;
  display: flex; flex-direction: column; gap: 8px;
}

.page-body ul li {
  padding-left: 20px;
  position: relative;
}

.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1.5px;
  background: var(--cyan);
}

.page-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .page-section { padding: 80px 40px; }
  .page-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-photo { aspect-ratio: 4 / 3; }
}

@media (max-width: 600px) {
  .page-section { padding: 64px 20px; }
}
