:root {
  /* ── Color ──
     Taken directly from Korey's logo: black base, yellow accent (#FFCB47).
     Accent used sparingly, on CTAs, numerals, and key words, same approach
     as the other builds. */
  --black: #000000;
  --near-black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f2f0ec;
  --grey: #c9c9c9;
  --dim: rgba(255,255,255,0.92);
  --faint: rgba(255,255,255,0.7);
  --line: rgba(255,255,255,0.09);
  --dark-grey: #141414;
  --mid-grey: #1e1e1e;
  --accent: #FFCB47;
  --accent-dim: rgba(255,203,71,0.14);
  --accent-mid: rgba(255,203,71,0.4);

  /* ── Type ──
     Display = Anton (bold, condensed, combat-sport energy) via Google Fonts.
     Body stays plain Inter. Swap --font-display if Korey sends a brand font. */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--black); }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

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

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

/* Generic placeholder tag for imagery/video not yet supplied */
.placeholder-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 8px 16px;
}

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background-image: url('../images/nav-fade.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom-color: var(--line);
  padding: 14px 48px;
}

.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 104px; width: auto; transition: height 0.35s; }
nav.scrolled .nav-logo-img { height: 66px; }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--dim);
  position: relative; padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  color: var(--black); background: var(--accent);
  padding: 12px 26px; border-radius: 3px;
  transition: filter 0.25s, transform 0.25s;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-102%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.02em;
  text-decoration: none; color: var(--white);
}
.mobile-menu .mobile-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--accent);
  padding: 14px 32px; border-radius: 3px; margin-top: 12px;
}
.mobile-close {
  position: absolute; top: 26px; right: 28px; background: none; border: none;
  color: var(--white); font-size: 26px; cursor: pointer;
}

/* ── HERO ──
   Photo sits on its own ::before layer, darkened by a solid-color ::after
   (no gradients on this layer — see feedback-css-filter-tile-seam, both
   CSS filter and linear-gradient on a full-viewport layer caused a real
   rendering seam on Ed's machine). The section's own background (below)
   stays as a plain black + texture fallback if the photo fails to load. */
.hero {
  position: relative; min-height: 118vh;
  display: flex; align-items: center; justify-content: flex-start;
  text-align: left; overflow: hidden;
  padding: 175px 32px 100px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255,203,71,0.06), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 64px),
    var(--black);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/banner.JPG') center 45% / cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/hero-fade-black.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero-content { max-width: 760px; padding-left: clamp(0px, 5vw, 64px); }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 22px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  line-height: 1; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-title .accent-word { color: var(--accent); }
.hero-sub {
  max-width: 460px; margin: 0 0 32px;
  font-size: 15px; line-height: 1.7; color: var(--dim);
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 17px 34px; border-radius: 3px;
  transition: filter 0.25s, transform 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--white); }

/* ── INTRO VIDEO ── */
#intro-video { padding: 110px 0; background: #101010; }
.video-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  color: var(--white); text-transform: uppercase; line-height: 1.1;
  margin: 8px 0 14px;
  white-space: nowrap;
}
.video-sub { font-size: 14.5px; line-height: 1.7; color: var(--dim); }

.video-frame {
  position: relative; max-width: 780px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-badge {
  position: absolute; top: 18px; left: 18px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 20px; padding: 7px 14px; z-index: 2;
}
.video-play {
  width: 78px; height: 78px; border-radius: 50%; border: none;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.25s, filter 0.25s;
  padding-left: 4px;
}
.video-play:hover { transform: scale(1.06); filter: brightness(1.08); }

/* ── ABOUT (shared "ethos" layout, reused across sections) ── */
#about { padding: 100px 32px; background: var(--black); }
.ethos-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  text-align: left;
}
.ethos-statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.2; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase;
  margin: 0 0 24px;
}
.ethos-accent { color: var(--accent); }
.ethos-sub {
  max-width: 480px; margin: 0; color: var(--dim);
  font-size: 15px; line-height: 1.7;
}
.ethos-image {
  aspect-ratio: 3 / 2; width: 100%; border-radius: 12px;
  background: url('../images/aboutkorey.JPG') center / cover no-repeat, var(--near-black);
  border: 2px solid #333333;
  display: flex; align-items: flex-end; justify-content: center;
}
.about-video-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.about-video-link:hover { border-color: var(--accent); }

