/* ═══════════════════════════════════════════════════════════
   LUNA PILATES — KAPOSVÁR  ·  v2 (taupe / serif-slab direction)
   Inspired by aerastudio.hu + inhale.hu
   Palette: warm sand + walnut · Type: display serif + slab + sans
═══════════════════════════════════════════════════════════ */

:root {
  /* Final palette — matched to Figma (white BG + warm accents) */
  --sand: #b7a68d;          /* primary — warm taupe */
  --sand-soft: #d8d0c0;     /* secondary — light beige */
  --sand-deep: #8e7a5d;     /* deeper taupe for hover */
  --cream: #ffffff;         /* page background — pure white (Figma) */
  --cream-soft: #fffdf8;    /* lifted surface — INTRO, NEM CSAK NŐKNEK, KIDS sections (Figma) */
  --cream-mid:  #f9f7f4;    /* off-white — KÉNYELEM, JÓGA sections (Figma) */
  --cream-deep: #f0ead8;    /* card / image placeholder bg */
  --walnut: #2a2620;        /* primary text */
  --walnut-soft: #6f6657;   /* secondary text */
  --rust: #a96744;          /* accent — terracotta CTA highlight */
  --rust-deep: #7e4b30;
  --line: rgba(138, 116, 86, 0.20);
  --line-soft: rgba(138, 116, 86, 0.10);
  --black: #14110d;

  /* Typography — modern serif + sans, Jost for all body */
  --display: 'Cormorant Garamond', 'Italiana', 'Playfair Display', serif;
  --slab: 'Jost', 'Inter', 'Open Sans', sans-serif; /* body fallback — Jost instead of Roboto Slab */
  --serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --sans: 'Jost', 'Inter', 'Open Sans', sans-serif;
  --script: 'Sacramento', cursive; /* reserved for very rare flourishes */

  --container: 1320px;
  --gutter-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 11vw, 130px);
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--walnut);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* clip (not hidden) keeps the page as scroll container so position:sticky works on mobile */
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--sand); color: var(--cream-soft); }

/* ─── Typography primitives ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--walnut);
  line-height: 1.1;
}

/* Globally neutralize <em> inside ANY heading — uniform display, no italic / no color shift */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em,
.section-title em {
  font: inherit !important;
  color: inherit !important;
  text-transform: inherit !important;
  letter-spacing: inherit !important;
  font-weight: inherit !important;
  font-style: normal !important;
}
.eyebrow,
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
p {
  font-family: var(--sans);
  color: var(--walnut-soft);
  font-weight: 300;
  line-height: 1.75;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--walnut-soft);
  max-width: 540px;
  font-weight: 400;
}

/* Section title pattern with " // " separator (à la ÄRA) */
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--walnut);
  letter-spacing: -0.005em;
}
.section-title.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(28px, 3.5vw, 42px);
  font-family: var(--slab);
  font-weight: 300;
}
.section-title .sep {
  color: var(--sand);
  font-weight: 300;
  margin-left: 6px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease;
  cursor: pointer;
}
.btn .arrow {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-dark { background: var(--walnut); color: var(--cream-soft); border-color: var(--walnut); }
.btn-dark:hover { background: transparent; color: var(--walnut); }
.btn-light { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn-light:hover { background: var(--walnut); color: var(--cream-soft); }
.btn-sand { background: var(--sand); color: var(--cream-soft); border-color: var(--sand); }
.btn-sand:hover { background: var(--sand-deep); border-color: var(--sand-deep); }
.btn-rust { background: var(--rust); color: var(--cream-soft); border-color: var(--rust); }
.btn-rust:hover { background: var(--rust-deep); border-color: var(--rust-deep); }
.btn-ghost { background: transparent; color: var(--cream-soft); border-color: var(--cream-soft); }
.btn-ghost:hover { background: var(--cream-soft); color: var(--walnut); }

.link-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-line:hover { color: var(--sand-deep); border-color: var(--sand-deep); }

/* ─── Site nav ─── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px var(--gutter-x);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line-soft);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-nav .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.site-nav .logo .logo-mark {
  font-family: var(--display);
  font-size: 30px;
  color: var(--walnut);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}
.site-nav .logo small {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-top: 6px;
  padding-left: 1px;
  font-weight: 500;
}
.site-nav .logo img,
.site-nav .logo .logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  margin: 0;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-list a:hover { color: var(--sand-deep); }
.nav-list a.active { color: var(--sand-deep); }
.nav-list a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--sand);
}
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1px; background: var(--walnut);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO — centered, full-bleed image, big uppercase serif
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--walnut);
}
.hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.40) 0%, rgba(20,17,13,0.55) 100%);
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 60px var(--gutter-x);
  max-width: 1100px;
  color: var(--cream-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero .hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand-soft);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 28px;
}
.hero h1 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 300;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}
.hero .hero-subtitle {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: rgba(249,247,244,0.85);
  margin-bottom: 44px;
  letter-spacing: 2px;
}
.hero .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.hero .hero-cta .btn-dark { background: var(--cream-soft); color: var(--walnut); border-color: var(--cream-soft); }
.hero .hero-cta .btn-dark:hover { background: transparent; color: var(--cream-soft); }
.hero .hero-cta .btn-ghost:hover { color: var(--walnut); }
.hero .hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 10px 18px;
  border: 1px solid var(--sand-soft);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-soft);
  background: rgba(20,17,13,0.20);
  backdrop-filter: blur(6px);
}
.hero .hero-promo b { color: var(--cream-soft); font-weight: 500; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--sand-soft);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--sand-soft), transparent);
  animation: scrollDown 2.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero marquee strip below hero */
.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter-x);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  background: var(--cream-soft);
}
.hero-marquee .sep { color: var(--sand); font-size: 8px; }

/* ═══════════════════════════════════════════════════════════
   SECTION base + heads
═══════════════════════════════════════════════════════════ */
.section { padding: var(--section-y) var(--gutter-x); }

/* Centered section header (ÄRA-style with " // " separator) */
.section-head-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}
.section-head-centered .eyebrow { margin-bottom: 18px; }
.section-head-centered .section-title { margin-bottom: 18px; }
.section-head-centered .section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--walnut-soft);
}

