/* ============================================================
   MYND IN MOTION — Shared Stylesheet
   Version: Final · June 2026
   Fonts: Oswald (Display) · Montserrat (Body) · Caveat (Accent)
   ============================================================ */

/* --- TOKENS --- */
:root {
  --navy:      #03386C;
  --navy-deep: #022A52;
  --blue:      #158ACB;
  --blue-soft: #5BB3E0;
  --sky:       #7FDBFF;
  --sky-soft:  #C9F0FF;
  --pink:      #E49DD6;
  --pink-soft: #F3CDE9;
  --steel:     #ADBFD7;
  --steel-soft:#E4EAF2;
  --white:     #FFFFFF;
  --paper:     #F5F9FD;
  --ink-soft:  #4A6079;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-hand:    'Caveat', cursive;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1160px;
  --section-pad: clamp(64px, 9vw, 120px);
}

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

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-pad) 0; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin: 0 auto 48px; text-align: center; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  color: var(--navy);
}
h1 { font-size: clamp(38px, 6vw, 76px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.8vw, 44px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--pink);
  display: inline-block;
}
.lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 58ch;
}

.signature { font-family: var(--font-hand); font-weight: 700; font-size: 30px; color: #C45FAE; }
.hand-note  { font-family: var(--font-hand); font-weight: 600; font-size: 20px; color: #C45FAE; display: inline-block; transform: rotate(-4deg); line-height: 1.2; }

/* --- SPACING HELPERS --- */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* --- COLOUR BACKGROUNDS --- */
.bg-dark  { background: var(--navy); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark .lede { color: rgba(255,255,255,.72); }
.bg-steel { background: var(--steel-soft); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn-primary  { background: var(--pink); color: var(--navy-deep); box-shadow: 0 8px 22px -8px rgba(228,157,214,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(228,157,214,.8); }
.btn-light    { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline  { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost    { background: transparent; border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* --- PERSONALITY LAYER --- */
.marker-pink { position: relative; display: inline-block; }
.marker-pink::before {
  content: "";
  position: absolute;
  left: -5px; right: -5px; bottom: 4%;
  height: 36%;
  background: var(--pink);
  opacity: .6;
  z-index: -1;
  transform: rotate(-1.2deg);
  border-radius: 4px;
}

.pin-photo { position: relative; transform: rotate(-3deg); }
.pin-photo .ph-img {
  border: 8px solid var(--white);
  box-shadow: 0 20px 40px -12px rgba(3,56,108,.35);
}
.pin-photo::after {
  content: "";
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 3px 6px rgba(3,56,108,.3);
  z-index: 2;
}
.pin-photo.right { transform: rotate(3deg); }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: linear-gradient(to bottom, rgba(2,30,58,.92) 0%, rgba(2,30,58,.6) 70%, transparent 100%);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: var(--navy);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(2,30,58,.25);
}
/* Home & Performance: stronger gradient over bright water texture */
.nav--water {
  background: linear-gradient(to bottom, rgba(2,30,58,.97) 0%, rgba(2,30,58,.8) 60%, rgba(2,30,58,.2) 100%);
}
.nav--water.scrolled { background: var(--navy); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.nav-logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: .03em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 13px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

@media (max-width: 920px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(78vw, 320px);
    background: var(--paper); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 40px; gap: 26px;
    transition: right .4s ease; box-shadow: -20px 0 60px rgba(3,56,108,.15);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .hide-mobile { display: none; }
}

/* --- LANE DIVIDER --- */
.lane-div { position: relative; height: 50px; overflow: hidden; line-height: 0; }
.lane-div svg {
  position: absolute; top: 50%; left: 0;
  width: 200%; height: 42px;
  transform: translateY(-50%);
  animation: laneDrift 26s linear infinite;
}
@keyframes laneDrift {
  from { transform: translateY(-50%) translateX(0); }
  to   { transform: translateY(-50%) translateX(-50%); }
}

/* --- PHOTO PLACEHOLDERS --- */
.ph-img {
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--steel-soft), var(--steel));
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden; min-height: 200px;
}
.ph-img::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(3,56,108,.05) 0 2px, transparent 2px 14px);
}
.ph-img .ph-tag {
  position: relative; z-index: 1; margin: 14px;
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: rgba(255,255,255,.88);
  padding: 6px 12px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
}
.ph-img .ph-tag::before { content: "📷"; font-size: 11px; }
.ph-img.t-navy { background: linear-gradient(145deg, #3F6694, var(--navy)); }
.ph-img.t-blue { background: linear-gradient(145deg, var(--blue-soft), var(--blue)); }
.ph-img.t-sky  { background: linear-gradient(145deg, var(--sky-soft), var(--sky)); }
.ph-img.t-pink { background: linear-gradient(145deg, var(--pink-soft), var(--pink)); }

/* --- HERO (HOME) --- */
.hero {
  position: relative;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 110px; overflow: hidden;
  background: var(--navy); color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .surface {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(127,219,255,.35), transparent 55%),
    radial-gradient(ellipse at 85% 78%, rgba(228,157,214,.28), transparent 55%),
    linear-gradient(160deg, #022A52 0%, #03386C 55%, #0A4D8C 100%);
}
.hero-bg .rip {
  position: absolute; left: -10%; right: -10%; height: 220px;
  background: linear-gradient(90deg, transparent, rgba(127,219,255,.12), transparent);
  animation: ripple 9s ease-in-out infinite;
}
.hero-bg .rip:first-child { top: 18%; }
.hero-bg .rip:last-child  { top: 58%; animation-delay: 3.5s; }
@keyframes ripple {
  0%, 100% { transform: translateX(-6%) scaleY(1); opacity: .5; }
  50%       { transform: translateX(6%) scaleY(1.4); opacity: .9; }
}
.hero-bg .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,30,58,.18) 0%, rgba(2,30,58,.62) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-inner h1 { color: var(--white); margin: 18px 0 22px; }
.hero-inner h1 em {
  font-style: normal; color: var(--pink);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 5px;
  text-underline-offset: 10px;
}
.hero-inner .eyebrow { color: var(--sky); }
.hero-inner .lede { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-pillars { display: flex; gap: 28px; margin-top: 52px; flex-wrap: wrap; }
.hero-pillars div { font-size: 13px; color: rgba(255,255,255,.6); }
.hero-pillars strong { display: block; font-family: var(--font-display); font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.video-badge-hero {
  position: absolute; bottom: 26px; right: 26px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22); padding: 8px 14px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.video-badge-hero .play { width: 16px; height: 16px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; }
.video-badge-hero .play::after { content: ""; border-style: solid; border-width: 3.5px 0 3.5px 5.5px; border-color: transparent transparent transparent var(--navy-deep); margin-left: 1px; }
.scroll-cue { position: absolute; left: 26px; bottom: 26px; z-index: 2; display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.scroll-cue .line { width: 1px; height: 32px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--sky); animation: drip 2.4s ease-in-out infinite; }
@keyframes drip { 0% { top: -50%; } 100% { top: 100%; } }

/* --- PAGE HERO (subpages) --- */
.page-hero {
  position: relative;
  min-height: 50vh; display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 52px;
  overflow: hidden; background: var(--navy); color: var(--white);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin: 12px 0 14px; max-width: 22ch; }
.page-hero .lede { color: rgba(255,255,255,.75); }
.crumb { font-family: var(--font-display); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.48); margin-bottom: 16px; }
.crumb a:hover { color: var(--sky); }

/* --- PILLAR TABS --- */
.pillar-tabs { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.pillar-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .04em;
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  border: 2px solid var(--steel-soft); background: var(--white); color: var(--ink-soft);
  transition: all .22s ease;
}
.pillar-tab.active[data-pillar="mynd"]    { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pillar-tab.active[data-pillar="body"]    { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pillar-tab.active[data-pillar="emotion"] { background: var(--pink); border-color: var(--pink); color: var(--navy-deep); }
.pillar-panels { margin-top: 40px; }
.pillar-panel { display: none; }
.pillar-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.pillar-panel[data-pillar="mynd"] h3    { color: var(--navy); }
.pillar-panel[data-pillar="body"] h3    { color: var(--blue); }
.pillar-panel[data-pillar="emotion"] h3 { color: #C45FAE; }
@media (max-width: 820px) { .pillar-panel.active { grid-template-columns: 1fr; gap: 28px; } .pillar-panel .ph-img { order: -1; } }

/* --- PILLS --- */
.pill { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; display: inline-block; }
.pill-navy  { background: rgba(3,56,108,.08);  color: var(--navy); }
.pill-blue  { background: rgba(21,138,203,.12); color: var(--blue); }
.pill-pink  { background: rgba(228,157,214,.22); color: #C45FAE; }
.pill-sky   { background: rgba(127,219,255,.22); color: #0C6D96; }

/* --- OFFER CARDS --- */
.offer-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(3,56,108,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -28px rgba(3,56,108,.3); border-color: transparent; }
.offer-card .icon-badge { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.offer-card .tag { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.offer-card h3 { font-size: 20px; }
.offer-card .arrow-link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.offer-card .arrow-link span { transition: transform .22s ease; }
.offer-card:hover .arrow-link span { transform: translateX(4px); }

/* --- TESTIMONIALS --- */
.testi-filter { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.testi-filter button { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 9px 18px; border-radius: 100px; border: 2px solid var(--steel-soft); background: transparent; color: var(--ink-soft); }
.testi-filter button.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.testi-rail { display: flex; gap: 22px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
.testi-rail::-webkit-scrollbar { height: 5px; }
.testi-rail::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 10px; }
.testi-card { scroll-snap-align: start; flex: 0 0 340px; background: var(--white); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testi-card .stars { color: var(--pink); font-size: 14px; letter-spacing: 2px; }
.testi-card p { font-style: italic; font-size: 15.5px; color: var(--navy); font-weight: 500; line-height: 1.6; }
.testi-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0; object-fit: cover; object-position: center top; }
.testi-foot { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.3; }
.testi-role { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.testi-name { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.testi-role { font-size: 12px; color: var(--ink-soft); }

/* --- CREDENTIALS STRIP --- */
.cred-strip { display: flex; flex-wrap: wrap; gap: 32px; padding: 36px 0; border-top: 1px solid rgba(3,56,108,.1); }
.cred-item { display: flex; gap: 11px; align-items: flex-start; max-width: 220px; font-size: 13.5px; color: var(--ink-soft); }
.cred-item .ico { font-size: 20px; flex-shrink: 0; }

/* --- STEPS --- */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(3,56,108,.1); }
.step:last-child { border-bottom: none; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--steel-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.step h3 { margin-bottom: 7px; font-size: 18px; }
.step p { color: var(--ink-soft); font-size: 14.5px; max-width: 62ch; }
.steps.on-dark .step { border-color: rgba(255,255,255,.12); }
.steps.on-dark .step-num { background: rgba(255,255,255,.1); color: var(--sky); }
.steps.on-dark h3 { color: var(--white); }
.steps.on-dark p { color: rgba(255,255,255,.65); }

/* --- ACCORDION --- */
.accordion-item { border-bottom: 1px solid rgba(3,56,108,.12); }
.accordion-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; background: none; border: none; width: 100%; text-align: left; }
.accordion-head .q { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); }
.accordion-head .plus { font-size: 22px; color: var(--pink); transition: transform .3s ease; flex-shrink: 0; }
.accordion-item.open .plus { transform: rotate(45deg); }
/* --- ACCORDION --- */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.accordion-item.open .accordion-body {
  max-height: 1000px;
}
.accordion-body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 66ch;
  line-height: 1.75;
  padding: 0 0 22px;
  margin: 0;
}

/* --- CAMP CARDS --- */
.camp-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.camp-card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -26px rgba(3,56,108,.3); }
.camp-card .thumb { aspect-ratio: 16/10; position: relative; display: flex; align-items: flex-end; padding: 14px; }
.camp-card .body  { padding: 24px 26px; }
.camp-date-pill { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: rgba(21,138,203,.1); padding: 5px 12px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }

/* --- VIDEO TILES --- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; } }
.video-tile {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, #022A52, #0A4D8C);
  transition: transform .32s ease;
}
.video-tile.tall { aspect-ratio: 9/14; }
.video-tile.wide { aspect-ratio: 16/9; }
.video-tile:hover { transform: translateY(-6px) scale(1.015); }
.video-tile .vt-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,30,58,0) 30%, rgba(2,30,58,.85) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.video-tile .vt-play { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; align-self: center; margin: auto; transition: transform .28s ease; }
.video-tile:hover .vt-play { transform: scale(1.12); }
.video-tile .vt-play::after { content: ""; border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent var(--navy); margin-left: 3px; }
.video-tile .vt-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; color: var(--white); }
.video-tile .vt-dur { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 3px; }

/* --- GALLERY STRIP --- */
.gallery-strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.gallery-strip::-webkit-scrollbar { height: 5px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 10px; }
.gallery-strip .g { scroll-snap-align: start; flex: 0 0 240px; border-radius: var(--radius-md); aspect-ratio: 4/5; border: 6px solid var(--white); box-shadow: 0 14px 28px -10px rgba(3,56,108,.28); }
.gallery-strip .g:nth-child(odd)  { transform: rotate(-2deg); }
.gallery-strip .g:nth-child(even) { transform: rotate(2deg); }
.gallery-strip .g.wide { flex: 0 0 340px; aspect-ratio: 16/10; }

/* --- TIMELINE --- */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 28px; align-items: center; padding: 32px 0; }
.tl-marker { width: 13px; height: 13px; border-radius: 50%; background: var(--blue); margin: 0 auto; position: relative; }
.tl-marker::before { content: ""; position: absolute; top: -300px; bottom: -300px; left: 50%; width: 2px; background: var(--steel-soft); transform: translateX(-50%); z-index: -1; }
.tl-year { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--blue); margin-bottom: 7px; display: block; text-transform: uppercase; }
.tl-content h3 { margin-bottom: 7px; font-size: 18px; }
.tl-content p { color: var(--ink-soft); font-size: 14.5px; }
.tl-item:nth-child(even) .tl-image   { order: 3; }
.tl-item:nth-child(even) .tl-content { order: 1; text-align: right; }
.tl-item:nth-child(even) .tl-marker  { order: 2; }
@media (max-width: 820px) {
  .tl-item { grid-template-columns: 26px 1fr; gap: 16px; }
  .tl-item .tl-image   { display: none; }
  .tl-item .tl-content { order: 2 !important; text-align: left !important; }
  .tl-item .tl-marker  { order: 1 !important; }
}

/* --- STAT ROW --- */
.stat-row { display: flex; gap: 52px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-display); font-size: clamp(32px, 4vw, 50px); font-weight: 700; color: var(--pink); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.62); max-width: 18ch; margin-top: 4px; }

/* --- INTEGRATION NOTE --- */
.int-note { border-radius: var(--radius-lg); padding: 32px 36px; display: flex; gap: 20px; align-items: flex-start; }
.int-note.dark { background: var(--navy-deep); }
.int-note.light { background: var(--steel-soft); }
.int-note .ni { font-size: 26px; flex-shrink: 0; }
.int-note h3 { font-size: 16px; margin-bottom: 7px; }
.int-note.dark h3 { color: var(--white); }
.int-note p { font-size: 13.5px; line-height: 1.7; }
.int-note.dark p { color: rgba(255,255,255,.66); }
.feat-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.feat { font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; background: rgba(127,219,255,.15); color: var(--sky); }
.feat.light { background: rgba(3,56,108,.1); color: var(--navy); }

/* --- QUOTE BLOCK --- */
.quote-block { display: flex; align-items: center; gap: 44px; }
.quote-block .qmark { font-family: var(--font-hand); font-size: 130px; line-height: .5; color: var(--pink); opacity: .7; flex-shrink: 0; }
.quote-block .quote-text { font-family: var(--font-hand); font-size: clamp(30px, 4.2vw, 52px); font-weight: 600; color: #C45FAE; max-width: 14ch; transform: rotate(-1.5deg); }
@media (max-width: 640px) { .quote-block { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* --- CREDENTIAL CARDS --- */
.cred-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 22px; display: flex; gap: 15px; align-items: flex-start; border: 1px solid rgba(3,56,108,.07); }
.cred-card .ico { font-size: 22px; flex-shrink: 0; }
.cred-card h4 { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cred-card p { font-size: 13px; color: var(--ink-soft); }

/* --- CHECK LIST --- */
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 9px; font-size: 15px; }
.check-list .ck { color: var(--pink); flex-shrink: 0; font-weight: 700; }

/* --- TRACK TOGGLE (Performance page) --- */
.track-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 5px; gap: 4px; margin-top: 34px;
}
.track-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  padding: 11px 24px; border-radius: 100px; border: none;
  background: transparent; color: rgba(255,255,255,.65); transition: all .22s ease;
}
.track-btn.active { background: var(--pink); color: var(--navy-deep); }
.track-panel { display: none; }
.track-panel.active { display: block; }

/* --- BENEFIT CARDS --- */
.benefit-card { background: var(--white); border-radius: var(--radius-md); padding: 26px; }
.benefit-card .ico { font-size: 24px; margin-bottom: 12px; }
.benefit-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.benefit-card p { font-size: 13.5px; color: var(--ink-soft); }

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* --- FOOTER --- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 80px 0 30px; }
.footer h4 { font-family: var(--font-display); color: var(--white); font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-top a { font-size: 14px; display: block; margin-bottom: 10px; color: rgba(255,255,255,.7); }
.footer-top a:hover { color: var(--sky); }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 13.5px; margin-bottom: 18px; }
.footer-newsletter { display: flex; gap: 9px; }
.footer-newsletter input { flex: 1; padding: 11px 15px; border-radius: 100px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: var(--white); font-family: var(--font-body); font-size: 13.5px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.42); }
.footer-bot { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; flex-wrap: wrap; gap: 10px; }

@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

/* --- BOOKING PAGE --- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 26px; }
@media (max-width: 800px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .service-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--white); border: 2px solid rgba(3,56,108,.1); border-radius: var(--radius-md); padding: 20px 17px; cursor: pointer; transition: all .22s ease; position: relative; }
.svc-card:hover { border-color: var(--blue); box-shadow: 0 10px 26px -10px rgba(3,56,108,.18); }
.svc-card.active { border-color: var(--pink); background: var(--pink-soft); }
.svc-card .sico { font-size: 24px; margin-bottom: 8px; }
.svc-card h3 { font-size: 14.5px; margin-bottom: 4px; }
.svc-card .smeta { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }
.svc-badge { position: absolute; top: 11px; right: 11px; font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; }
.svc-badge.free { background: rgba(21,138,203,.12); color: var(--blue); }
.svc-badge.paid { background: rgba(228,157,214,.22); color: #C45FAE; }

.amelia-shell { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 22px 52px -22px rgba(3,56,108,.3); display: grid; grid-template-columns: 276px 1fr; margin-top: 26px; }
@media (max-width: 820px) { .amelia-shell { grid-template-columns: 1fr; } }
.am-sidebar { background: var(--navy); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; }
.am-powered { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.33); }
.am-svc-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.2; }
.am-svc-price { font-family: var(--font-hand); font-size: 24px; color: var(--pink); }
.am-sep { height: 1px; background: rgba(255,255,255,.12); }
.am-detail { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.62); }
.am-detail .i { font-size: 14px; flex-shrink: 0; }
.am-ann { margin-top: auto; font-size: 11.5px; color: rgba(255,255,255,.38); line-height: 1.6; }
.am-main { padding: 32px 28px; }
.am-steps { display: flex; border-radius: 100px; overflow: hidden; background: var(--steel-soft); margin-bottom: 26px; }
.am-step { flex: 1; text-align: center; padding: 10px 10px; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); transition: all .2s; }
.am-step.on   { background: var(--navy); color: var(--white); }
.am-step.done { background: rgba(3,56,108,.1); color: var(--navy); }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cal-head h3 { font-size: 16px; }
.cal-nav-btns { display: flex; gap: 7px; }
.cal-nav-btns button { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--steel); background: none; cursor: pointer; font-size: 13px; color: var(--navy); }
.cgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cgrid .dow { font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 7px; }
.cday { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--ink-soft); transition: all .18s; }
.cday.m  { color: rgba(3,56,108,.2); }
.cday.av { background: rgba(21,138,203,.09); color: var(--blue); font-weight: 600; cursor: pointer; }
.cday.av:hover { background: rgba(21,138,203,.2); }
.cday.sel { background: var(--navy); color: var(--white); cursor: pointer; }
.slots-lbl { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin: 18px 0 10px; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot { font-family: var(--font-display); font-size: 12px; font-weight: 600; padding: 9px 15px; border-radius: 100px; border: 1.5px solid var(--steel); color: var(--ink-soft); cursor: pointer; transition: all .18s; }
.slot:hover { border-color: var(--blue); color: var(--blue); }
.slot.sel { background: var(--navy); border-color: var(--navy); color: var(--white); }
.slot.bsy { opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.am-form-area { display: none; padding-top: 18px; border-top: 1.5px solid var(--steel-soft); margin-top: 18px; }
.am-form-area.show { display: block; }
.am-form-hd { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 13px; }
.am-summary { background: var(--steel-soft); border-radius: 11px; padding: 13px 15px; margin-bottom: 14px; font-size: 13px; display: flex; flex-direction: column; gap: 5px; }
.am-summary .row { display: flex; justify-content: space-between; }
.am-summary strong { font-weight: 600; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
@media (max-width: 480px) { .form-row2 { grid-template-columns: 1fr; } }
.inp { width: 100%; padding: 12px 14px; border-radius: 11px; border: 1.5px solid var(--steel); font-family: var(--font-body); font-size: 13.5px; background: var(--paper); color: var(--navy); }
.inp:focus { outline: none; border-color: var(--blue); }
.inp::placeholder { color: rgba(3,56,108,.3); }
.am-success { display: none; text-align: center; padding: 40px 20px; }
.am-success.show { display: block; }
.am-success .ck { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 16px; }

/* --- MEMBER AREA --- */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 28px 60px; background: var(--navy); position: relative; overflow: hidden; }
.login-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.login-card { position: relative; z-index: 1; background: var(--white); border-radius: var(--radius-lg); padding: 44px 38px; width: 100%; max-width: 420px; box-shadow: 0 32px 72px -28px rgba(2,30,58,.65); }
.login-card .welcome { font-family: var(--font-hand); font-size: 21px; color: var(--pink); display: block; margin-bottom: 4px; }
.login-card .sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 26px; }
.login-label { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 7px; }
.login-footer { margin-top: 18px; text-align: center; font-size: 12.5px; color: var(--ink-soft); }
.login-footer a { color: var(--blue); font-weight: 600; }
.login-powered { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: rgba(3,56,108,.38); }

.dash-wrap { display: none; }
.dash-wrap.show { display: block; }
.dash-top { background: var(--navy); padding: 90px 0 32px; position: relative; overflow: hidden; }
.dash-top-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.dash-greeting { font-family: var(--font-hand); font-size: 22px; color: var(--pink); display: block; margin-bottom: 5px; }
.dash-top h1 { color: var(--white); font-size: clamp(24px, 3.5vw, 36px); }
.dash-top p { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 7px; }
.dash-body { padding: 40px 0 80px; }
.dash-grid { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-sidebar { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 20px -8px rgba(3,56,108,.12); position: sticky; top: 80px; }
.dash-user { background: var(--navy); padding: 20px; display: flex; align-items: center; gap: 11px; }
.dash-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.dash-uname { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--white); }
.dash-urole { font-size: 11px; color: rgba(255,255,255,.48); }
.dash-nav { padding: 10px 8px; }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 11px; border-radius: 11px; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 2px; cursor: pointer; transition: all .2s; }
.dash-nav a:hover, .dash-nav a.active { background: var(--steel-soft); color: var(--navy); }
.dash-nav a.active { color: var(--blue); }
.dash-nav .dico { font-size: 15px; }
.dash-sep { height: 1px; background: var(--steel-soft); margin: 6px 11px; }
.dash-logout-area { padding: 10px 20px 14px; }
.dash-logout-area a { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; }
.dash-main { display: flex; flex-direction: column; gap: 20px; }
.dash-view { display: none; }
.dash-view.active { display: flex; flex-direction: column; gap: 20px; }
.dash-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 580px) { .dash-stat-row { grid-template-columns: 1fr 1fr; } }
.dash-stat { background: var(--white); border-radius: var(--radius-md); padding: 18px 20px; box-shadow: 0 4px 14px -5px rgba(3,56,108,.1); }
.dash-stat .snum { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--pink); line-height: 1; }
.dash-stat .slbl { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }
.next-session { background: var(--navy); border-radius: var(--radius-lg); padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.next-session h3 { color: var(--white); font-size: 16px; margin-bottom: 3px; }
.next-session p { color: rgba(255,255,255,.65); font-size: 13.5px; }
.session-date { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--sky); }
.lesson-list { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 16px -7px rgba(3,56,108,.1); }
.ll-head { padding: 16px 22px; border-bottom: 1px solid var(--steel-soft); display: flex; justify-content: space-between; align-items: center; }
.ll-head h3 { font-size: 14.5px; }
.ll-item { display: flex; align-items: center; gap: 12px; padding: 13px 22px; border-bottom: 1px solid var(--steel-soft); }
.ll-item:last-child { border-bottom: none; }
.ll-num { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--ink-soft); width: 22px; flex-shrink: 0; }
.ll-ico { font-size: 15px; flex-shrink: 0; }
.ll-title { font-size: 13.5px; font-weight: 500; flex: 1; }
.ll-status { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; flex-shrink: 0; }
.ll-status.done    { background: rgba(21,138,203,.1);   color: var(--blue); }
.ll-status.current { background: rgba(228,157,214,.22); color: #C45FAE; }
.ll-status.locked  { background: var(--steel-soft);     color: var(--ink-soft); }
.course-card-ld { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 16px -7px rgba(3,56,108,.1); }
.cc-thumb { height: 110px; position: relative; display: flex; align-items: flex-end; padding: 12px; }
.cc-thumb.ct-blue { background: linear-gradient(135deg, var(--blue-soft), var(--blue)); }
.cc-thumb.ct-pink { background: linear-gradient(135deg, var(--pink-soft), var(--pink)); }
.cc-thumb.ct-sky  { background: linear-gradient(135deg, var(--sky-soft),  var(--sky));  }
.cc-thumb.ct-navy { background: linear-gradient(135deg, #3F6694, var(--navy)); }
.cc-tag { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.88); color: var(--navy); padding: 4px 10px; border-radius: 100px; }
.cc-body { padding: 18px 20px; }
.cc-body h3 { font-size: 15px; margin-bottom: 5px; }
.cc-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 13px; }
.prog-track { height: 6px; border-radius: 100px; background: var(--steel-soft); overflow: hidden; }
.prog-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--pink)); }
.prog-lbl { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); margin-top: 5px; }
.cc-foot { padding: 12px 20px; border-top: 1px solid var(--steel-soft); display: flex; justify-content: space-between; align-items: center; }

