/* ═══════════════════════════════════════════
   OPTIMAL STRENGTH & FITNESS — style.css
   ═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:       #0F0F0E;
  --bg-2:     #111110;
  --bg-3:     #161614;
  --bg-dark:  #0A0A09;
  --bg-card:  #1A1A18;
  --red:      #E60000;
  --off-white:#F5F2EE;
  --muted:    #888884;
  --dim:      rgba(245,242,238,0.55);
  --border:   rgba(255,255,255,0.07);
  --font-head:'Oswald', sans-serif;
  --font-body:'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Animations ── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ═══════════════════════
   HEADER
   ═══════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 0;
  background: rgba(15,15,14,0);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(15,15,14,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  height: 32px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}
#desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--off-white); }
.nav-book-btn {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 24px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.nav-book-btn:hover { background: #fff; color: var(--bg); }

/* Mobile hamburger */
.mob-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  padding: 8px;
  z-index: 51;
  position: relative;
}
.mob-hamburger span {
  display: block;
  height: 2px;
  background: var(--off-white);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.mob-hamburger span:nth-child(1) { width: 24px; }
.mob-hamburger span:nth-child(2) { width: 24px; }
.mob-hamburger span:nth-child(3) { width: 16px; }
.mob-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 24px; }
.mob-hamburger.open span:nth-child(2) { opacity: 0; }
.mob-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 24px; }

/* ═══════════════════════
   MOBILE MENU
   ═══════════════════════ */
.mob-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 49;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
#mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mob-menu-link {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.mob-menu-link:hover { color: var(--red); }
.mob-menu-cta {
  margin-top: 24px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 48px;
  display: inline-block;
}

/* ═══════════════════════
   HERO
   ═══════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero picture {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay-h {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(10,10,9,0.88) 50%, rgba(10,10,9,0.4) 100%);
}
.hero-overlay-v {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.7) 0%, transparent 60%);
}
.hero-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 96px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-eyebrow-bar {
  width: 3px; height: 40px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-eyebrow p {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(72px, 9.5vw, 152px);
  color: var(--off-white);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
  animation: heroIn 0.9s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-h1 span { color: var(--red); }
.hero-sub {
  color: rgba(245,242,238,0.65);
  font-weight: 300;
  font-size: 18px;
  max-width: 440px;
  line-height: 1.75;
  margin: 0 0 44px;
  animation: heroIn 0.9s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  animation: heroIn 0.9s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-btn-primary {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 40px;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
}
.hero-btn-primary:hover { background: #fff; color: var(--bg); }
.hero-btn-secondary {
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 40px;
  border: 1px solid rgba(245,242,238,0.3);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
}
.hero-btn-secondary:hover { border-color: var(--red); color: var(--red); }
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,242,238,0.35);
  animation: fadeIn 1s 1.8s both;
}
.hero-scroll span {
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-scroll svg { animation: arrowBounce 1.3s ease-in-out infinite; }

/* ═══════════════════════
   TRUST STRIP
   ═══════════════════════ */
.trust {
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-item span {
  font-family: var(--font-head);
  font-size: 12px;
  color: rgba(245,242,238,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ═══════════════════════
   PHILOSOPHY
   ═══════════════════════ */
.philo-section {
  background: var(--bg);
  padding: 120px 64px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.philo-inner { max-width: 1280px; margin: 0 auto; }
.philo-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 96px;
  align-items: start;
}
.philo-label {
  font-family: var(--font-head);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 20px;
}
.philo-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--off-white);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.philo-row {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.philo-row:last-child { border-bottom: none; }
.philo-num {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  padding-top: 2px;
}
.philo-title {
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.philo-desc {
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
}

/* ═══════════════════════
   SERVICES
   ═══════════════════════ */
#services { border-top: 1px solid rgba(255,255,255,0.04); }
.svc-header {
  background: var(--bg-2);
  padding: 72px 64px 56px;
}
.svc-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}
.svc-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.svc-section-bar {
  height: 2px; width: 28px;
  background: var(--red);
}
.svc-section-tag {
  font-family: var(--font-head);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
}
.svc-h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.svc-intro {
  color: var(--muted);
  max-width: 380px;
  font-weight: 300;
  line-height: 1.75;
  font-size: 15px;
  flex-shrink: 0;
}
.svc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.svc-img {
  overflow: hidden;
  position: relative;
}
.svc-img picture {
  display: block;
  width: 100%; height: 100%;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.5s ease;
}

.lqip-img {
  opacity: 0;
}
.lqip-img.img-loaded {
  opacity: 1;
}
.svc-img:hover img { transform: scale(1.04); }
.svc-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,9,0.18);
  pointer-events: none;
}
.svc-text {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-text-a { background: var(--bg-2); }
.svc-text-b { background: var(--bg-3); }
.svc-num {
  display: block;
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  color: rgba(230,0,0,0.1);
  line-height: 1;
  margin-bottom: -12px;
  user-select: none;
}
.svc-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  line-height: 1.05;
}
.svc-body {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  font-size: 16px;
  margin: 0 0 36px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: gap 0.2s;
  width: fit-content;
}
.svc-link:hover { gap: 16px; }

/* ═══════════════════════
   ABOUT
   ═══════════════════════ */
#about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 720px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.about-photo {
  overflow: hidden;
  position: relative;
  min-height: 600px;
}
.about-photo picture {
  display: block;
  width: 100%; height: 100%;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.5s ease;
}
.about-photo-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.about-text {
  background: var(--bg);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.about-label-bar {
  height: 2px; width: 28px;
  background: var(--red);
}
.about-label p {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
}
.about-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--off-white);
  text-transform: uppercase;
  margin: 0 0 36px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.about-h2 span { color: var(--red); }