/* ── WHY KS TRAINING ──
   Statement + expanding checklist. Desktop: hover a bullet to expand it
   (reveals an image placeholder). Mobile has no hover, so main.js tracks
   scroll position instead and expands whichever bullet sits nearest the
   vertical centre of the screen. See toggleWhyExpanded() in main.js. */
#why { padding: 100px 0; background: var(--black); }
.why-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start;
}
.why-statement-wrap { position: sticky; top: 120px; }
.why-statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  color: var(--white); text-transform: uppercase; line-height: 1.2;
}
.why-statement .accent-word { color: var(--accent); }

.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 20px; border-radius: 10px; border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.why-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
  transition: transform 0.3s ease;
}
.why-check::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.why-body { flex: 1; }
.why-name {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--white);
  margin-bottom: 4px;
}
.why-desc { font-size: 13.5px; line-height: 1.65; color: var(--dim); max-width: 460px; }

.why-image {
  overflow: hidden; max-height: 0; opacity: 0; margin-top: 0;
  border-radius: 8px; border: 1px solid var(--line);
  background-size: cover; background-repeat: no-repeat;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.why-item:nth-child(1) .why-image { background-image: url('../images/combatspecifcconditioning.jpg'); background-position: center 50%; }
.why-item:nth-child(2) .why-image { background-image: url('../images/strengththattransfers.jpg'); background-position: center 45%; }
.why-item:nth-child(3) .why-image { background-image: url('../images/121coaching.JPG'); background-position: center 40%; }
.why-item:nth-child(4) .why-image { background-image: url('../images/builttolast.jpg'); background-position: center 40%; }
.why-item.expanded {
  background: #101010; border-color: var(--line);
}
.why-item.expanded .why-check { transform: scale(1.1); }
.why-item.expanded .why-image {
  max-height: 160px; opacity: 1; margin-top: 14px;
  aspect-ratio: 16 / 7; width: 100%;
}

/* ── SERVICES ── */
#services { padding: 100px 0; background: #101010; }
.services-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: var(--white); text-transform: uppercase; line-height: 1.1;
  margin: 8px 0 12px;
}
.services-sub { font-size: 13.5px; line-height: 1.7; color: var(--dim); margin-top: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--black); border: 1px solid var(--line); border-radius: 10px;
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover { border-color: var(--accent-mid); transform: translateY(-3px); }
.service-card.centered { border-color: var(--accent-mid); transform: scale(1.05); }
.service-name {
  font-family: var(--font-display); font-size: 21px; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase; margin-bottom: 12px;
}
.service-desc { font-size: 13.5px; line-height: 1.7; color: var(--dim); margin-bottom: 22px; flex-grow: 1; }
.service-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
}

/* ── TESTIMONIALS ──
   Placeholder quotes (marked below) — swap in Korey's real client reviews
   once he has some. Auto-scrolling marquee: the track holds exactly two
   identical .testimonials-group children (the real set + a duplicate), so
   translateX(-50%) always lands precisely on the boundary between them —
   no fragile gap/padding arithmetic to get wrong. Pauses on hover. Edge
   fades are baked PNGs rather than a CSS gradient mask, per
   feedback-css-filter-tile-seam. */