/* ============================================================
   REAL IMAGES — overrides for photo placeholders
   ============================================================ */

/* Full-bleed image inside any container */
.real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}

/* Portrait images (taller, centre-top for face visibility) */
.portrait-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 12px;
}

/* Gallery strip real images */
.gallery-strip .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Camp card image */
.camp-card .body-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Hero background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: 0;
}

/* Timeline real images */
.tl-img-real {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}

/* Pin-photo with real image */
.pin-wrap img {
  display: block;
  border-radius: 10px;
}

/* Steps on dark background */
.bg-dark .step { border-bottom-color: rgba(255,255,255,.12); }
.bg-dark .step h3 { color: white; }
.bg-dark .step p { color: rgba(255,255,255,.72); }
.bg-dark .step-num { background: rgba(255,255,255,.1); color: var(--sky); }

/* Logo image in nav */
.nav-logo-img { height: 76px; width: auto; filter: brightness(0) invert(1); display: block; }
.nav-logo:hover .nav-logo-img { opacity: .85; }

@keyframes ld { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ============================================================
   MOBILE RESPONSIVE — Inline Grid Overrides
   All sections using inline display:grid stack to 1 column
   on screens below 680px
   ============================================================ */

@media (max-width: 680px) {

  /* --- Inline grid containers → single column --- */
  [style*="display:grid"],
  [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  /* --- Inline flex rows → column --- */
  [style*="display:flex"][style*="gap"] {
    flex-wrap: wrap !important;
  }

  /* --- NOW stats: keep 2 columns on mobile (not 4) --- */
  .now-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  /* --- Carousel: shrink image width --- */
  .umGallery-item,
  .swimGallery-item {
    flex: 0 0 160px !important;
    height: 240px !important;
  }

  /* --- Antwort-Grid in Fragebogen: 2 cols on small --- */
  .antwort-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* --- Input rows → single column --- */
  .input-row {
    grid-template-columns: 1fr !important;
  }

  /* --- Pin photos → constrain width --- */
  .pin-photo img, .ph-img {
    width: 100% !important;
    max-width: 300px !important;
  }

  /* --- Booking cards → full width --- */
  .grid.grid-3 {
    grid-template-columns: 1fr !important;
  }

  /* --- FAQ quick-nav pills → wrap --- */
  #allgemein ~ div, #schwimmen ~ div {
    flex-wrap: wrap;
  }

  /* --- Performance example paths: no span 3 --- */
  [style*="grid-column: span 3"],
  [style*="grid-column:span 3"] {
    grid-column: span 1 !important;
  }

  /* --- Reduce section padding on mobile --- */
  .section { padding: 48px 0; }

  /* --- Hero min-height --- */
  .page-hero { min-height: 320px !important; }

  /* --- CTA sections --- */
  [style*="min-height:440px"] { min-height: 360px !important; }
  [style*="min-height:460px"] { min-height: 360px !important; }

  /* --- Über mich gallery carousel --- */
  #umGallery-strip, #swimGallery-strip {
    height: 240px;
  }
}