/* Side-by-side header (number + title + aside) */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sand-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head .num::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--sand);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--walnut);
}
.section-head .aside {
  font-family: var(--serif);
  font-style: italic;
  color: var(--walnut-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 360px;
  justify-self: end;
}

/* ─── Intro section ─── */
.intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  background: var(--cream-soft);
  align-items: center;
}
.intro .image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.intro .image-wrapper .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.intro .image-wrapper .frame {
  position: absolute; inset: 16px;
  border: 1px solid var(--sand-soft);
  pointer-events: none;
  z-index: 2;
}
.intro .quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--walnut);
  font-style: italic;
  margin-bottom: 28px;
}
.intro .body p { font-family: var(--serif); font-size: 17px; line-height: 1.75; margin-bottom: 16px; }
.intro .signature {
  font-family: var(--display);
  font-style: italic;
  color: var(--sand-deep);
  font-size: 28px;
  margin-top: 24px;
  line-height: 1;
}
.intro .signature small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--walnut-soft);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   Foglalkozások — refined cards
═══════════════════════════════════════════════════════════ */
.classes-preview { background: var(--cream); }
.class-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.class-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -25px rgba(42, 38, 32, 0.18);
}
.class-card .ph {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
}
.class-card .body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.class-card .n {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.class-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  color: var(--walnut);
  line-height: 1.15;
}
.class-card h3 .sep { color: var(--sand); font-weight: 300; margin-left: 4px; }
.class-card p { font-family: var(--sans); font-size: 14px; line-height: 1.6; flex: 1; font-weight: 300; }
.class-card .meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   Schedule (Motibro placeholder)
═══════════════════════════════════════════════════════════ */
.schedule { background: var(--cream-soft); }
.schedule-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 28px;
  padding: 18px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.schedule-bar .week-nav { display: flex; align-items: center; gap: 16px; }
.schedule-bar .week-nav .arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px;
  cursor: pointer; transition: background 0.2s ease;
}
.schedule-bar .week-nav .arrow:hover { background: var(--cream-soft); }
.schedule-bar .week { font-family: var(--display); font-size: 20px; color: var(--walnut); }
.schedule-bar .week .week-num {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand-deep); margin-left: 12px;
}
.schedule-bar .filters { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.schedule-bar .chip {
  padding: 8px 16px; border: 1px solid var(--line);
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--walnut); border-radius: 0; cursor: pointer;
  transition: background 0.2s ease; font-weight: 500;
}
.schedule-bar .chip:hover { background: var(--cream-soft); }
.schedule-bar .chip.is-on { background: var(--walnut); color: var(--cream-soft); border-color: var(--walnut); }

.widget-frame {
  position: relative;
  border: 1px dashed var(--sand);
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
}
.widget-frame::before {
  content: 'MOTIBRO WIDGET — EMBED';
  position: absolute; top: -10px; left: 20px;
  background: var(--cream-soft); padding: 0 10px;
  font-family: monospace; font-size: 9px;
  letter-spacing: 0.2em; color: var(--sand-deep);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.schedule-grid > * { background: var(--cream-soft); padding: 12px 10px; min-height: 56px; }
.schedule-grid .hd {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--walnut); text-align: center; padding: 16px 0; background: var(--cream);
}
.schedule-grid .hd b {
  display: block;
  font-family: var(--display); font-weight: 400; font-size: 22px;
  color: var(--walnut); letter-spacing: 0; margin-bottom: 2px;
}
.schedule-grid .time {
  font-family: var(--sans); font-size: 11px;
  color: var(--walnut-soft); text-align: right; padding-right: 14px; font-weight: 400;
}
.schedule-grid .slot { cursor: pointer; transition: background 0.2s ease; }
.schedule-grid .slot.has {
  background: var(--cream);
  border-left: 3px solid var(--sand);
  display: flex; flex-direction: column; gap: 2px;
}
.schedule-grid .slot.has:hover { background: var(--cream-deep); }
.schedule-grid .slot.full { border-left-color: var(--rust); background: rgba(169, 103, 68, 0.06); }
.schedule-grid .slot.waitlist { border-left-color: var(--walnut); }
.schedule-grid .slot .title {
  font-family: var(--display); font-size: 14px;
  color: var(--walnut); line-height: 1.15; font-weight: 400;
}
.schedule-grid .slot .trainer {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  color: var(--walnut-soft); letter-spacing: 0.15em; text-transform: uppercase;
}
.schedule-grid .slot .state {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-deep); margin-top: 2px;
}
.schedule-grid .slot.full .state { color: var(--rust-deep); }