#testimonials { padding: 100px 0; background: var(--black); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: var(--white); text-transform: uppercase; line-height: 1.1;
  margin: 8px 0 0;
}
.testimonials-viewport { position: relative; overflow: hidden; }
.testimonials-fade {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none; background-size: 100% 100%; background-repeat: no-repeat;
}
.testimonials-fade-left { left: 0; background-image: url('../images/testimonials-fade-left.png'); }
.testimonials-fade-right { right: 0; background-image: url('../images/testimonials-fade-right.png'); }
.testimonials-track {
  display: flex;
  animation: testimonialsScroll 42s linear infinite;
}
.testimonials-group { display: flex; flex-shrink: 0; }
.testimonials-viewport:hover .testimonials-track { animation-play-state: paused; }
@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 320px; margin-right: 20px;
  background: #101010; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 26px; display: flex; flex-direction: column;
}
.testimonial-stars { font-size: 13px; color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { font-size: 13.5px; line-height: 1.7; color: var(--dim); margin: 0 0 18px; flex-grow: 1; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 11.5px; color: var(--faint); margin-top: 2px; }

/* ── BOOKING ── */
#booking { padding: 120px 0; background: var(--black); }
.booking-box {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--near-black); border: 1px solid var(--line); border-radius: 14px;
  padding: 64px 48px;
}
.booking-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  margin-bottom: 16px;
}
.booking-sub { max-width: 480px; margin: 0 auto 40px; color: var(--dim); font-size: 14.5px; line-height: 1.75; }

.booking-widget { text-align: left; }

/* Calendar */
.booking-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.booking-cal-nav-btn {
  background: var(--black); border: 1px solid var(--line);
  color: var(--white); width: 34px; height: 34px; border-radius: 6px;
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.booking-cal-nav-btn:hover { border-color: var(--accent-mid); }
.booking-cal-month-label {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
.booking-cal-daynames {
  display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px;
}
.booking-cal-daynames span {
  text-align: center; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); padding: 4px 0;
}
.booking-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 14px;
}
.booking-cal-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 13px; font-family: var(--font-body);
  user-select: none;
}
.booking-cal-cell.empty { background: transparent; }
.booking-cal-cell.unavailable { color: rgba(255,255,255,0.18); cursor: default; }
.booking-cal-cell.available {
  color: var(--white); cursor: pointer; background: var(--black); border: 1px solid var(--line);
}
.booking-cal-cell.available:hover { border-color: var(--accent-mid); color: var(--accent); }
.booking-cal-cell.selected {
  background: var(--accent); border-color: var(--accent); color: var(--black) !important; font-weight: 700;
}
.booking-cal-legend { display: flex; gap: 16px; margin-bottom: 18px; }
.booking-legend-item {
  display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--faint);
}
.booking-legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.booking-legend-dot.available { background: var(--accent); }
.booking-legend-dot.unavailable { background: rgba(255,255,255,0.18); }

.booking-selected-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--accent-mid);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 16px;
  font-size: 13px; color: var(--accent); font-weight: 600;
}

/* Time slots */
.booking-times {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.booking-time {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--dim); background: var(--black); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 18px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.booking-time:hover { border-color: var(--accent-mid); color: var(--white); }
.booking-time.active {
  background: var(--accent); border-color: var(--accent); color: var(--black); font-weight: 600;
}
.booking-time.taken {
  color: rgba(255,255,255,0.25); cursor: not-allowed; text-decoration: line-through;
  background: rgba(255,80,80,0.06);
}
.booking-time.taken:hover { border-color: var(--line); color: rgba(255,255,255,0.25); }
.booking-times-hint { font-size: 13px; color: var(--faint); font-style: italic; }

.booking-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.booking-field-row { display: flex; gap: 10px; }
.booking-input {
  flex: 1; width: 100%; background: var(--black); border: 1px solid var(--line);
  border-radius: 6px; color: var(--white); font-family: var(--font-body);
  font-size: 14px; padding: 13px 14px;
}
.booking-input:focus { outline: none; border-color: var(--accent-mid); }
.booking-input::placeholder { color: var(--faint); }
.booking-textarea { resize: vertical; min-height: 44px; }
.booking-error {
  font-size: 13px; color: #ff6b6b; margin-bottom: 14px; padding: 10px 14px;
  background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.3); border-radius: 6px;
}
.booking-confirm {
  display: block; width: 100%; margin-top: 28px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--black); border: none;
  border-radius: 6px; padding: 17px; cursor: pointer;
  transition: filter 0.25s;
}
.booking-confirm:hover { filter: brightness(1.08); }
.booking-note {
  margin-top: 24px; font-size: 11.5px; letter-spacing: 0.04em; color: var(--faint);
}