.about-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--muted);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.about-quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-qual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-card);
}
.about-qual-dot {
  width: 6px; height: 6px;
  background: var(--red);
  flex-shrink: 0;
}
.about-qual-item span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245,242,238,0.8);
}

/* ═══════════════════════
   TESTIMONIALS
   ═══════════════════════ */
.testi-section {
  background: var(--bg-2);
  padding: 128px 64px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.testi-inner { max-width: 1280px; margin: 0 auto; }
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 32px;
}
.testi-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testi-label-bar {
  height: 2px; width: 28px;
  background: var(--red);
}
.testi-label p {
  font-family: var(--font-head);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
}
.testi-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 0.95;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.testi-card {
  background: var(--bg-2);
  padding: 48px 40px;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--bg-card); }
.testi-quote-mark {
  font-size: 72px;
  color: var(--red);
  font-family: Georgia, serif;
  line-height: 0.7;
  margin-bottom: 24px;
  opacity: 0.6;
}
.testi-quote {
  font-size: 17px;
  color: rgba(245,242,238,0.75);
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 36px;
  font-style: italic;
}
.testi-meta {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.testi-name {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--off-white);
  font-weight: 600;
  margin: 0 0 6px;
}
.testi-outcome {
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ═══════════════════════
   CTA SECTION
   ═══════════════════════ */
.cta-section {
  background: var(--off-white);
  padding: 128px 64px;
  position: relative;
  overflow: hidden;
}
.cta-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, #0F0F0E 0px, #0F0F0E 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, #0F0F0E 0px, #0F0F0E 1px, transparent 1px, transparent 40px);
}
.cta-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-bar {
  width: 3px; height: 60px;
  background: var(--red);
  margin: 0 auto 40px;
}
.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6.5vw, 96px);
  color: var(--bg);
  text-transform: uppercase;
  margin: 0 0 28px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 19px;
  color: #52525B;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-btn {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 700;
  padding: 22px 72px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: var(--bg); }
.cta-meta {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.footer-wrap {
  background: var(--bg-dark);
  padding: 64px 64px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 24px;
}
.footer-tagline {
  color: #555552;
  font-weight: 300;
  line-height: 1.75;
  max-width: 300px;
  font-size: 14px;
}
.footer-col-title {
  font-family: var(--font-head);
  color: rgba(245,242,238,0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-link {
  color: #555552;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  width: fit-content;
}
.footer-nav-link:hover { color: var(--red); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #555552;
  font-weight: 300;
  font-size: 14px;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,242,238,0.5);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 6px;
  transition: color 0.2s;
  width: fit-content;
}
.footer-insta:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copy {
  color: #333331;
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: #333331;
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(245,242,238,0.5); }

/* ═══════════════════════
   CONTACT MODAL
   ═══════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--bg-2);
  max-width: 520px;
  width: 100%;
  padding: 48px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--off-white); }
.modal-tag {
  font-family: var(--font-head);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--off-white);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,242,238,0.5);
  font-weight: 600;
}
.form-input,
.form-select {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus { border-color: var(--red); }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888884' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-card);
  padding-right: 40px;
}
option { background: var(--bg-card); color: var(--off-white); }
.modal-submit {
  margin-top: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.modal-submit:hover { background: var(--off-white); color: var(--bg); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  display: none;
}
.modal-status.success { color: #4ade80; display: block; }
.modal-status.error   { color: #f87171; display: block; }

/* ═══════════════════════
   SCROLL REVEAL
   ═══════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media (max-width: 1100px) {
  .nav-desktop { gap: 20px; }
  .nav-book-btn { display: none; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mob-hamburger { display: flex; }

  .hero-pad { padding: 0 20px 80px; }
  .hero-h1 { font-size: clamp(52px, 13vw, 100px); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-btn-primary,
  .hero-btn-secondary { width: 100%; text-align: center; justify-content: center; padding: 16px 24px; }
  .hero-scroll { display: none; }

  .trust-inner { padding: 14px 20px; gap: 12px; flex-direction: column; align-items: flex-start; }

  .philo-section { padding: 64px 20px; }
  .philo-grid { display: block; }
  .philo-left { margin-bottom: 40px; }
  .philo-row { grid-template-columns: 36px 1fr; gap: 10px 16px; padding: 24px 0; }
  .philo-desc { grid-column: 2; margin-top: 4px; }

  .svc-header { padding: 48px 20px 36px; }
  .svc-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-intro { max-width: 100%; }
  .svc-panel { grid-template-columns: 1fr; min-height: auto; }
  .svc-img { min-height: 240px; order: -1; }
  .svc-text { padding: 36px 20px; }

  #about { grid-template-columns: 1fr; }
  .about-photo { min-height: 360px; order: -1; }
  .about-text { padding: 48px 20px; }
  .about-quals { grid-template-columns: 1fr; }

  .testi-section { padding: 72px 20px; }
  .testi-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 36px 24px; }

  .cta-section { padding: 80px 20px; }
  .cta-h2 { font-size: clamp(38px, 10vw, 96px); }
  .cta-actions { align-items: stretch; gap: 14px; }
  .cta-btn { width: 100%; justify-content: center; padding: 20px 24px; }

  .footer-wrap { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .modal { padding: 32px 24px; }
}