@media (max-width: 480px) {

  /* --- Very small phones: even tighter --- */
  [style*="display:grid"],
  [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* --- Carousel even smaller --- */
  .umGallery-item,
  .swimGallery-item {
    flex: 0 0 140px !important;
    height: 200px !important;
  }

  /* --- Reduce font sizes in hero --- */
  .page-hero h1 { font-size: 26px !important; }

  /* --- Accordion body padding --- */
  
  /* --- Booking cards: compact padding --- */
  [style*="padding:28px"] { padding: 20px !important; }
  [style*="padding:26px"] { padding: 18px !important; }

  /* --- Steps on small phones --- */
  .step { gap: 12px; }
  .step-num { width: 32px; height: 32px; font-size: 14px; flex-shrink: 0; }
}


/* ============================================================
   STEP ACCORDION
   ============================================================ */
.step-accordion {
  border-bottom: 1px solid rgba(3,56,108,.1);
}
.step-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s;
}
.step-acc-head:hover { color: var(--blue); }
.step-acc-head .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-acc-head .step-arr {
  margin-left: auto;
  font-size: 20px;
  color: var(--steel);
  transition: transform .25s;
  display: inline-block;
}
.step-acc-head.open .step-arr { transform: rotate(90deg); }
.step-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  padding: 0 4px 0 46px;
}
.step-acc-body.open {
  max-height: 300px;
  padding: 0 4px 16px 46px;
}