.schedule-legend {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 24px;
  font-family: var(--sans); font-size: 11px;
  color: var(--walnut-soft); font-weight: 500;
  letter-spacing: 0.05em;
}
.schedule-legend .sw { display: flex; align-items: center; gap: 8px; }
.schedule-legend .sw::before { content: ''; width: 16px; height: 3px; background: var(--sand); display: block; }
.schedule-legend .sw.full::before { background: var(--rust); }
.schedule-legend .sw.ink::before { background: var(--walnut); }
.schedule-legend .source {
  margin-left: auto; color: var(--sand-deep);
  font-style: italic; font-family: var(--serif); text-transform: none;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════════════════
   Page hero (sub pages) — centered, refined
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(80px, 10vw, 130px) var(--gutter-x) clamp(60px, 8vw, 100px);
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .breadcrumb {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-bottom: 32px;
  font-weight: 500;
}
.page-hero .breadcrumb span { color: var(--sand-deep); margin: 0 8px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 7vw, 96px);
  max-width: 100%;
  overflow-wrap: break-word;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  color: var(--sand-deep);
  text-transform: none;
  letter-spacing: 0;
}
.page-hero .intro-p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--walnut-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   Classes detail (Foglalkozások aloldal)
═══════════════════════════════════════════════════════════ */
.classes-detail {
  background: var(--cream-soft);
  padding: var(--section-y) var(--gutter-x);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
}
.class-row {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.class-row:nth-child(even) { grid-template-columns: 1fr 0.95fr; }
.class-row:nth-child(even) .class-visual { order: 2; }
.class-visual {
  position: relative;
  height: 480px;
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
}
.class-visual .num-big {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--cream-soft);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.class-visual::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249, 247, 244, 0.45);
  pointer-events: none;
}
.class-body .n {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.class-body h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: var(--walnut);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}
.class-body h3 .sep { color: var(--sand); font-weight: 300; margin-left: 4px; }
.class-body p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 300;
}
.class-body .facts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 540px;
  margin-bottom: 28px;
}
.class-body .fact .l {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.class-body .fact .v { font-family: var(--display); font-size: 18px; color: var(--walnut); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════
   Trainers (with collapsible bio)
═══════════════════════════════════════════════════════════ */
.trainers { background: var(--cream-soft); }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.trainer { display: flex; flex-direction: column; gap: 20px; text-decoration: none; color: inherit; }
.trainer .portrait {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.trainer a.portrait:hover { transform: scale(1.01); }
.trainer .portrait::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249, 247, 244, 0.45);
  pointer-events: none;
  transition: inset 0.4s ease, border-color 0.3s ease;
}
.trainer a.portrait:hover::after {
  inset: 10px;
  border-color: rgba(249, 247, 244, 0.75);
}
.trainer .role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.trainer h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  color: var(--walnut);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.trainer h4 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: inherit;
}
.trainer p { font-family: var(--sans); font-size: 15px; font-weight: 300; }
.trainer .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.trainer .tags span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line);
  color: var(--walnut-soft);
  border-radius: 999px;
  font-weight: 500;
}
.trainer .trainer-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, padding-right 0.3s ease;
}
.trainer .trainer-link:hover {
  color: var(--walnut);
  border-bottom-color: var(--walnut);
  padding-right: 6px;
}
.trainer .trainer-link .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.trainer .trainer-link:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   Studio gallery
═══════════════════════════════════════════════════════════ */
.studio { background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.gallery .g {
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}
.gallery .g:hover { transform: scale(1.01); }
.gallery .g1 { grid-column: span 7; grid-row: span 3; }
.gallery .g2 { grid-column: span 5; grid-row: span 2; }
.gallery .g3 { grid-column: span 5; grid-row: span 1; }
.gallery .g4 { grid-column: span 4; grid-row: span 2; }
.gallery .g5 { grid-column: span 4; grid-row: span 2; }
.gallery .g6 { grid-column: span 4; grid-row: span 2; }

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.amenity .n {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.amenity h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--walnut);
  margin: 12px 0;
  letter-spacing: 0.005em;
}
.amenity p { font-family: var(--sans); font-size: 14px; line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   Pricing — ROW LIST style (à la ÄRA)
═══════════════════════════════════════════════════════════ */
.pricing { background: var(--cream-soft); }
.pricing-section-title {
  font-family: var(--slab);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--walnut);
  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.pricing-section-title:first-of-type { margin-top: 0; }
.pricing-list { display: flex; flex-direction: column; gap: 0; }
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.25s ease;
}
.pricing-row:hover { padding-left: 12px; }
.pricing-row.featured { background: linear-gradient(90deg, rgba(183,166,141,0.10), transparent 60%); padding-left: 24px; padding-right: 24px; }
.pricing-row.featured .pricing-row-title::after {
  content: 'NÉPSZERŰ';
  display: inline-block; margin-left: 12px;
  font-family: var(--sans); font-weight: 500;
  font-size: 9px; letter-spacing: 0.28em;
  padding: 4px 10px; border: 1px solid var(--sand);
  color: var(--sand-deep); border-radius: 999px;
  vertical-align: middle;
}
.pricing-row-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--walnut);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pricing-row-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--walnut-soft);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.pricing-row-right {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.pricing-row-price {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--walnut);
  letter-spacing: 0.01em;
}
.pricing-row .btn {
  padding: 12px 22px; font-size: 10px;
}

.first-class-banner {
  margin-top: 64px;
  padding: 40px;
  background: var(--walnut);
  color: var(--cream-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.first-class-banner .badge {
  font-family: var(--display);
  font-style: italic;
  color: var(--sand-soft);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}
.first-class-banner h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--cream-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.first-class-banner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(249,247,244,0.78);
}

/* ═══════════════════════════════════════════════════════════
   Booking flow steps
═══════════════════════════════════════════════════════════ */
.booking-teaser { background: var(--cream-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: 0; }
.step .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  color: var(--sand);
  line-height: 1;
  font-weight: 300;
}
.step h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--walnut);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.step p { font-family: var(--sans); font-size: 14px; line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   Contact
═══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: var(--section-y) var(--gutter-x);
  text-align: center;
}
.contact-section h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 18px;
}
.contact-section h2 em {
  font-style: italic; font-weight: 300;
  color: var(--sand-deep); text-transform: none; letter-spacing: 0;
}
.contact-section .lede { margin: 0 auto 60px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto 80px;
  text-align: center;
}
.contact-detail .l {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-detail .v {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--walnut);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.contact-detail .v small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--walnut-soft);
  letter-spacing: 0.05em;
  margin-top: 8px;
  font-weight: 300;
}

.map-frame.legacy-map-frame {
  /* Disabled — replaced by newer rule below */
}
.map-frame .pin {
  width: 52px; height: 52px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--walnut);
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(42, 38, 32, 0.5);
}
.map-frame .pin::after {
  content: ''; position: absolute;
  top: 16px; left: 16px;
  width: 20px; height: 20px;
  border-radius: 50%; background: var(--sand);
}
.map-frame .pin-label {
  position: absolute;
  top: 52%; left: 50%;
  transform: translateX(-50%);
  background: var(--cream-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  color: var(--walnut);
  white-space: nowrap;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.map-meta {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--walnut-soft);
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.map-meta a { color: var(--sand-deep); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   CTA band — flat dark, no moon graphic
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--walnut);
  color: var(--cream-soft);
  padding: clamp(64px, 9vw, 110px) var(--gutter-x);
  text-align: center;
}
.cta-band .inner { max-width: 800px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--sand-soft); margin-bottom: 24px; }
.cta-band h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-band h3 em {
  font-style: italic; font-weight: 300;
  color: var(--sand-soft); text-transform: none; letter-spacing: 0;
}
.cta-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(249,247,244,0.78);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-band p b {
  color: var(--sand-soft);
  font-weight: 400;
  font-style: italic;
}
.cta-band .btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-band .btn-dark { background: var(--cream-soft); color: var(--walnut); border-color: var(--cream-soft); }
.cta-band .btn-dark:hover { background: transparent; color: var(--cream-soft); }
.cta-band .btn-ghost:hover { color: var(--walnut); }