/* ── NEWSLETTER ── */
#newsletter { padding: 100px 0; background: #101010; }
.newsletter-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  color: var(--white); text-transform: uppercase; line-height: 1.15;
  margin: 8px 0 14px;
}
.newsletter-sub { font-size: 14.5px; line-height: 1.75; color: var(--dim); }

.newsletter-guides {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 980px; margin: 0 auto 40px;
}
.guide-card {
  background: var(--black); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px;
  overflow: hidden; text-align: left; display: flex; flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-mid);
  box-shadow: 0 18px 34px rgba(0,0,0,0.5);
}
.guide-image {
  aspect-ratio: 16 / 9; background-size: cover; background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-image { transform: scale(1.07); }
.newsletter-guides .guide-card:nth-child(1) .guide-image { background-image: url('../images/punchguide.jpg'); background-position: center 45%; }
.newsletter-guides .guide-card:nth-child(2) .guide-image { background-image: url('../images/conditioningguide.jpg'); background-position: center 45%; }
.newsletter-guides .guide-card:nth-child(3) .guide-image { background-image: url('../images/newsletter.jpg'); background-position: center 40%; }
.guide-body { padding: 24px 26px 28px; }
.guide-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.guide-name {
  font-family: var(--font-display); font-size: 19px; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase; line-height: 1.25; margin-bottom: 12px;
}
.guide-desc { font-size: 13px; line-height: 1.7; color: var(--dim); }

.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; background: var(--black); border: 1px solid var(--line);
  border-radius: 6px; color: var(--white); font-family: var(--font-body);
  font-size: 14px; padding: 16px 18px;
}
.newsletter-input:focus { outline: none; border-color: var(--accent-mid); }
.newsletter-input::placeholder { color: var(--faint); }
.newsletter-submit {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--black); border: none;
  border-radius: 6px; padding: 17px 26px; cursor: pointer;
  transition: filter 0.25s; white-space: nowrap;
}
.newsletter-submit:hover { filter: brightness(1.08); }

/* ── FOOTER ── */
footer { padding: 64px 0 40px; border-top: 1px solid var(--line); background: var(--black); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 30px; width: auto; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; letter-spacing: 0.06em; text-decoration: none; color: var(--dim);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--dim);
  transition: border-color 0.25s, color 0.25s;
}
.footer-socials a:hover { border-color: var(--accent-mid); color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--faint);
}
.footer-placeholder { font-style: italic; }

/* ── CONTACT PAGE ── */
#contact-hero { padding: 175px 32px 70px; background: var(--black); text-align: center; }
.contact-hero-inner { max-width: 560px; margin: 0 auto; }
.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  margin: 8px 0 18px;
}
.contact-hero-sub { font-size: 15px; line-height: 1.75; color: var(--dim); }

#contact-links { padding: 40px 0 100px; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  background: #101010; border: 1px solid var(--line); border-radius: 12px;
  padding: 32px 20px; text-decoration: none; color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover { border-color: var(--accent-mid); transform: translateY(-3px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-name {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
}
.contact-handle { font-size: 11.5px; color: var(--faint); font-style: italic; }

#contact-cta { padding: 0 0 120px; background: var(--black); }
.contact-cta-box {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: #101010; border: 1px solid var(--line); border-radius: 14px;
  padding: 56px 40px;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--white); text-transform: uppercase; line-height: 1.1;
  margin-bottom: 12px;
}
.contact-cta-sub { font-size: 14px; color: var(--dim); margin-bottom: 28px; }

/* ── CHAT WIDGET (placeholder — for the mockup review, not a real AI yet) ── */
.chat-backdrop {
  display: none; position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,0.5);
}
.chat-backdrop.open { display: block; }

