:root {
  --black: #0d0e10;
  --charcoal: #17191c;
  --graphite: #272a2f;
  --white: #ffffff;
  --off-white: #f3f2ed;
  --muted: #a7abb2;
  --line: rgba(255,255,255,.15);
  --dark-line: rgba(13,14,16,.13);
  --accent: #D1B06A;
  --accent-strong: #B78E48;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(0,0,0,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-dark { background: var(--black); color: var(--white); }

.eyebrow {
  margin: 0 0 16px;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.dark { color: var(--black); }

h1, h2, h3 {
  margin-top: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { font-size: clamp(3.7rem, 8.8vw, 7.9rem); text-transform: uppercase; }
h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.65rem, 3vw, 2.6rem); }
p { margin: 0 0 1.25rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(209,176,106,.46); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 11px 18px; font-size: .9rem; }
.button-accent { background: var(--accent); color: var(--black); }
.button-accent:hover { background: var(--accent-strong); }
.button-dark { background: var(--black); color: var(--white); }
.button-dark:hover { background: #26292e; }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-outline-dark { border-color: rgba(13,14,16,.35); color: var(--black); background: transparent; }
.button-outline-dark:hover { border-color: var(--black); }
.button-full { width: 100%; border: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,0));
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(13,14,16,.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: min(335px, 36vw); }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 25px; color: var(--white); }
.main-nav > a:not(.button) { position: relative; font-size: .92rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--accent); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.15); padding: 0; }
.menu-toggle span { display: block; width: 19px; height: 2px; background: var(--white); margin: 4px auto; }

.hero { position: relative; min-height: 860px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--black); }
.hero-media { position: absolute; inset: 0; background-image: url("images/hero-gym.webp"); background-size: cover; background-position: center 48%; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,9,.94) 0%, rgba(7,8,9,.65) 48%, rgba(7,8,9,.18) 100%), linear-gradient(0deg, rgba(7,8,9,.7), transparent 48%); }
.hero-content { position: relative; z-index: 1; padding-top: 185px; padding-bottom: 95px; }
.hero h1 { max-width: 850px; margin-bottom: 24px; }
.hero-lead { max-width: 700px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 34px; margin: 42px 0 0; padding: 0; list-style: none; font-size: .9rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.hero-points li { display: flex; align-items: center; gap: 10px; }
.hero-points li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.offer-strip { background: var(--accent); padding: 46px 0; }
.offer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.offer-strip h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.55rem); }
.offer-strip h2 span { white-space: nowrap; }
.offer-strip p { margin-bottom: 8px; font-size: 1.15rem; }
.offer-strip small { display: block; max-width: 850px; line-height: 1.5; opacity: .72; }