/* ═══════════════════════════════════════════════════════════
   Footer
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--cream-soft);
  padding: clamp(56px, 7vw, 80px) var(--gutter-x) 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: 60px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--walnut);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer ul a:hover { color: var(--sand-deep); }
.footer .brand-block .logo-mark {
  font-family: var(--display);
  font-size: 36px;
  color: var(--walnut);
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.footer .brand-block small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand-deep);
  display: block;
  margin-top: 8px;
  font-weight: 500;
}
.footer .brand-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--walnut-soft);
  margin-top: 24px;
  max-width: 280px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: 11px;
  color: var(--walnut-soft);
  letter-spacing: 0.18em;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   Single class page
═══════════════════════════════════════════════════════════ */
.single-hero { padding: 60px var(--gutter-x) 40px; }
.single-hero .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center; }
.tag-pill {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
}
.tag-pill.gold {
  color: var(--sand-deep);
  border-color: var(--sand);
  background: rgba(183, 166, 141, 0.08);
}
.single-hero .grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  text-align: left;
}
.single-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 24px;
}
.single-hero h1 em {
  font-family: var(--display);
  font-style: italic; font-weight: 300;
  color: var(--sand-deep);
  text-transform: none; letter-spacing: 0;
}
.single-hero .lede-l {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--walnut-soft);
  max-width: 580px;
  margin: 0;
}
.price-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--cream-soft);
}
.price-card.gold {
  border-color: var(--sand);
  background: rgba(183, 166, 141, 0.08);
}
.price-card .l {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.price-card.gold .l { color: var(--sand-deep); }
.price-card .v {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  color: var(--walnut);
  letter-spacing: 0.02em;
}
.price-card .v small { font-size: 14px; color: var(--walnut-soft); }
.price-card .per {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--sand-deep);
  margin-top: 6px;
}

.single-gallery {
  padding: 0 var(--gutter-x) 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  height: 380px;
}
.single-gallery > div {
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
}

.single-detail {
  padding: 0 var(--gutter-x) 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.single-detail h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 28px;
}
.single-detail h2 em {
  font-style: italic; font-weight: 300;
  color: var(--sand-deep); text-transform: none; letter-spacing: 0;
}
.single-detail p { font-family: var(--sans); font-size: 16px; line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.single-detail .factgrid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.single-detail .factgrid .l {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.single-detail .factgrid .v {
  font-family: var(--display);
  font-size: 17px;
  color: var(--walnut);
  line-height: 1.5;
  font-weight: 400;
}
.single-aside { border-left: 1px solid var(--line-soft); padding-left: 44px; }
.session-list { display: flex; flex-direction: column; gap: 0; }
.session-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.session-row:last-child { border-bottom: 0; }
.session-row.disabled { opacity: 0.55; }
.session-row .day {
  font-family: var(--display);
  font-size: 22px;
  color: var(--walnut);
  line-height: 1;
  font-weight: 400;
}
.session-row .day .num { color: var(--sand-deep); font-style: italic; font-size: 26px; }
.session-row .info .time { font-family: var(--display); font-size: 17px; color: var(--walnut); font-weight: 400; }
.session-row .info .meta { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--walnut-soft); }
.session-row .book {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid var(--sand);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.session-row .book:hover { background: var(--sand); color: var(--cream-soft); }
.session-row .waitlist-pill {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  padding: 9px 16px;
  border: 1px solid var(--line);
  font-weight: 500;
}

.trainer-strip {
  padding: 60px var(--gutter-x) 80px;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
}
.trainer-strip-grid {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.trainer-strip-grid .portrait {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
}
.trainer-strip-grid h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 18px;
}
.trainer-strip-grid h3 em {
  font-style: normal; font-weight: inherit;
  color: inherit; text-transform: inherit; letter-spacing: inherit;
}

.related {
  padding: 80px var(--gutter-x);
  border-top: 1px solid var(--line-soft);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.related a { text-decoration: none; color: inherit; display: block; }
.related .img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}
.related a:hover .img { transform: scale(1.02); }
.related h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  color: var(--walnut);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.related h4 em { font-style: italic; font-weight: 300; color: var(--sand-deep); text-transform: none; letter-spacing: 0; }

/* ═══════════════════════════════════════════════════════════
   Single trainer page
═══════════════════════════════════════════════════════════ */
.trainer-bio-hero {
  max-width: calc(1100px + 2 * var(--gutter-x));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) var(--gutter-x) 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.trainer-bio-hero .portrait {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  position: relative;
}
.trainer-bio-hero .portrait::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249, 247, 244, 0.45);
  pointer-events: none;
}
.trainer-bio-hero .portrait .badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--cream-soft);
  border: 1px solid var(--sand);
  padding: 16px 24px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--sand-deep);
  line-height: 1;
  z-index: 3;
}
.trainer-bio-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 24px;
}
.trainer-bio-hero h1 em {
  font-family: inherit;
  font-style: normal; font-weight: inherit;
  color: inherit; text-transform: inherit; letter-spacing: inherit;
}

.trainer-bio-body {
  max-width: calc(1100px + 2 * var(--gutter-x));
  margin: 0 auto;
  padding: 0 var(--gutter-x) 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.trainer-bio-body h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 28px;
}
.trainer-bio-body h2 em {
  font-style: italic; font-weight: 300;
  color: var(--sand-deep); text-transform: none; letter-spacing: 0;
}
.trainer-bio-body p { font-family: var(--sans); font-size: 16px; line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.cred-card {
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--cream-soft);
}
.cred-list { display: flex; flex-direction: column; gap: 16px; }
.cred-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.cred-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cred-row .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--sand-deep);
  line-height: 1;
  font-weight: 300;
}
.cred-row .what {
  font-family: var(--display);
  font-size: 16px;
  color: var(--walnut);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.cred-row .where {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--walnut-soft);
  margin-top: 4px;
}
.stat-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-box { border: 1px solid var(--line); padding: 22px; text-align: center; }
.stat-box .n {
  font-family: var(--display);
  font-size: 38px;
  color: var(--sand-deep);
  line-height: 1;
  font-weight: 300;
}
.stat-box .l {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-top: 8px;
  font-weight: 500;
}

