/* ==========================================================================
   FITQOR — shared styles
   Colors: Imperial Purple #4D0866 · Dark Purple #1B0534 · Charcoal #1C1C1B
           Warm White #F7F5F2 · Matte Gold #BAAD8E   Font: Archivo
   ========================================================================== */
:root {
  --imperial: #4d0866;
  --dark-purple: #1b0534;
  --charcoal: #1c1c1b;
  --warm-white: #f7f5f2;
  --gold: #baad8e;
  --nav-h: 229px;
}
*, input, textarea, select, button { font-family: 'Archivo', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Headline convention from design: BOLD first words + regular remainder */
.h-split b, .h-split strong { font-weight: 700; }
.h-split span { font-weight: 400; }
h1.h-split, h2.h-split { font-size: clamp(30px, calc(30px + 1.25vw), 48px); line-height: 1.18; font-weight: 600; letter-spacing: 0; }

/* ------------------------------------------------ top utility tabs + navbar */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(0,0,0,.69), rgba(102,102,102,0)); pointer-events: none; }
.site-header > * { pointer-events: auto; }
.utility-tabs { display: none; }
.utility-tabs .tabs { display: flex; gap: 3px; }
.utility-tabs .tabs.account { gap: 2px; }
.utility-tabs a { display: inline-flex; padding: 6px 9px; font-size: 10px; font-weight: 300;
  text-transform: uppercase; color: #fff; background: var(--dark-purple);
  border-radius: 0 0 10px 10px; white-space: nowrap; transition: filter .2s; }
.utility-tabs a.light { background: var(--warm-white); color: var(--charcoal); text-transform: none; }
.utility-tabs a:hover { filter: brightness(1.35); }
.utility-tabs a.light:hover { filter: brightness(.95); }
.navbar { position: absolute; top: 23px; left: 0; right: 0; height: 75px;
  display: flex; align-items: center; padding: 0 50px; }