.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--near-black); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  transition: transform 0.25s;
}
.chat-bubble:hover { transform: scale(1.06); }
.chat-bubble-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.chat-bubble-dot {
  position: absolute; top: 2px; right: 2px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #2ECC71; border: 2px solid var(--black);
}

.chat-panel {
  position: fixed; bottom: 108px; right: 28px; z-index: 150;
  width: 340px; max-height: 500px;
  background: var(--near-black); border: 1px solid var(--line); border-radius: 14px;
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
.chat-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.chat-panel-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
  background: var(--black);
}
.chat-header-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--line);
}
.chat-header-title { font-size: 13.5px; font-weight: 600; color: var(--white); }
.chat-header-subtitle { font-size: 11.5px; color: var(--dim); margin-top: 2px; }
.chat-close {
  margin-left: auto; background: none; border: none; color: var(--faint);
  font-size: 15px; cursor: pointer; padding: 4px;
}

.chat-messages {
  padding: 16px 18px; overflow-y: auto; flex: 1; min-height: 120px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg-bubble {
  max-width: 82%; padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.55;
}
.chat-msg.assistant .chat-msg-bubble { background: var(--mid-grey); color: var(--dim); border-bottom-left-radius: 3px; }
.chat-msg.user .chat-msg-bubble { background: var(--accent); color: var(--black); border-bottom-right-radius: 3px; }

.chat-suggestions { display: flex; flex-direction: column; gap: 8px; padding: 0 18px 12px; }
.chat-suggestion {
  text-align: left; background: var(--black); border: 1px solid var(--line);
  color: var(--dim); font-size: 12.5px; padding: 9px 12px; border-radius: 8px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.chat-suggestion:hover { border-color: var(--accent-mid); color: var(--white); }

.chat-input-row {
  display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line);
}
.chat-input {
  flex: 1; resize: none; background: var(--black); border: 1px solid var(--line);
  border-radius: 8px; color: var(--white); font-family: var(--font-body);
  font-size: 13px; padding: 10px 12px; max-height: 80px;
}
.chat-input:focus { outline: none; border-color: var(--accent-mid); }
.chat-send {
  width: 38px; height: 38px; border-radius: 8px; border: none; flex-shrink: 0;
  background: var(--accent); color: var(--black); font-size: 15px; cursor: pointer;
}

@media (max-width: 480px) {
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 96px; }
  .chat-bubble { right: 16px; bottom: 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ethos-layout { grid-template-columns: 1fr; text-align: center; }
  .ethos-sub { margin: 0 auto; }
  .ethos-image { aspect-ratio: 16 / 10; }
  .newsletter-guides { grid-template-columns: 1fr; max-width: 440px; }
  .newsletter-form { max-width: 440px; margin: 0 auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-layout { grid-template-columns: 1fr; }
  .why-statement-wrap { position: static; margin-bottom: 8px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  #intro-video, #about, #why, #services, #booking, #newsletter { padding-left: 0; padding-right: 0; }
  .section-inner { padding: 0 24px; }
  .booking-box { padding: 48px 24px; }
  .footer-top { flex-direction: column; }
  .testimonials-track { animation-duration: 28s; }
}
@media (max-width: 560px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .btn-primary, .btn-ghost { padding: 15px 22px; font-size: 12px; }
  .booking-times { justify-content: flex-start; }
  .booking-field-row { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .video-title { white-space: normal; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-logo-img { height: 88px; }
  nav.scrolled .nav-logo-img { height: 58px; }
  .footer-logo img { height: 44px; }
  .testimonial-card { flex-basis: 260px; }
  .testimonials-fade { width: 48px; }
  .testimonials-track { animation-duration: 10s; }
  .hero { min-height: auto; align-items: flex-start; padding-top: 150px; padding-bottom: 70px; }
  .hero::before { background-image: url('../images/banner-mobile.jpg'); }
  .hero-content { padding-left: 0; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: 3.5rem; margin-bottom: 24px; }
}