.trainer-week {
  padding: 60px var(--gutter-x) 80px;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
}
.trainer-week-head {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.trainer-week-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0;
}
.trainer-week-head h2 em {
  font-style: italic; font-weight: 300;
  color: var(--sand-deep); text-transform: none; letter-spacing: 0;
}
.trainer-week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.trainer-week-card {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--cream);
  transition: background 0.2s ease;
}
.trainer-week-card:hover { background: var(--cream-deep); }
.trainer-week-card.full { opacity: 0.55; }
.trainer-week-card .day {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.trainer-week-card.full .day { color: var(--walnut-soft); }
.trainer-week-card .time {
  font-family: var(--display);
  font-size: 22px;
  color: var(--walnut);
  margin-top: 10px;
  font-weight: 400;
}
.trainer-week-card .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--walnut-soft);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   Sticky book button (mobile only)
═══════════════════════════════════════════════════════════ */
.sticky-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--walnut);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 20px 40px -15px rgba(42, 38, 32, 0.5);
  text-decoration: none;
  font-weight: 500;
}
.sticky-book::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
}

/* ═══════════════════════════════════════════════════════════
   Reveal animation
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-indicator::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .class-cards { grid-template-columns: repeat(3, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.25s ease;
  }
  .nav-list.is-open { transform: scaleY(1); }
  .nav-list a { display: block; padding: 14px var(--gutter-x); border-bottom: 1px solid var(--line-soft); }
  .nav-list a.active::after { display: none; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: clamp(40px, 9vw, 64px); }
  .scroll-indicator { display: none; }

  .intro, .single-detail, .trainer-bio-hero, .trainer-bio-body { grid-template-columns: 1fr; }
  .single-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
  .class-cards { grid-template-columns: repeat(2, 1fr); }

  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head .aside { justify-self: start; }

  .pricing-row { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
  .pricing-row-right { justify-content: space-between; gap: 16px; }
  .pricing-row.featured { padding: 22px 16px; }

  .first-class-banner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .first-class-banner .badge { font-size: 48px; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(odd):not(:last-child) { border-bottom: 1px solid var(--line-soft); }

  .class-row, .class-row:nth-child(even) { grid-template-columns: 1fr; }
  .class-row:nth-child(even) .class-visual { order: initial; }

  .trainers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .gallery { grid-auto-rows: 100px; }
  .gallery .g1 { grid-column: span 12; grid-row: span 3; }
  .gallery .g2 { grid-column: span 12; grid-row: span 2; }
  .gallery .g3 { grid-column: span 12; grid-row: span 2; }
  .gallery .g4, .gallery .g5, .gallery .g6 { grid-column: span 6; grid-row: span 2; }

  .amenities { grid-template-columns: 1fr 1fr; }

  .single-hero .grid { grid-template-columns: 1fr; text-align: center; }
  .single-hero .lede-l { margin: 0 auto; }
  .single-gallery { grid-template-columns: 1fr; height: auto; }
  .single-gallery > div { aspect-ratio: 16 / 9; }
  .trainer-strip-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .trainer-strip-grid .portrait { max-width: 320px; width: 100%; }
  .related-grid { grid-template-columns: 1fr; }
  .trainer-week-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; max-width: 420px; }

  .schedule-grid { grid-template-columns: 60px repeat(7, minmax(80px, 1fr)); overflow-x: auto; }
  .widget-frame { overflow-x: auto; }

  .sticky-book { display: inline-flex; }
}

@media (max-width: 600px) {
  .class-cards { grid-template-columns: 1fr; }
  .stat-grid, .price-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .amenities { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FINAL DESIGN (v3 — Figma-matched)
   Kezdőoldal: Rólunk + Kényelem (4 col) + Feature sections
═══════════════════════════════════════════════════════════ */

/* Hero override — light bg, dark text (Figma matches) */
.hero {
  background: #2a2620;
  min-height: 78vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,38,32,0.30) 0%, rgba(42,38,32,0.50) 100%),
              var(--hero-image, url('../img/figma/hero.jpg')) center/cover;
  z-index: 0;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter-x);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 108px);
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0;
}

/* ── Rólunk (intro-section) — split: image left, text right (Figma matched) ── */
.intro-section {
  padding: clamp(72px, 10vw, 130px) var(--gutter-x);
  background: var(--cream-soft);
}
.intro-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 620fr 590fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-image {
  aspect-ratio: 620 / 774;
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
  background-image: url('../img/figma/rolunk.png');
  position: relative;
}
.intro-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249,247,244,0.45);
  pointer-events: none;
}
.intro-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--walnut);
  margin: 14px 0 32px;
}
.intro-body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--walnut-soft);
  margin-bottom: 22px;
}
.intro-body p:last-child { margin-bottom: 0; }

/* ── Yoga section (centered text, no image) ── */
.yoga-section {
  padding: clamp(72px, 10vw, 130px) var(--gutter-x);
  background: var(--cream-mid);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.yoga-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.yoga-inner .eyebrow {
  margin-bottom: 4px;
}
.yoga-inner .section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--walnut);
  letter-spacing: 0;
  margin: 0 0 16px;
}
.yoga-inner p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--walnut-soft);
  max-width: 720px;
  margin: 0;
}
.yoga-inner p + p { margin-top: 24px; }

/* ── Comfort (Minden adott — 4 col) ── */
.comfort-section {
  padding: clamp(72px, 10vw, 130px) var(--gutter-x);
  background: var(--cream-mid);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.comfort-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.comfort-item .num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.comfort-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--walnut);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: 0;
}
.comfort-item p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--walnut-soft);
  margin: 0;
}

/* ── Feature sections (Nem csak nőknek, Kids Pilates) — split image+text ── */
.feature-section {
  padding: clamp(80px, 10vw, 130px) var(--gutter-x);
  background: var(--cream-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature-section > .feature-image {
  width: 100%;
  max-width: 620px;
  justify-self: end;
}
.feature-section > .feature-text {
  max-width: 590px;
  justify-self: start;
}
.feature-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  position: relative;
}
.feature-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249,247,244,0.45);
  pointer-events: none;
}
.feature-men .feature-image {
  background-image: url('../img/figma/ferfiak.png');
}
.feature-kids .feature-image {
  background-image: url('../img/figma/kids.png');
}

