/* ═══════════════════════════════════════
   22 FITNESS — Clean Modern Aesthetic
   White / Monochrome / Anton + Inter
   Inspired by The MVMT Lab
   ═══════════════════════════════════════ */

:root {
  --white: #FFFFFF;
  --off-white: #F4F3EE;
  --black: #000000;
  --gray: #555555;
  --light-gray: #999999;
  --border: #E5E5E5;
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gutter: 3vw;
  --max-width: 1200px;
  --section-pad: 120px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 14px; }

@media (max-width: 991px) {
  html { font-size: min(14px, 16px); }
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.6; }

/* ─── SVG ICONS ─── */
.icon, .icon-sm, .icon-md, .icon-lg {
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon { width: 20px; height: 20px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.5; }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85 !important;
  transform: scale(1.02);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  transition: background 0.15s, color 0.15s;
  opacity: 1;
}

.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--black);
  opacity: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* ─── BUTTONS ─── */
.btn-pill {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--black);
  padding: 18px 48px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(0,0,0,0.4);
  cursor: pointer;
  transition: color 0.5s ease;
  text-decoration: none;
  text-align: center;
}

.btn-pill:hover {
  color: var(--white);
  opacity: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px var(--gutter) 80px;
  background: var(--white);
}

.hero-content {
  max-width: 700px;
}

.hero-logo {
  width: 220px;
  margin: 0 auto 48px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 48px;
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  width: 100%;
  overflow: hidden;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.photo-grid img:hover {
  filter: grayscale(0%);
}

/* ─── SHARED SECTION ─── */
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.section-alt {
  background: var(--off-white);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 20px;
}

.heading-lg.centered { text-align: center; }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 60px;
}

.section-sub.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1.06rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.about-image img:hover { filter: grayscale(0%); }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  text-align: center;
  padding: 40px 24px;
}

.service-item .icon-lg {
  margin: 0 auto 20px;
  stroke: var(--black);
  transition: transform 0.4s ease;
}

/* SVG icon animations */
.service-item:nth-child(1) .icon-lg { animation: icon-float 3s ease-in-out infinite; }
.service-item:nth-child(2) .icon-lg { animation: icon-pulse 2.4s ease-in-out infinite; }
.service-item:nth-child(3) .icon-lg { animation: icon-spin-slow 8s linear infinite; }
.service-item:nth-child(4) .icon-lg { animation: icon-swing 3s ease-in-out infinite; }
.service-item:nth-child(5) .icon-lg { animation: icon-pulse-ring 3s ease-in-out infinite; }

a.service-item:hover .icon-lg { transform: scale(1.15); }

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes icon-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes icon-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(6deg); }
  75% { transform: rotate(-6deg); }
}

@keyframes icon-pulse-ring {
  0%, 100% { transform: scale(1); stroke-width: 1.5; }
  50% { transform: scale(1.06); stroke-width: 1; }
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--black);
}

.service-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

a.service-item {
  display: block;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
  border: 1px solid transparent;
  border-radius: 4px;
}

a.service-item:hover {
  opacity: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--border);
  transform: translateY(-2px);
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  transition: opacity 0.2s;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border-color: var(--black);
  border-width: 2px;
}

.pricing-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.pricing-tier:last-child {
  border-bottom: none;
}

.tier-label {
  font-size: 0.85rem;
  color: var(--gray);
}

.tier-price {
  font-size: 0.9rem;
  color: var(--black);
}

.tier-price strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
}

.pricing-tier-featured {
  background: var(--off-white);
}

.tier-detail {
  padding: 10px 18px;
  font-size: 0.8rem;
  color: var(--light-gray);
  text-align: center;
  letter-spacing: 0.03em;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-list li {
  font-size: 0.95rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

.pricing-card .btn-pill {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 16px 20px;
  font-size: 13px;
}

/* ─── PRICING CALLOUT ─── */
.pricing-callout {
  background: var(--black);
  color: var(--white);
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  flex-wrap: wrap;
}

.pricing-callout p {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.callout-btn {
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
  padding: 14px 36px;
  flex-shrink: 0;
}

.callout-btn:hover {
  color: var(--black) !important;
}

.callout-btn .btn-ripple {
  background: var(--white);
}

/* ─── SCHEDULE ─── */
.schedule-table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 100px 1fr 90px;
  border-bottom: 1px solid var(--border);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-row > div {
  padding: 16px 20px;
  font-size: 0.95rem;
}

.schedule-header {
  background: var(--black);
  color: var(--white);
}

.schedule-header > div {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-day {
  font-weight: 600;
  color: var(--black);
}

.schedule-time {
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}

.schedule-session {
  color: var(--gray);
}

/* Multi-session days: no bottom border on first row, dashed on continuation */
.schedule-row-first {
  border-bottom: 1px dashed var(--border);
}

.schedule-row-cont {
  border-bottom: 1px dashed var(--border);
}

.schedule-row-cont:last-child,
.schedule-row-cont + .schedule-row:not(.schedule-row-cont) {
  border-bottom: 1px solid var(--border);
}

/* Make the last continuation row before a new day use solid border */
.schedule-row-cont + .schedule-row:not(.schedule-row-cont) {
  border-top: none;
}

/* Tag cell — consistent alignment */
.schedule-tag-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  width: 72px;
  text-align: center;
}

.session-tag.private {
  background: var(--black);
  color: var(--white);
}

.session-tag.group {
  background: var(--off-white);
  color: var(--black);
  border: 1px solid var(--border);
}

.schedule-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-top: 24px;
}

.schedule-note a {
  color: var(--black);
  text-decoration: underline;
}

/* ─── THRIVE RECOVERY ─── */
.recovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.recovery-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 16px;
}

.recovery-text p {
  font-size: 1.06rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.recovery-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.recovery-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.recovery-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 2px;
}

.recovery-item span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.recovery-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.recovery-image img:hover { filter: grayscale(0%); }

/* ─── SPONSOR ─── */
.sponsor-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 60px auto 0;
}