/* Dark variant (performance page) */
.step-accordion--dark { border-bottom-color: rgba(255,255,255,.12); }
.step-accordion--dark .step-acc-head { color: white; }
.step-accordion--dark .step-acc-head:hover { color: var(--sky); }
.step-accordion--dark .step-acc-head .step-num { background: rgba(255,255,255,.15); color: white; }
.step-accordion--dark .step-acc-head .step-arr { color: rgba(255,255,255,.4); }
.step-accordion--dark .step-acc-body { color: rgba(255,255,255,.72); }

/* ============================================================
   MOBILE: Pillar cards stack vertically
   ============================================================ */
@media (max-width: 780px) {
  .pillar-cards {
    flex-direction: column !important;
    height: auto !important;
  }
  .pillar-card {
    min-height: 300px !important;
    height: 300px !important;
    flex: none !important;
  }
}

/* ============================================================
   FAQ: Accordion spacing fix + button width
   ============================================================ */




/* ============================================================
   MOBILE: .pc Pillar cards — stack vertically
   ============================================================ */
@media (max-width: 780px) {
  /* Pillar cards wrapper */
  .pillar-wrap {
    flex-direction: column !important;
  }
  /* Each .pc card: full width, fixed height */
  .pc {
    height: 360px !important;
    flex: none !important;
    width: 100% !important;
  }
  /* Always show description on mobile (no hover) */
  .pc .pc-desc {
    max-height: 120px !important;
    opacity: 1 !important;
  }
}

@media (max-width: 680px) {
  /* FAQ CTA button — not full width on mobile */
  .faq-cta { text-align: center; }
  .faq-cta .btn {
    width: auto !important;
    display: inline-flex !important;
    white-space: normal;
    text-align: center;
  }
}