/* AD Kids colorful logo inside Kids Pilates section */
.adkids-logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}
.feature-text h2,
.feature-text .section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--walnut);
  letter-spacing: 0;
  margin: 14px 0 22px;
}
.feature-text p {
  font-family: var(--slab);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--walnut-soft);
  margin-bottom: 18px;
}
.feature-text .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--walnut);
  text-decoration: none;
  border-bottom: 1px solid var(--walnut);
  padding-bottom: 6px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.feature-text .link-arrow:hover {
  color: var(--sand-deep);
  border-bottom-color: var(--sand-deep);
}
.feature-text .feature-note {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sand-deep);
}

/* CTA band button variant for light buttons */
.cta-band .btn-light {
  background: var(--cream-soft);
  color: var(--walnut);
  border-color: var(--cream-soft);
}
.cta-band .btn-light:hover {
  background: transparent;
  color: var(--cream-soft);
}
.cta-band .btn-ghost-light {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(255,255,255,0.55);
}
.cta-band .btn-ghost-light:hover {
  background: var(--cream-soft);
  color: var(--walnut);
  border-color: var(--cream-soft);
}

/* Footer logo image consistency */
.footer .footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — v3 mobile overrides for new sections
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-image { display: none; }    /* Mobil: ne legyen kép a Rólunk szekcióban */
  .intro-italic { margin-top: 18px; }
  .comfort-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-section { grid-template-columns: 1fr; gap: 36px; padding: 64px var(--gutter-x); }
}

/* Sticky Foglalás gomb elrejtése minden viewporton */
.sticky-book { display: none !important; }
@media (max-width: 600px) {
  .hero { min-height: 64vh; }
  .hero h1 { font-size: 56px; letter-spacing: 0.02em; }
  .intro-section { padding: 48px 24px; }
  .comfort-section { padding: 56px 24px; }
  .comfort-grid { grid-template-columns: 1fr; gap: 28px; max-width: 400px; margin: 0 auto; }
  .feature-section { padding: 48px 24px; gap: 28px; }
  .feature-text h2 { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   FINAL DESIGN — additional page sections (v3 Figma-matched)
   FAQ · Contact · Trainer single · Pricing
═══════════════════════════════════════════════════════════ */

/* ── FAQ list (gyik.html) ── */
.faq-section { padding: clamp(72px, 10vw, 130px) var(--gutter-x); background: var(--cream); }
.faq-inner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: clamp(20px, 3vw, 32px) 0; border-bottom: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2; color: var(--walnut); margin: 0 0 12px;
}
.faq-item p {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  line-height: 1.7; color: var(--walnut-soft); margin: 0 0 10px;
}
.faq-item p:last-child { margin-bottom: 0; }
.faq-item a { color: var(--sand-deep); border-bottom: 1px solid var(--sand-soft); }
.faq-list,
.faq-item ul { list-style: none; padding: 8px 0; margin: 0; }
.faq-list li,
.faq-item ul li {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  color: var(--walnut-soft); padding: 4px 0 4px 22px; position: relative;
}
.faq-list li::before,
.faq-item ul li::before { content: '·'; position: absolute; left: 6px; color: var(--sand-deep); font-weight: 700; }

/* ── Contact (kapcsolat.html) — Figma-matched ── */
.contact-section { padding: clamp(80px, 10vw, 130px) var(--gutter-x); background: var(--cream-soft); }
.contact-inner { max-width: 1320px; margin: 0 auto; }

/* Eyebrow stacked vertically (ELÉRHETŐSÉGÜNK on top, // below) */
.eyebrow-stack {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--sans); font-size: 13px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sand-deep); font-weight: 500;
}
.eyebrow-stack .sep { letter-spacing: 0; }

.contact-head { text-align: center; max-width: 920px; margin: 0 auto clamp(56px, 7vw, 88px); }
.contact-head .eyebrow-stack { margin-bottom: 18px; }
.contact-head .section-title {
  font-family: var(--display); font-weight: 300; font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; color: var(--walnut);
  margin: 0 0 clamp(28px, 3vw, 48px);
}
.contact-lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65;
  color: var(--walnut-soft); margin: 0 auto; max-width: 720px;
}

/* 3-column address / email / hours grid (no borders, generous spacing) */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 80px); padding: clamp(40px, 5vw, 72px) 0;
}
.contact-detail { text-align: center; display: flex; flex-direction: column; gap: 14px; }
.contact-detail .l {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--sand-deep); font-weight: 500;
}
.contact-detail .v {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--walnut); line-height: 1.35;
  word-wrap: break-word; overflow-wrap: break-word;
  max-width: 100%;
}
.contact-detail .v .line { display: block; }
.contact-detail .v a { color: inherit; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-detail .v a:hover { border-bottom-color: var(--sand-deep); }
.contact-detail small {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  color: var(--walnut-soft); line-height: 1.5;
}

/* Trainer phones inside the same Elérhetőségünk section */
.trainer-phones-block {
  padding-top: clamp(56px, 7vw, 96px);
  display: flex; flex-direction: column; align-items: center; gap: clamp(32px, 4vw, 56px);
}
.contact-sub-eyebrow {
  display: inline-block; text-align: center;
  font-family: var(--sans); font-size: 13px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sand-deep); font-weight: 500;
}
.phones-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
}
.phone-item {
  text-align: center; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
  background: transparent; border: 0;
}
.phone-item .l {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sand-deep); font-weight: 500;
}
.phone-item .v {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--walnut); text-decoration: none;
  transition: color 0.2s;
}
.phone-item .v:hover { color: var(--sand-deep); }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; max-width: 420px; margin: 0 auto; }
  .phones-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .phones-grid { grid-template-columns: 1fr; gap: 28px; max-width: 320px; margin: 0 auto; }
}