.navbar .logo { flex-shrink: 0; }
.navbar .logo img { width: 155px; height: 34px; object-fit: cover; }
.nav-links { display: flex; gap: 4px; align-items: center; margin-left: 40px; flex: 1; min-width: 0; }
.nav-links a { padding: 6px 8px; border-radius: 100px; font-size: 12px; text-transform: uppercase;
  color: #fff; white-space: nowrap; transition: background .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.16); }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.5); border-radius: 100px;
  font-size: 14px; text-transform: uppercase; color: #fff; white-space: nowrap; margin-left: 8px; flex-shrink: 0; transition: background .2s, border-color .2s; }
.lang-switch:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.lang-switch .flag { font-size: 15px; line-height: 1; }
.btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 10px 30px;
  border-radius: 1000px; font-size: 16px; color: #fff; white-space: normal; transition: all .2s; }
.btn-outline { border: 1px solid #fff; text-transform: uppercase; }
.btn-outline:hover { background: #fff; color: var(--charcoal); }
.btn-purple { background: var(--imperial); font-weight: 500; }
.btn-purple:hover { background: #63118a; }
/* nav dropdowns */
.nav-drop { position: relative; }
.nav-drop .drop-menu { position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--dark-purple); border-radius: 12px; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .22s; z-index: 60; }
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: none; }
.nav-drop .drop-menu a { display: block; padding: 10px 20px; border-radius: 0; font-size: 14px; }
.nav-drop .drop-menu a:hover { background: var(--imperial); }
@media (max-width: 1250px) { .nav-drop { display: none; } }

/* mobile menu secondary links */
.mm-secondary { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center;
  max-width: 320px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 20px; }
.mm-secondary a { font-size: 14px; opacity: .85; }

.hamburger { display: none; flex-direction: column; gap: 5px; margin-left: 10px; z-index: 60; flex-shrink: 0; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: .3s; }

/* mobile menu */
@media (max-width: 1250px) {
  .utility-tabs { left: 8px; right: 8px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-switch { margin-left: auto; }
  .site-header.menu-open .mobile-menu { transform: none; }
}
@media (max-width: 480px) {
  .utility-tabs { flex-wrap: wrap; row-gap: 4px; justify-content: center; }
  .utility-tabs .tabs, .utility-tabs .tabs.account { flex-wrap: wrap; justify-content: center; }
  .utility-tabs a { font-size: 9px; padding: 5px 7px; }
  .navbar { padding: 0 20px; }
  .lang-switch { padding: 6px 10px; font-size: 11px; gap: 4px; }
  .lang-switch .flag { font-size: 13px; }
}
.mobile-menu { position: fixed; inset: 0; background: var(--dark-purple); z-index: 55;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transform: translateX(100%); transition: transform .35s; }
.mobile-menu a { color: #fff; font-size: clamp(17px, calc(17px + 0.35vw), 22px); text-transform: uppercase; }
.site-header.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------- hero */
.hero { position: relative; height: 894px; background: #000; overflow: hidden; }
.hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 12%; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,0)); }
.hero-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 34.65%; min-width: 300px; z-index: 2;
  border-left: 1px solid #fff; backdrop-filter: blur(14px); background: rgba(0,0,0,.18);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 0 40px 60px; color: #fff; }
.hero-panel .panel-title { font-size: clamp(30px, calc(30px + 1.25vw), 48px); line-height: 1.02; font-weight: 500; max-width: 352px; }
.hero-panel .panel-title b { font-weight: 700; }
.hero-panel .panel-sub { font-size: clamp(16px, calc(16px + 0.28vw), 20px); line-height: 1.5; margin-top: 12px; max-width: 280px; }
.hero-tagline { color: #fff; font-size: clamp(16px, 1.8vw, 22px); font-weight: 600;
  white-space: nowrap; margin-top: 16px; }
.hero-tagline b { font-weight: 700; }
.know-more { position: absolute; left: 4%; bottom: 320px; z-index: 3; display: inline-flex;
  align-items: center; gap: 12px; color: #fff; font-size: 14px; text-transform: uppercase; line-height: 1.28;
  width: fit-content; }
.know-more .pill { width: 62px; height: 30px; border: 1px solid #fff; border-radius: 50px;
  display: flex; align-items: center; padding: 2px; overflow: hidden; position: relative;
  transition: background .3s, border-color .3s; }
.pill .knob { width: 24px; height: 24px; border-radius: 50%; background: #fff; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.65,0,.35,1); }
.know-more:hover .pill, .promo-card .know:hover .pill, .explore-card .know:hover .pill { background: var(--imperial); border-color: var(--imperial); }
.know-more:hover .pill .knob, .promo-card .know:hover .pill .knob, .explore-card .know:hover .pill .knob { transform: translateX(34px); }
.promo-card .know .pill { overflow: hidden; position: relative; transition: background .3s, border-color .3s; }
.whatsapp-float { position: absolute; right: 26px; bottom: 55px; z-index: 3; width: 25px; height: 25px; transition: transform .2s; }
.whatsapp-float > img { width: 100%; height: 100%; object-fit: contain; aspect-ratio: 1/1; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float.whatsapp-fixed { position: fixed; right: 26px; bottom: auto; top: 110px; z-index: 61; }
@media (max-width: 900px) {
  .whatsapp-float.whatsapp-fixed { right: 16px; top: 110px; width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .whatsapp-float.whatsapp-fixed { right: 12px; top: 100px; width: 19px; height: 19px; }
}
@media (max-width: 900px) {
  .hero { height: 92vh; min-height: 560px; }
  .hero-panel { position: absolute; inset: auto 0 0 0; width: 100%; border-left: 0;
    border-top: 1px solid #fff; padding: 24px; background: rgba(0,0,0,.35); }
  .hero-panel .panel-title { font-size: clamp(20px, 5vw, 28px); max-width: 100%; }
  .hero-panel .panel-sub { font-size: clamp(13px, 3.2vw, 16px); max-width: 100%; }
  .hero-tagline { font-size: clamp(15px, 4vw, 20px); }
  .options-hero-labels { font-size: clamp(16px, 4.5vw, 22px); }
  .promo-hero-list { font-size: clamp(13px, 3.2vw, 16px); }
  .know-more { top: 110px; left: 16px; bottom: auto; right: auto; }
  .whatsapp-float { top: 110px; right: 16px; bottom: auto; width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .whatsapp-float { top: 100px; right: 12px; width: 19px; height: 19px; }
  .hero-panel .panel-title { font-size: clamp(18px, 5.5vw, 22px); }
  .hero-panel .panel-sub { font-size: clamp(12px, 3vw, 14px); }
  .hero-tagline { font-size: clamp(14px, 3.6vw, 17px); }
  .options-hero-labels { font-size: clamp(14px, 4vw, 18px); }
}

/* ------------------------------------------------------------- sections */
.section { padding: 90px 0; }
.section-title { text-align: center; font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 600; line-height: 1.2; }
.section-title b { font-weight: 700; }
.section-title span { font-weight: 400; }

/* forge cards (home) */
.forge-cards { display: flex; gap: 27px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.forge-card { position: relative; width: 430px; max-width: 100%; height: 200px; border-radius: 18px;
  overflow: hidden; box-shadow: 0 0 6px rgba(0,0,0,.25); }
.forge-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.forge-card:hover > img { transform: scale(1.05); }
.forge-card .fc-box { position: absolute; top: 50%; transform: translateY(-50%); left: 43%;
  width: 260px; max-width: 56%; height: 208px; border: 1px solid #fff; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px 22px; }
.forge-card .fc-box h3 { font-size: clamp(16px, calc(16px + 0.35vw), 21px); font-weight: 700; line-height: 1.33; }
.forge-card .fc-box p { font-size: 13px; line-height: 1.29; margin-top: 8px; }

/* quick pills row (home) */
.pill-row { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 90px; }
.pill-card { position: relative; width: 248px; height: 73px; background: var(--warm-white);
  border-radius: 14px; box-shadow: 0 0 4px rgba(0,0,0,.25); display: flex; align-items: center; }
.pill-card .pc-icon { width: 99px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid #d9d3c7; height: 100%; }
.pill-card .pc-icon img { width: 32px; height: 32px; object-fit: contain; }
.pill-card .pc-label { padding-left: 19px; font-size: 16px; line-height: 1.19; }
.pill-card .pc-label b { display: block; }
.pill-card.dropdown .drop { position: absolute; top: 73px; left: 0; width: 100%;
  background: var(--imperial); color: #fff; border-top: 1px solid #fff;
  border-radius: 0 0 14px 14px; padding: 15px 17px 15px 40px; list-style: disc;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .25s; z-index: 5; }
.pill-card.dropdown .drop li { font-size: 15px; line-height: 1.47; }
.pill-card.dropdown:hover .drop, .pill-card.dropdown:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.pill-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.3); }

/* partners (home) */
.partner-row { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 60px; }
.partner-card { width: 337px; height: 160px; background: var(--warm-white); border-radius: 20px;
  overflow: hidden; box-shadow: 0 0 6px rgba(0,0,0,.3); display: flex; transition: transform .25s; }
.partner-card:hover { transform: translateY(-4px); }
.partner-card .logo-side { width: 44%; display: flex; align-items: center; justify-content: center; }
.partner-card .logo-side img { max-width: 70%; max-height: 62%; object-fit: contain; }
.partner-card .logo-side .tg-logo-img { max-width: 88%; }
.partner-card .info-side { padding: 18px 0 18px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.partner-card .info-side h3 { font-size: 19px; line-height: 1.26; font-weight: 400; }
.partner-card .info-side h3 b { display: block; }
.partner-card .info-side .book { font-weight: 600; font-size: 18px; }
.partner-card .info-side .book:hover { text-decoration: underline; }
.hr-line { border: 0; border-top: 1px solid var(--gold); margin: 0; }

/* mission strip (home) */
.mission { border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.mission .container { display: flex; align-items: center; min-height: 218px; }
.mission .m-left { flex: 1; text-align: right; padding-right: 37px; font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 600; line-height: 1.05; }
.mission .m-left b { font-weight: 700; }
.mission .m-right { flex: 1; border-left: 1px solid var(--charcoal); padding: 36px 0 36px 60px;
  max-width: 400px; display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 1.25; }
@media (max-width: 800px) {
  .mission .container { flex-direction: column; padding: 30px 24px; gap: 20px; }
  .mission .m-left { text-align: center; padding: 0; }
  .mission .m-right { border-left: 0; padding: 0; }
}

/* our team (home) */
.testi-row { position: relative; margin-top: 40px; padding: 0 60px; }
.testi-wrap { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 20px 4px 40px; }
.testi-wrap::-webkit-scrollbar { display: none; }
.testi-track { display: flex; gap: 24px; }
.testi-card { flex-shrink: 0; background: var(--warm-white); border-radius: 18px;
  box-shadow: 0 0 8px rgba(0,0,0,.2); overflow: hidden; width: 262px; height: auto;
  position: relative; transition: transform .3s; }
.testi-card:hover { transform: scale(1.08); z-index: 5; }
.testi-card img { width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; }
.testi-card .t-body { padding: 23px 28px 28px; }
.testi-card .t-body h3 { font-size: 18px; font-weight: 400; }
.testi-card .t-body h3 b { font-weight: 700; }
.testi-card .t-body .role { font-size: 13px; font-weight: 600; color: var(--imperial); margin-top: 6px; }
.testi-card .t-body p { font-size: 16px; line-height: 1.19; margin-top: 14px; }
.testi-card.wide { width: 340px; }
.testi-card .t-body .t-label { margin-top: 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; opacity: .55; }
.testi-card .t-body ul { margin-top: 8px; padding-left: 16px; font-size: 13px; line-height: 1.4; }
.testi-card .t-body ul li { margin-top: 4px; }
.testi-card .t-body .quote { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.1); font-style: italic; font-size: 14px; }
.testi-card .t-body .languages { margin-top: 10px; font-size: 13px; opacity: .75; }
.testi-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px;
  z-index: 6; transition: transform .2s; }
.testi-nav:hover { transform: translateY(-50%) scale(1.15); }
.testi-nav.prev { left: 8px; }
.testi-nav.next { right: 8px; transform: translateY(-50%) rotate(180deg); }
.testi-nav.next:hover { transform: translateY(-50%) rotate(180deg) scale(1.15); }
@media (max-width: 1100px) { .testi-nav { display: none; } .testi-row { padding: 0 16px; } }

/* stay tuned (home/contact) */
.stay-sub { text-align: center; margin-top: 25px; font-size: 16px; line-height: 1.31; }
.stay-row { position: relative; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 55px; padding: 0 60px; }
.stay-card { width: 215px; }
.stay-card .photo { height: 185px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 6px rgba(0,0,0,.2); background: var(--warm-white); }
.stay-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.stay-card:hover .photo img { transform: scale(1.06); }
.stay-card .tag { width: 100%; margin: -40px auto 0; position: relative; background: var(--warm-white);
  border-radius: 10px; box-shadow: 0 0 4px rgba(0,0,0,.2); text-align: center; padding: 12px 6px; }
.stay-card .tag h3 { font-size: 16px; font-weight: 400; line-height: 1.06; }
.stay-card .tag h3 b { font-weight: 700; }
.stay-card .tag .lvl { display: flex; gap: 8px; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 10px; }
.stay-card .tag .lvl::before { content: ""; width: 3px; height: 3px; background: var(--imperial); }
.stay-card .tag .loc { font-size: 9px; margin-top: 4px; }
.stay-card .tag .when { display: flex; gap: 16px; justify-content: center; font-size: 9px; margin-top: 6px; }
.stay-nav { position: absolute; top: 130px; width: 34px; height: 34px; z-index: 4; transition: transform .2s; }
.stay-nav:hover { transform: scale(1.15); }
.stay-nav.prev { left: 8%; }
.stay-nav.next { right: 8%; transform: rotate(180deg); }
.stay-nav.next:hover { transform: rotate(180deg) scale(1.15); }
@media (max-width: 1100px) { .stay-nav { display: none; } .stay-row { padding: 0 16px; } }

/* app download */
.app-section .container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.app-section .phone { flex: 1 1 480px; max-width: 683px; }
.app-section .phone img { width: 100%; height: auto; }
.app-section .app-info { flex: 1 1 320px; max-width: 405px; display: flex; flex-direction: column; gap: 26px; }
.app-section .app-info h2 { font-size: clamp(30px, calc(30px + 1.25vw), 48px); line-height: 1.2; font-weight: 400; }
.app-section .app-info h2 b { font-weight: 700; }
.app-qr { display: flex; align-items: center; gap: 14px; }
.app-qr img { width: 96px; height: 96px; border: 1px solid var(--gold); border-radius: 8px; }
.app-qr span { font-size: 14px; line-height: 1.3; max-width: 160px; }
.app-section p { font-size: 16px; line-height: 1.19; }

/* why download */
.why-section { border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); position: relative; }
.why-section .container { display: flex; gap: 93px; padding-top: 70px; padding-bottom: 70px; flex-wrap: wrap; }
.why-col { flex: 1 1 380px; display: flex; flex-direction: column; gap: 20px; }
.why-col:first-child { position: relative; }
.why-title { font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 400; line-height: 1.2; text-align: right; margin-bottom: 34px; }
.why-title b { font-weight: 700; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-item img { width: 28px; height: 24px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.why-item p { font-size: 16px; line-height: 1.19; max-width: 405px; }
.center-badges { display: flex; justify-content: center; padding: 40px 0 90px; }
.center-badges img { width: 358px; max-width: 80vw; }
@media (max-width: 900px) { .why-title { text-align: left; } }

/* map strip + club tabs */
.map-strip { position: relative; }
.map-strip .club-tabs { display: flex; gap: 12px; padding: 0 8.3%; }
.club-tabs button { padding: 12px 16px; min-height: 40px; display: flex; align-items: center;
  border-radius: 10px 10px 0 0; font-size: 12px; color: #fff; }
.club-tabs .t-club { background: var(--imperial); font-weight: 700; }
.club-tabs .t-studio { background: var(--gold); }
.club-tabs button.inactive { opacity: .75; }
.club-tabs button:hover { opacity: 1; }
.map-strip .map-img { width: 100%; height: 220px; object-fit: cover; }

/* footer */
.site-footer { background: var(--charcoal); color: #fff; padding: 80px 0; }
.site-footer .container { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.site-footer .f-logo img { width: 137px; height: 30px; object-fit: cover; }
.f-cols { display: flex; gap: 73px; flex-wrap: wrap; }
.f-social { display: flex; gap: 6px; align-items: center; }
.f-social a { display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.f-social a:hover { transform: scale(1.12); }
.f-social .fb img { width: 32px; height: 32px; }
.f-social .round { width: 28px; height: 28px; background: #fff; border-radius: 50%; }
.f-social .round img { width: 14px; height: 14px; }
.f-col { display: flex; flex-direction: column; gap: 12px; font-size: 16px; line-height: 1.5; }
.f-col a { text-transform: uppercase; }
.f-col a:hover { color: var(--gold); }
.f-col .plain { text-transform: none; }
.f-col .addr { margin-top: 47px; }
.f-col .phone-num { margin-top: 11px; }
.f-copyright { width: 100%; margin-top: 40px; font-size: 13px; opacity: .6; }


/* ------------------------------------------------ promotions page */
.promo-hero-list { color: #fff; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 40px 30px; margin-top: 60px; }
.promo-card { position: relative; border-radius: 18px; overflow: hidden; height: 420px;
  box-shadow: 0 0 8px rgba(0,0,0,.25); color: #fff; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px; }
.promo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s; }
.promo-card:hover > img { transform: scale(1.05); }
.promo-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05) 60%); z-index: 1; }
.promo-card > * { position: relative; z-index: 2; }
.promo-card h3 { font-size: clamp(25px, calc(25px + 0.9vw), 38px); line-height: 1.05; font-weight: 400; }
.promo-card h3 b { font-weight: 700; }
.promo-card .until { font-size: 14px; margin-top: 10px; }
.promo-card .know { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px;
  font-size: 14px; text-transform: uppercase; }
.promo-card .know .pill { width: 62px; height: 30px; border: 1px solid #fff; border-radius: 50px;
  display: flex; align-items: center; padding: 2px; position: relative; }
.promo-feature { display: flex; gap: 50px; align-items: center; margin-top: 80px; flex-wrap: wrap; }

/* explore the club carousel (home) */
.explore-row { position: relative; margin-top: 50px; padding: 0 60px; }
.explore-wrap { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 4px 20px; }
.explore-wrap::-webkit-scrollbar { display: none; }
.explore-track { display: flex; gap: 20px; }
.explore-card { flex-shrink: 0; position: relative; width: 240px; height: 300px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,.25); color: #fff; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 22px; transition: transform .3s; }
.explore-card:hover { transform: scale(1.04); z-index: 5; }
.explore-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s; }
.explore-card:hover > img { transform: scale(1.05); }
.explore-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05) 60%); z-index: 1; }
.explore-card > * { position: relative; z-index: 2; }
.explore-card h3 { font-size: clamp(18px, calc(18px + 0.5vw), 24px); line-height: 1.1; font-weight: 400; }
.explore-card h3 b { font-weight: 700; }
.explore-card .know { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
  font-size: 13px; text-transform: uppercase; }
.explore-card .know .pill { width: 62px; height: 30px; border: 1px solid #fff; border-radius: 50px;
  display: flex; align-items: center; padding: 2px; position: relative; overflow: hidden; transition: background .3s, border-color .3s; }
.explore-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  z-index: 6; transition: transform .2s; }
.explore-nav:hover { transform: translateY(-50%) scale(1.15); }
.explore-nav.prev { left: 8px; }
.explore-nav.next { right: 8px; transform: translateY(-50%) rotate(180deg); }
.explore-nav.next:hover { transform: translateY(-50%) rotate(180deg) scale(1.15); }
@media (max-width: 1100px) { .explore-nav { display: none; } .explore-row { padding: 0 16px; } }
@media (min-width: 1101px) {
  .explore-row { padding: 0; }
  .explore-nav { display: none; }
  .explore-wrap { overflow: visible; padding: 4px 4px 4px; }
  .explore-track { flex-wrap: wrap; justify-content: center; }
}
.promo-feature .pf-img { flex: 1 1 420px; border-radius: 20px; overflow: hidden; max-height: 420px; }
.promo-feature .pf-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-feature .pf-body { flex: 1 1 380px; }
.promo-feature .pf-body h2 { font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 400; line-height: 1.1; }
.promo-feature .pf-body h2 b { font-weight: 700; }
.promo-feature .pf-body p { margin-top: 20px; line-height: 1.4; }
.promo-code { margin-top: 24px; font-size: clamp(16px, calc(16px + 0.28vw), 20px); }
.promo-code b { color: var(--imperial); letter-spacing: 1px; }

/* ------------------------------------------------ classes pages */
.class-list { display: flex; flex-direction: column; gap: 60px; margin-top: 60px; }
.class-row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.class-row:nth-child(even) { flex-direction: row-reverse; }
.class-row .c-img { flex: 1 1 420px; max-height: 380px; border-radius: 20px; overflow: hidden; }
.class-row .c-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.class-row:hover .c-img img { transform: scale(1.04); }
.class-row .c-body { flex: 1 1 360px; }
.class-row .c-body h3 { font-size: clamp(26px, calc(26px + 0.97vw), 40px); line-height: 1.05; font-weight: 400; }
.class-row .c-body h3 b { font-weight: 700; display: block; }
.class-row .c-body p { margin-top: 18px; line-height: 1.4; }
.class-row .c-body .btn { margin-top: 26px; }
.quiz-banner { background: linear-gradient(135deg, var(--dark-purple), var(--imperial));
  color: #fff; text-align: center; padding: 70px 24px; }
.quiz-banner h2 { font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 400; }
.quiz-banner h2 b { font-weight: 700; }
.quiz-banner p { margin-top: 14px; font-size: 18px; }
.quiz-banner .btn { margin-top: 30px; border: 1px solid #fff; }

/* special events (classes) */
.events-box { display: flex; gap: 60px; margin-top: 60px; flex-wrap: wrap; }
.events-box .e-left { flex: 1 1 340px; }
.events-box .e-left h2 { font-size: clamp(30px, calc(30px + 1.25vw), 48px); line-height: 1.15; font-weight: 400; }
.events-box .e-left h2 b { font-weight: 700; }
.events-box .price { font-size: clamp(26px, calc(26px + 0.97vw), 40px); font-weight: 700; margin-top: 24px; }
.events-box .price small { display: block; font-size: 14px; font-weight: 400; }
.events-box .e-left ul { margin-top: 22px; list-style: disc; padding-left: 20px; line-height: 1.6; }
.events-box .e-right { flex: 1 1 380px; display: flex; flex-direction: column; gap: 20px; }
.events-box .e-right h3 { font-size: clamp(18px, calc(18px + 0.42vw), 24px); font-weight: 400; }
.events-box .e-right h3 b { font-weight: 700; }

/* classes options page */
.options-hero-labels { font-size: clamp(22px, calc(22px + 0.69vw), 32px); line-height: 1.31; color: #fff; }
.longevity-banner { font-size: clamp(30px, calc(30px + 1.25vw), 48px); color: #fff; font-weight: 500; }
.gradient-section { background: linear-gradient(to bottom, var(--dark-purple), var(--imperial)); color: #fff; }
.training-grid { max-width: 808px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 25px; }
.training-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.training-row .txt { flex: 1 1 300px; font-size: 16px; line-height: 1.19; }
.training-row .txt.right { text-align: right; }
.training-row .img { flex: 1 1 320px; border-radius: 20px; overflow: hidden; max-width: 390px; }
.training-row .img img { width: 100%; height: 100%; object-fit: cover; }
.training-row h3 { font-size: clamp(16px, calc(16px + 0.28vw), 20px); line-height: 1.3; font-weight: 400; }
.training-row h3 b { display: block; font-weight: 700; }
.training-row .checks { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.training-row .checks .why-item p { font-size: 12px; line-height: 1.25; }
.training-row .checks .why-item img { width: 15px; height: 13px; }

/* ------------------------------------------------ plans page */
.plans-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.plans-tabs button { padding: 12px 34px; border-radius: 100px; border: 1px solid var(--charcoal);
  font-size: 16px; text-transform: uppercase; transition: all .2s; }
.plans-tabs button.active, .plans-tabs button:hover { background: var(--imperial); color: #fff; border-color: var(--imperial); }
.plans-banner { display: flex; gap: 40px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 55px; }
.plan-free { display: flex; align-items: center; gap: 14px; font-size: clamp(18px, calc(18px + 0.42vw), 24px); }
.plan-free .big { font-size: clamp(30px, calc(30px + 1.25vw), 48px); font-weight: 700; }
.plan-free img { width: 40px; height: 40px; }
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 30px; margin-top: 60px; }
.plan-card { background: #fff; border-radius: 20px; box-shadow: 0 0 8px rgba(0,0,0,.15);
  padding: 34px 28px; display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .25s, box-shadow .25s; }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.plan-card .ribbon { position: absolute; top: 18px; right: 20px; background: var(--gold);
  color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
.plan-card h3 { font-size: clamp(16px, calc(16px + 0.28vw), 20px); font-weight: 700; line-height: 1.25; min-height: 50px; }
.plan-card .price { font-size: clamp(28px, calc(28px + 1.11vw), 44px); font-weight: 700; color: var(--imperial); }
.plan-card .price small { font-size: 15px; font-weight: 400; color: var(--charcoal); display: block; }
.plan-card ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px;
  line-height: 1.35; border-top: 1px solid #e4dfd5; padding-top: 14px; }
.plan-card ul li::before { content: "— "; color: var(--gold); }
.plan-card .btn { margin-top: auto; align-self: flex-start; background: var(--imperial); }
.plan-card .btn:hover { background: #63118a; }

/* how it works page — life-stage carousel */
.stage-row { position: relative; margin-top: 50px; padding: 0 60px; }
.stage-wrap { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 20px 4px 40px; }
.stage-wrap::-webkit-scrollbar { display: none; }
.stage-track { display: flex; gap: 24px; }
.stage-card { flex-shrink: 0; background: var(--warm-white); color: var(--charcoal); border-radius: 18px;
  box-shadow: 0 0 8px rgba(0,0,0,.25); overflow: hidden; width: 300px; position: relative; transition: transform .3s; }
.stage-card:hover { transform: scale(1.05); z-index: 5; }
.stage-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.stage-card .sc-body { padding: 22px 24px 28px; }
.stage-card .sc-tag { display: inline-block; background: var(--imperial); color: #fff; font-size: 12px;
  font-weight: 700; letter-spacing: .04em; padding: 4px 12px; border-radius: 100px; }
.stage-card h3 { font-size: 18px; font-weight: 700; margin-top: 12px; line-height: 1.25; }
.stage-card .sc-copy { font-size: 14px; line-height: 1.4; margin-top: 10px; }
.stage-card .sc-focus-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  margin-top: 16px; color: var(--imperial); }
.stage-card ul { margin-top: 8px; padding-left: 18px; font-size: 13px; line-height: 1.4; }
.stage-card ul li { margin-top: 4px; }
.stage-card .sc-link { font-size: 13px; line-height: 1.4; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.1); }
.stage-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  z-index: 6; transition: transform .2s; background: var(--warm-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.stage-nav img { width: 16px; height: 16px; }
.stage-nav:hover { transform: translateY(-50%) scale(1.15); }
.stage-nav.prev { left: 8px; }
.stage-nav.next { right: 8px; }
.stage-nav.next img { transform: rotate(180deg); }
@media (max-width: 1100px) { .stage-nav { display: none; } .stage-row { padding: 0 16px; } }
.plans-note { text-align: center; margin-top: 40px; font-size: 14px; opacity: .8; }
.plan-group-title { font-size: clamp(20px, calc(20px + 0.56vw), 28px); font-weight: 700; margin: 70px 0 0; text-align: center; text-transform: uppercase; }

/* membership perks list */
.perk-list { max-width: 520px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.perk-list .why-item p { font-size: 17px; }

/* ------------------------------------------------ personal training page */
.pt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px; margin-top: 60px; }
.pt-card { position: relative; height: 430px; border-radius: 20px; overflow: hidden;
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.pt-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s; }
.pt-card:hover > img { transform: scale(1.05); }
.pt-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0) 65%); z-index: 1; }
.pt-card > * { position: relative; z-index: 2; }
.pt-card h3 { font-size: clamp(22px, calc(22px + 0.56vw), 30px); line-height: 1.1; font-weight: 400; }
.pt-card h3 b { display: block; font-weight: 700; }
.pt-card p { margin-top: 10px; font-size: 15px; }
.pt-card .arrow { width: 34px; height: 34px; margin-top: 16px; transform: rotate(180deg); transition: transform .25s; }
.pt-card:hover .arrow { transform: rotate(180deg) translateX(-6px); }
.pt-card .know { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 13px; text-transform: uppercase; }
.pt-card .know .pill { width: 54px; height: 26px; border: 1px solid #fff; border-radius: 50px;
  display: flex; align-items: center; padding: 2px; position: relative; transition: background .3s, border-color .3s; }
.pt-card .know .pill .knob { width: 20px; height: 20px; }
.pt-card:hover .know .pill { background: var(--imperial); border-color: var(--imperial); }
.pt-card:hover .know .pill .knob { transform: translateX(26px); }

/* compact recovery ecosystem cards (recovery-overview.html) */
.pt-grid.compact { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 24px; }
.pt-grid.compact .pt-card { height: 270px; padding: 22px; }
.pt-grid.compact .pt-card h3 { font-size: clamp(18px, calc(18px + 0.3vw), 22px); }
.pt-grid.compact .pt-card p { font-size: 13px; margin-top: 6px; }

/* FAQ accordion */
.faq-wrap { max-width: 860px; margin: 50px auto 0; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gold); }
.faq-item summary, .faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 18px; text-align: left; padding: 24px 4px; font-size: clamp(16px, calc(16px + 0.28vw), 20px); font-weight: 600; cursor: pointer; }
.faq-q .plus { width: 26px; height: 26px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 24px; line-height: 1.5; max-width: 720px; }

/* ------------------------------------------------ the club page */
.about-cols { display: flex; gap: 50px; margin-top: 60px; flex-wrap: wrap; line-height: 1.45; }
.about-cols .col { flex: 1 1 300px; display: flex; flex-direction: column; gap: 18px; }
.about-img { border-radius: 20px; overflow: hidden; margin-top: 60px; }
.about-img img { width: 100%; max-height: 520px; object-fit: cover; }
.tagline-center { text-align: center; font-size: clamp(24px, calc(24px + 0.69vw), 34px); font-weight: 600; margin-top: 60px; color: var(--imperial); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 30px; margin-top: 60px; }
.team-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 0 8px rgba(0,0,0,.15); }
.team-card img { width: 100%; height: 300px; object-fit: cover; }
.team-card .t-info { padding: 24px; }
.team-card h3 { font-size: clamp(18px, calc(18px + 0.42vw), 24px); }
.team-card .role { color: var(--imperial); font-weight: 600; margin-top: 4px; }
.team-card p { margin-top: 12px; font-size: 14px; line-height: 1.4; }
.amenity-list { max-width: 720px; margin: 50px auto 0; display: flex; flex-direction: column; }
.amenity { display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; border-bottom: 1px solid var(--gold); flex-wrap: wrap; }
.amenity h3 { font-size: clamp(17px, calc(17px + 0.35vw), 22px); }
.amenity .note { font-size: 14px; opacity: .75; }
.amenity .tag-soon { background: var(--dark-purple); color: #fff; font-size: 12px;
  padding: 6px 14px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; }
.amenity .tag-free { background: var(--imperial); }

/* ------------------------------------------------ contact page */
.contact-cards { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 60px; }
.contact-card { background: #fff; border-radius: 20px; box-shadow: 0 0 8px rgba(0,0,0,.15);
  padding: 40px; flex: 1 1 340px; max-width: 480px; }
.contact-card h3 { font-size: clamp(18px, calc(18px + 0.42vw), 24px); font-weight: 700; }
.contact-card .sub { font-size: 14px; opacity: .75; margin-top: 4px; }
.contact-card .line { display: flex; gap: 12px; align-items: center; margin-top: 20px; font-size: 17px; }
.contact-card .line a:hover { color: var(--imperial); }
.contact-card .line-icon { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card .map { border-radius: 12px; overflow: hidden; margin-top: 24px; }
.contact-card .map img { width: 100%; height: 180px; object-fit: cover; }
.contact-form { max-width: 720px; margin: 60px auto 0; display: grid; gap: 18px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid #d9d3c7; border-radius: 10px;
  font-family: inherit; font-size: 16px; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 2px solid var(--imperial); border-color: transparent; }
.contact-form .btn { justify-self: start; background: var(--imperial); }
.contact-form .error { color: #c0392b; font-size: 13px; display: none; }
.form-msg { font-size: 16px; padding: 14px 18px; border-radius: 10px; display: none; }
.form-msg.ok { display: block; background: #e8f5e9; color: #1b5e20; }
.form-msg.err { display: block; background: #fdecea; color: #c0392b; }

/* free day pass modal */
.daypass-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.daypass-modal.open { display: flex; }
.daypass-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.daypass-box { position: relative; background: var(--warm-white); border-radius: 20px; max-width: 440px; width: 100%;
  padding: 44px 36px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.daypass-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(0,0,0,.15); font-size: 20px; line-height: 1; cursor: pointer;
  color: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.daypass-close:hover { background: rgba(0,0,0,.06); }
.daypass-title { font-size: clamp(26px, calc(26px + 1vw), 34px); font-weight: 700; color: var(--charcoal); }
.daypass-sub { margin-top: 12px; font-size: 15px; line-height: 1.5; color: var(--charcoal); opacity: .8; }
.daypass-form { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.daypass-form input[type=email] { padding: 14px 18px; border-radius: 100px; border: 1px solid rgba(0,0,0,.2);
  font-size: 15px; font-family: inherit; width: 100%; }
.daypass-form .btn { width: 100%; }
.daypass-form .error { display: none; color: #c0392b; font-size: 13px; text-align: left; margin: -6px 4px 0; }
.daypass-form .form-msg { font-size: 14px; padding: 12px 16px; text-align: left; }
@media (max-width: 480px) { .daypass-box { padding: 32px 22px; } }
@media (max-width: 640px) { .contact-form .row2 { grid-template-columns: 1fr; } }

/* Technogym wordmark placeholder (swap for logo file when available) */
.tg-wordmark { color: #fff; font-weight: 700; font-size: 17px; letter-spacing: 3px; }

/* slim app banner (home) */
.app-banner { background: var(--charcoal); color: #fff; padding: 34px 0; }
.app-banner .container { display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; }
.app-banner .ab-text { font-size: clamp(19px, calc(19px + 0.49vw), 26px); font-weight: 400; }
.app-banner .ab-text b { font-weight: 700; }
.app-banner .ab-text span { display: block; font-size: 15px; opacity: .75; margin-top: 6px; }
@media (max-width: 700px) { .app-banner .container { justify-content: center; text-align: center; } }

/* class filter bar */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.filter-bar button { padding: 10px 26px; border-radius: 100px; border: 1px solid var(--charcoal);
  font-size: 15px; text-transform: uppercase; transition: all .2s; }
.filter-bar button.active, .filter-bar button:hover { background: var(--imperial); color: #fff; border-color: var(--imperial); }
.cat-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 11px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }

/* monthly/annual billing toggle */
.billing-toggle { display: flex; justify-content: center; margin-top: 26px; }
.billing-toggle button { padding: 10px 30px; border: 1px solid var(--charcoal); font-size: 15px;
  text-transform: uppercase; transition: all .2s; }
.billing-toggle button:first-child { border-radius: 100px 0 0 100px; }
.billing-toggle button:last-child { border-radius: 0 100px 100px 0; border-left: 0; }
.billing-toggle button.active { background: var(--dark-purple); color: #fff; border-color: var(--dark-purple); }

/* wellness age steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 26px; margin-top: 50px; }
.step-card { background: #fff; border-radius: 18px; box-shadow: 0 0 6px rgba(0,0,0,.15);
  padding: 30px 26px; position: relative; }
.step-card .step-num { display: inline-flex; width: 42px; height: 42px; border-radius: 50%;
  background: var(--imperial); color: #fff; align-items: center; justify-content: center;
  font-size: clamp(16px, calc(16px + 0.28vw), 20px); font-weight: 700; }
.step-card h3 { margin-top: 16px; font-size: clamp(16px, calc(16px + 0.28vw), 20px); }
.step-card p { margin-top: 8px; font-size: 14px; line-height: 1.4; }

/* lean pages */
.lean-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 26px; margin-top: 50px; }
.lean-item { background: #fff; border-radius: 18px; box-shadow: 0 0 6px rgba(0,0,0,.12); padding: 30px 26px; }
.lean-item h3 { font-size: clamp(16px, calc(16px + 0.28vw), 20px); color: var(--imperial); }
.lean-item p { margin-top: 8px; font-size: 15px; line-height: 1.4; }
.lean-links { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.lean-cta { text-align: center; margin-top: 60px; display: flex; gap: 14px; justify-content: center;
  align-items: center; flex-wrap: wrap; flex-direction: column; }
.lean-cta p { max-width: 480px; }
.lean-cta .btn { max-width: 100%; }

/* legal content */
.legal { max-width: 760px; }
.legal .placeholder-note { background: #fdf3d7; border: 1px solid var(--gold); border-radius: 10px;
  padding: 14px 18px; font-size: 15px; }
.legal-sec { margin-top: 36px; }
.legal-sec h2 { font-size: clamp(17px, calc(17px + 0.35vw), 22px); }
.legal-sec .placeholder { margin-top: 8px; opacity: .55; font-style: italic; }
.legal-sec p { margin-top: 10px; font-size: 15px; line-height: 1.6; }
.legal-sec ul { list-style: disc; margin-top: 10px; padding-left: 20px; font-size: 15px; line-height: 1.6; }
.legal-sec li { margin-top: 4px; }
.legal-sec .legal-note { margin-top: 10px; font-size: 14px; font-style: italic; opacity: .75; }
.legal-sec a { text-decoration: underline; }
.legal-intro { margin-top: 8px; font-size: 15px; opacity: .8; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