.sponsor-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.sponsor-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 12px;
}

.sponsor-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.sponsor-info p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.testimonial {
  padding: 32px;
}

.quote-icon {
  width: 28px;
  height: 28px;
  fill: var(--border);
  stroke: none;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.testimonials-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-gray);
  font-style: italic;
  margin-top: 32px;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type { border-bottom: none; }

.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 2px;
}

.detail-value {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

a.detail-value:hover { opacity: 0.5; }

.contact-photo {
  margin-top: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%);
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

/* ─── FOOTER ─── */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--gutter) 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

.footer-social a:hover .icon-sm {
  stroke: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.footer-credit a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

/* ─── RIPPLE BUTTON ─── */
.btn-text {
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: var(--black);
  pointer-events: none;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.btn-ripple.active {
  transform: scale(1);
}

.btn-ripple.leaving {
  transition: transform 0.4s ease-in;
  transform: scale(0);
}

/* ─── ANIMATED COUNTER ─── */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}

/* ─── SUBPAGES ─── */
.subpage-hero {
  padding: 160px var(--gutter) 60px;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--black);
}

.subpage-intro {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 20px auto 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 40px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--black);
  opacity: 1;
}

/* Highlight cards */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* What to expect */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.expect-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.5;
}

.expect-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 2px solid var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}

.expect-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.4s;
}

.expect-image img:hover { filter: grayscale(0%); }

/* Subpage CTA */
.subpage-cta {
  text-align: center;
  padding: 80px var(--gutter);
  background: var(--white);
}

.subpage-cta p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid img { height: 220px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .callout-inner { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; --gutter: 6vw; }

  nav { padding: 16px var(--gutter); }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active { display: flex; }

  .nav-links a { font-size: 20px; }

  .nav-hamburger { display: flex; z-index: 1001; }

  /* Mobile dropdown */
  .nav-dropdown { position: static; }

  .dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 8px;
    min-width: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown:hover .dropdown-menu { display: none; opacity: 1; visibility: visible; }
  .nav-dropdown.open:hover .dropdown-menu { display: block; }

  .dropdown-menu li a {
    font-size: 16px;
    padding: 8px 0;
    text-align: center;
    color: var(--gray);
  }

  .dropdown-trigger { justify-content: center; }
  .dropdown-arrow { stroke: var(--black); }

  .hero-logo { width: 160px; margin-bottom: 32px; }
  .hero-headline { margin-bottom: 36px; }
  #hero { min-height: 70vh; padding: 140px var(--gutter) 60px; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 180px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-item { padding: 24px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .service-item .icon-lg { margin: 0 0 16px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .schedule-table { max-width: 100%; }
  .schedule-row { grid-template-columns: 80px 80px 1fr 80px; }
  .schedule-row > div { padding: 12px 10px; font-size: 0.85rem; }
  .schedule-day { font-size: 0.85rem; }
  .session-tag { font-size: 0.6rem; padding: 3px 8px; width: 64px; }

  .recovery-grid { grid-template-columns: 1fr; gap: 40px; }

  .highlight-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .sponsor-card { grid-template-columns: 1fr; gap: 32px; }
  .sponsor-name { font-size: 1.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }

  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 200px; }
  .btn-pill { padding: 16px 36px; font-size: 14px; }

  /* Schedule: compact on small screens */
  .schedule-header > div:last-child { display: none; }
  .schedule-row { grid-template-columns: 70px 70px 1fr; }
  .schedule-tag-cell { display: none; }

  .callout-inner { gap: 16px; }
  .pricing-callout p { font-size: 1rem; text-align: center; }
}