/* ── Map placeholder ── */
.map-section { padding: clamp(40px, 5vw, 64px) var(--gutter-x) clamp(72px, 9vw, 110px); background: var(--cream); }
.map-inner { max-width: 1100px; margin: 0 auto; }
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream-deep);
  background-image: url('../img/figma/7fb9fc210ce4ce0a41138da6aade0d2532a4d962.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
/* Ha valódi Google Maps iframe-et ágyazunk be a .map-frame-be,
   az iframe töltse ki a teljes területet, és a placeholder háttérkép tűnjön el. */
.map-frame:has(iframe) {
  background-image: none;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  width: 18px; height: 18px; border-radius: 50%; background: var(--rust);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); border: 3px solid var(--cream-soft);
}
.map-pin-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -200%);
  padding: 8px 16px; background: var(--cream-soft); color: var(--walnut);
  font-family: var(--display); font-size: 13px;
  white-space: nowrap;
  border: 1px solid var(--line);
  max-width: calc(100% - 24px);
}
@media (max-width: 600px) {
  .map-pin-label { white-space: normal; text-align: center; font-size: 12px; }
}
.map-meta {
  margin-top: 14px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--walnut-soft);
}
.map-meta a {
  font-family: var(--serif); font-style: italic; letter-spacing: 0; text-transform: none;
  font-size: 14px; color: var(--sand-deep);
}

/* ── Trainer single page hero & bio ── */
.trainer-hero { padding: clamp(64px, 8vw, 110px) var(--gutter-x); background: var(--cream-soft); }
.trainer-hero-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.trainer-portrait {
  width: 100%; aspect-ratio: 4/5; background-color: var(--cream-deep);
  background-size: cover; background-position: center; position: relative;
}
.trainer-portrait::after {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid rgba(249,247,244,0.45); pointer-events: none;
}

/* Trainer badge — italic label overlay on portrait (Figma) */
.trainer-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  padding: 16px clamp(20px, 2.5vw, 36px);
  background: var(--cream-soft);
  border: 1px solid var(--sand);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--sand-deep);
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 760px) {
  .trainer-badge { white-space: normal; text-align: center; font-size: 16px; max-width: calc(100% - 32px); }
}
.trainer-hero-text h1 {
  font-family: var(--display); font-weight: 300; font-size: clamp(40px, 5.5vw, 64px);
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.0;
  color: var(--walnut); margin: 16px 0 12px;
}
.trainer-role {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  color: var(--walnut-soft); margin: 0 0 24px;
}
.trainer-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--walnut); margin: 0 0 28px; max-width: 560px;
}
.trainer-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.trainer-bio { padding: clamp(64px, 8vw, 110px) var(--gutter-x); background: var(--cream); }
.trainer-bio-inner { max-width: 1200px; margin: 0 auto; }
.trainer-role-italic {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px); color: var(--sand-deep);
  text-align: center; margin: 0 0 clamp(40px, 5vw, 64px);
}
.trainer-bio-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.trainer-bio-text h2 {
  font-family: var(--display); font-weight: 300; font-size: clamp(28px, 3.6vw, 42px);
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1;
  color: var(--walnut); margin: 12px 0 22px;
}
.trainer-bio-text p {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  line-height: 1.75; color: var(--walnut-soft); margin-bottom: 18px;
}
.cred-card {
  padding: 36px; background: var(--cream-soft);
  border: 1px solid var(--line-soft);
}
.cred-card h3 {
  font-family: var(--display); font-weight: 300; font-size: 22px;
  color: var(--walnut); line-height: 1.3; margin: 12px 0 18px;
  letter-spacing: 0;
}
.cred-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column;
}
.cred-list li {
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: 0.04em; color: var(--walnut); padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.cred-list li:first-child { border-top: 0; }
.cred-extra { padding: 16px 0; border-top: 1px solid var(--line-soft); margin-bottom: 16px; }
.cred-extra .eyebrow { display: block; margin-bottom: 8px; }
.cred-extra p {
  font-family: var(--serif); font-style: italic; font-size: 15px;
  line-height: 1.6; color: var(--walnut-soft); margin: 0;
}
.cred-cta { display: inline-flex; width: 100%; justify-content: center; }

/* ── Schedule placeholder widget ── */
.widget-placeholder {
  height: 480px; display: flex; align-items: center; justify-content: center;
  background: var(--cream-soft); border: 1px dashed var(--sand);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sand-deep); font-weight: 500;
}

/* ── Pricing cards ── */
.pricing-section { padding: clamp(72px, 10vw, 130px) var(--gutter-x); background: var(--cream); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.price-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.price-card {
  background: var(--cream-soft); border: 1px solid var(--line-soft);
  padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px;
}
.price-card .eyebrow { margin-bottom: 4px; }
.price-card h3 {
  font-family: var(--display); font-weight: 300; font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1; color: var(--walnut); margin: 0;
}
.price-card > p {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--walnut-soft); margin: 0 0 16px;
}
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.price-card ul li {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans); font-size: 14px; color: var(--walnut);
}
.price-card ul li:first-child { border-top: 0; }
.price-card ul li span:last-child {
  font-family: var(--sans); font-weight: 500; color: var(--sand-deep); letter-spacing: 0.04em;
}
.price-card-soon h3 { font-size: 28px; color: var(--sand-deep); font-style: italic; }

/* ── Steps section (Foglalás 4 lépésben) ── */
.steps-section { padding: clamp(72px, 10vw, 130px) var(--gutter-x); background: var(--cream-soft); }
.steps-inner { max-width: 1320px; margin: 0 auto; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.step {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 2vw, 32px) clamp(36px, 4vw, 56px) 0;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step + .step { padding-left: clamp(20px, 2vw, 32px); }
.step + .step::before {
  content: '';
  position: absolute;
  left: 0; top: clamp(36px, 4vw, 56px); bottom: clamp(36px, 4vw, 56px);
  width: 1px; background: var(--line);
}
.step .num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--sand-deep); line-height: 1;
  margin-bottom: 6px;
}
.step h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--walnut);
  margin: 0;
  line-height: 1.2;
}
.step p {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  line-height: 1.65; color: var(--walnut-soft); margin: 0;
  max-width: 280px;
}

/* ── Óratípus cím (foglalkozasok aloldalon) ── */
.class-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  color: var(--walnut);
  margin: 0 0 24px;
  letter-spacing: 0.005em;
}

/* ── Roman numeral in class headings ── */
.class-name .roman {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 0.55em; color: var(--sand-deep); margin-right: 14px;
  display: inline-block; transform: translateY(-0.2em);
}