.split-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(330px, .72fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.section-copy > p:not(.eyebrow) { font-size: 1.08rem; color: #454950; }
.section-copy blockquote { margin: 36px 0 0; padding: 6px 0 6px 24px; border-left: 4px solid var(--accent-strong); font-size: 1.35rem; font-weight: 800; line-height: 1.35; }
.image-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card-tall { aspect-ratio: 4/5; }

.section-heading { max-width: 800px; margin-bottom: 50px; }
.section-heading > p:not(.eyebrow) { color: #5b5f66; font-size: 1.1rem; }
.section-dark .section-heading > p:not(.eyebrow) { color: var(--muted); }
.center-heading { margin-inline: auto; text-align: center; }

.program-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 640px; margin-top: 55px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--charcoal); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.program-card-reverse { grid-template-columns: .92fr 1.08fr; }
.program-card-reverse .program-media { order: 2; }
.program-media { min-height: 570px; }
.program-media img { width: 100%; height: 100%; object-fit: cover; }
.program-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 70px); }
.program-copy h3 { margin-bottom: 8px; }
.program-tagline { font-weight: 800; color: var(--accent); }
.program-copy > p:not(.program-number):not(.program-tagline) { color: #c5c8ce; }
.check-list { margin: 12px 0 28px; padding: 0; list-style: none; color: #e0e2e5; }
.check-list li { position: relative; padding: 9px 0 9px 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.program-highlight { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; padding: 18px 20px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.05); }
.program-highlight strong { font-size: 1.15rem; }
.program-highlight span { color: var(--muted); font-size: .92rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; width: fit-content; color: var(--accent); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { min-height: 210px; padding: 28px; border: 1px solid var(--dark-line); border-radius: 18px; background: rgba(255,255,255,.52); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.benefit-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.benefit-card h3 { margin: 18px 0 12px; font-size: 1.72rem; }
.benefit-card p { margin: 0; color: #5c6066; }

.lead-section { background: #24272c; color: var(--white); }
.lead-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 7vw, 100px); align-items: start; }
.lead-copy { position: sticky; top: 120px; }
.lead-copy > p:not(.eyebrow) { color: #c5c9cf; font-size: 1.12rem; }
.contact-stack { display: grid; gap: 12px; margin-top: 38px; }
.contact-stack a { display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; background: rgba(255,255,255,.035); }
.contact-stack a:hover { border-color: var(--accent); }
.contact-stack span { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-stack strong { font-size: 1.2rem; }

.lead-form { padding: clamp(28px, 4vw, 46px); border-radius: var(--radius); background: var(--white); color: var(--black); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: .9rem; font-weight: 800; }
.field input, .field select { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cfd2d7; border-radius: 11px; background: #fff; color: var(--black); outline: none; }
.field input:focus, .field select:focus { border-color: #B78E48; box-shadow: 0 0 0 4px rgba(209,176,106,.24); }
.consent-field label { display: flex; align-items: flex-start; gap: 11px; font-size: .82rem; font-weight: 500; line-height: 1.55; color: #555a61; }
.consent-field input { flex: 0 0 auto; width: 18px; height: 18px; min-height: auto; margin-top: 2px; accent-color: var(--black); }
.consent-field a { font-weight: 800; }
.hidden-field { position: absolute; left: -9999px; }
.form-note { margin: 12px 0 0; text-align: center; color: #686d74; font-size: .83rem; }

.gallery-section { background: #ebeae5; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 310px 310px; gap: 16px; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 18px; background: #ddd; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.035); }

.location-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 650px; background: var(--white); }
.location-map iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: grayscale(.92) contrast(1.05); }
.location-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 95px); }
.location-panel address { margin-bottom: 28px; font-size: 1.1rem; font-style: normal; }
.location-details { margin: 0 0 32px; border-top: 1px solid var(--dark-line); }
.location-details p { display: grid; grid-template-columns: 120px 1fr; gap: 15px; margin: 0; padding: 15px 0; border-bottom: 1px solid var(--dark-line); }
.location-details span { color: #747980; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-details a { font-weight: 800; text-decoration: none; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.final-cta { position: relative; padding: 120px 0; overflow: hidden; background: var(--black); color: var(--white); text-align: center; }
.final-cta::before { content: "ETHNIC HALL"; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); font-family: "Arial Narrow", Arial, sans-serif; font-size: min(17vw, 250px); font-weight: 900; line-height: 1; white-space: nowrap; color: rgba(255,255,255,.035); }
.final-cta-inner { position: relative; z-index: 1; max-width: 900px; }
.final-cta p:not(.eyebrow) { max-width: 690px; margin-inline: auto; color: #c7cbd1; font-size: 1.15rem; }
.center-actions { justify-content: center; }

.site-footer { padding: 70px 0 24px; background: #08090a; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; }
.footer-logo { width: min(350px, 100%); margin-bottom: 18px; }
.footer-grid h2 { margin-bottom: 16px; font-size: 1.1rem; letter-spacing: .04em; }
.footer-grid p { color: #aeb2b8; font-size: .92rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #7f848c; font-size: .8rem; }
.footer-bottom a { text-decoration: none; }

.mobile-sticky-cta { display: none; }

@media (max-width: 1020px) {
  .main-nav { position: fixed; inset: 0 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 100px 24px 30px; background: rgba(13,14,16,.98); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav .button { margin-top: 14px; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .brand { position: relative; z-index: 2; width: min(300px, 62vw); }
  .program-card, .program-card-reverse { grid-template-columns: 1fr; }
  .program-card-reverse .program-media { order: 0; }
  .program-media { min-height: 440px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-copy { position: static; }
  .location-section { grid-template-columns: 1fr; }
  .location-map iframe { min-height: 450px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 78px 0; }
  .site-header { padding: 12px 0; }
  .hero { min-height: 780px; }
  .hero-media { background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,8,9,.94), rgba(7,8,9,.47)), linear-gradient(0deg, rgba(7,8,9,.78), transparent 55%); }
  .hero-content { padding-top: 150px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 11px; }
  .offer-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer-grid .button { width: 100%; }
  .split-layout { grid-template-columns: 1fr; }
  .image-card-tall { aspect-ratio: 4/3; }
  .program-card { margin-top: 35px; }
  .program-media { min-height: 320px; }
  .program-copy { padding: 32px 24px 38px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 180px; }
  .benefit-card h3 { margin-top: 8px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .gallery-wide { grid-row: auto; }
  .location-panel { padding: 60px 24px 80px; }
  .location-details p { grid-template-columns: 1fr; gap: 3px; }
  .location-actions .button { width: 100%; }
  .final-cta { padding: 92px 0 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta { position: fixed; z-index: 1200; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; background: var(--accent); color: var(--black); font-weight: 900; text-decoration: none; box-shadow: 0 15px 35px rgba(0,0,0,.35); }
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Zoho Forms embed */
.zoho-form-wrap { overflow: hidden; }
.zoho-form-wrap iframe { display: block; width: 100%; background: #fff; }

/* Bilingual language switcher */
.language-switcher { display:inline-flex; align-items:center; gap:2px; padding:3px; border:1px solid rgba(255,255,255,.24); border-radius:999px; background:rgba(255,255,255,.04); }
.language-switcher a, .language-switcher span { display:flex; align-items:center; justify-content:center; min-width:34px; height:30px; padding:0 8px; border-radius:999px; color:#fff; font-size:.76rem; font-weight:900; letter-spacing:.06em; text-decoration:none; }
.language-switcher a:hover { color:var(--accent); }
.language-switcher .is-active { background:var(--accent); color:var(--black); }
.footer-language-switch { white-space:nowrap; }
.footer-language-switch a { color:#aeb2b8; text-decoration:none; }
.footer-language-switch a:hover { color:var(--accent); }
.footer-language-switch .is-active { color:#fff; font-weight:800; }
.thank-you-header-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.thankyou-language { flex:0 0 auto; }
.legal-language { margin-top:22px; color:#fff; font-weight:800; }
.legal-language a { color:var(--accent); text-decoration:none; }
.legal-language .is-active { color:#fff; }
@media (max-width:1020px) {
  .main-nav .language-switcher { align-self:flex-start; margin:16px 0 2px; }
}