/* ── Class row layout variants ── */
.class-row.class-row-reverse { direction: rtl; }
.class-row.class-row-reverse > * { direction: ltr; }
.class-row.class-row-text { grid-template-columns: 1fr; max-width: 820px; }
.class-row.class-row-text .class-body { padding: 0; }

/* ── Schedule legend ── */
.schedule-legend .sw {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--walnut-soft);
}
.schedule-legend .sw::before { content: ''; width: 16px; height: 3px; background: var(--sand); display: block; }
.schedule-legend .sw.full::before { background: var(--rust); }
.schedule-legend .sw.ink::before { background: var(--walnut); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — final pages
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; max-width: 420px; margin: 0 auto; }
  .phones-grid { grid-template-columns: 1fr 1fr; }
  .price-card-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; gap: 0; }
  .step { padding: 28px 16px !important; }
  .step + .step::before { display: none; }
  .step:nth-child(2)::before, .step:nth-child(3)::before, .step:nth-child(4)::before { display: block; content:''; position:absolute; }
  .step:nth-child(2)::before { left: 0; top: 28px; bottom: 28px; width: 1px; background: var(--line); }
  .step:nth-child(3) { border-top: 1px solid var(--line); }
  .step:nth-child(4) { border-top: 1px solid var(--line); }
  .step:nth-child(4)::before { left: 0; top: 28px; bottom: 28px; width: 1px; background: var(--line); }
  .trainer-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .trainer-bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .class-row.class-row-reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-top: 1px solid var(--line) !important; }
  .step:first-child { border-top: 0 !important; }
  .step::before, .step + .step::before { display: none !important; }
}
@media (max-width: 600px) {
  .phones-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .map-frame { aspect-ratio: 4/3; }
}

/* ── Class image (foglalkozasok aloldal — kép a class-row-ban) ── */
.class-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--cream-deep);
  background-size: cover;
  background-position: center;
  position: relative;
}
.class-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(249,247,244,0.45);
  pointer-events: none;
}

/* ── Class image empty placeholder (Reformer card — nincs kép) ── */
.class-image-empty {
  background: var(--cream-deep);
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.55);
  outline: 16px solid var(--cream-deep);
  outline-offset: -32px;
  display: flex; align-items: flex-start; justify-content: flex-start;
}
.class-image-empty::after { display: none; }
.class-image-empty .empty-roman {
  position: absolute; top: 36px; left: 36px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--sand-deep);
}

/* ── Class CTA (Időpontok és árak →) — underlined inline link (Figma) ── */
.class-cta {
  display: inline-flex;
  align-items: center; gap: 14px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--walnut);
  background: transparent;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--walnut); font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 32px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.3s ease;
}
.class-cta:hover { color: var(--sand-deep); border-bottom-color: var(--sand-deep); gap: 20px; }
.class-cta .arrow { font-family: var(--serif); font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   PRICING LIST (orarend.html) — Figma-matched list layout
═══════════════════════════════════════════════════════════ */
.pricing-section {
  padding: clamp(72px, 10vw, 130px) var(--gutter-x);
  background: var(--cream-mid);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-head { text-align: center; max-width: 880px; margin: 0 auto clamp(48px, 6vw, 72px); }
.pricing-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.pricing-head .section-title {
  font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; color: var(--walnut); margin: 0 0 16px;
  letter-spacing: 0;
}
.pricing-note {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 15px; line-height: 1.6; color: var(--walnut-soft); margin: 0;
}

/* Price group */
.price-group { margin-bottom: cla
.price-group-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--walnut);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }
.price-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.price-row-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-name { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2vw, 24px); color: var(--walnut); }
.price-sub { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--walnut-soft); }
.price-amount { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.5vw, 28px); color: var(--walnut); white-space: nowrap; }
.price-amount-italic { font-style: italic; color: var(--sand-deep); font-size: clamp(18px, 2vw, 22px); }
.price-badge { font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; background: var(--walnut); color: var(--cream-soft); }

.price-btn {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 10px 22px;
  border: 1px solid var(--walnut); color: var(--walnut);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.price-btn:hover { background: var(--walnut); color: var(--cream-soft); }
.price-btn-dark { background: var(--walnut); color: var(--cream-soft); }
.price-btn-dark:hover { background: transparent; color: var(--walnut); }
.price-btn .arrow { font-family: var(--serif); }

.price-row-featured {
  background: var(--walnut);
  color: var(--cream-soft);
  padding: 24px clamp(20px, 3vw, 36px);
  margin: 0;
  box-sizing: border-box;
  border-bottom: 0;
}
.price-row-featured .price-name,
.price-row-featured .price-amount { color: var(--cream-soft); }
.price-row-featured .price-sub { color: var(--cream-soft); opacity: .7; }
.price-row-featured .price-btn { border-color: var(--cream-soft); color: var(--cream-soft); }
.price-row-featured .price-btn:hover { background: var(--cream-soft); color: var(--walnut); }
.price-row-featured .price-btn-dark { background: var(--cream-soft); color: var(--walnut); border-color: var(--cream-soft); }
.price-row-featured .price-btn-dark:hover { background: transparent; color: var(--cream-soft); }

.price-row-soon { opacity: 0.7; }
.price-row-soon .price-amount { font-style: italic; }

/* ── Gift section (Ajándékutalvány) ── */
.gift-section { padding: clamp(72px, 10vw, 130px) var(--gutter-x); background: var(--walnut); color: var(--cream-soft); }
.gift-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gift-title-italic { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(28px, 3vw, 40px); color: var(--cream-soft); margin: 0; line-height: 1.1; }
.gift-content h3.gift-title { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; color: var(--cream-soft); margin: 0 0 16px; }
.gift-content p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0; max-width: 480px; }
.gift-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--cream-soft); color: var(--cream-soft);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.gift-cta:hover { background: var(--cream-soft); color: var(--walnut); }
.gift-cta .arrow { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 14px; letter-spacing: 0; text-transform: none; }

@media (max-width: 768px) {
  .gift-inner { grid-template-columns: 1fr; text-align: center; }
  .gift-cta { justify-self: center; }
  .price-row { grid-template-columns: 1fr; gap: 12px; }
  .price-row-featured { padding: 20px; }
  .price-amount { font-size: 22px; }
  .price-name { font-size: 18px; }
}
