/* ============================================================
   BriCsi Hair Therapy - Oktatás oldalpár (preview)
   Brand: Satoshi · ink #131210 · arany #C9922F/#DD9933 · ivory
   ============================================================ */

:root {
  --ink: #161311;
  --ink-soft: #55504a;
  --ivory: #f6f4ef;
  --ivory-deep: #efece4;
  --paper: #fffdf9;
  --gold: #c9922f;
  --gold-bright: #dd9933;
  --gold-soft: rgba(201, 146, 47, 0.14);
  --line: rgba(22, 19, 17, 0.14);
  --line-soft: rgba(22, 19, 17, 0.08);
  --dark: #191512;
  --dark-2: #221d18;
  --on-dark-soft: rgba(246, 244, 239, 0.66);
  --radius: 10px;
  --radius-lg: 18px;
  --font-sans: "Satoshi", "Lato", Arial, Helvetica, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

::selection { background: var(--gold); color: #fff; }

/* ---------- typography ---------- */

.display {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
}

.display em, .h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  max-width: 56ch;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(22, 19, 17, 0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand { display: flex; align-items: center; line-height: 1; }

.brand-logo { height: 56px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a { position: relative; padding-block: 6px; }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(201, 146, 47, 0.55);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(22, 19, 17, 0.5);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

.header-cta { flex-shrink: 0; }

/* ---------- hero (oktatás) ---------- */

.hero {
  position: relative;
  padding-block: clamp(56px, 9vh, 110px) clamp(60px, 10vh, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-copy > * + * { margin-top: 26px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-meta div strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-meta div span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(22, 19, 17, 0.45);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(22, 19, 17, 0.35));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.float-chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 18px 40px -18px rgba(22, 19, 17, 0.35);
  animation: float 5s ease-in-out infinite;
}

.float-chip strong { display: block; font-size: 1.15rem; letter-spacing: -0.01em; }

.float-chip span { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

.chip-1 { top: 8%; left: -9%; }
.chip-2 { bottom: 12%; right: -7%; animation-delay: -2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* decorative strand curve */
.strand-bg {
  position: absolute;
  top: -40px;
  right: -120px;
  width: clamp(300px, 40vw, 640px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* A hajszál-réteg a hero tetejétől a why-grid felső vonaláig tart: a svg
   100% magas, a görbék a viewBox alján érnek véget, így a vonal pontosan
   az elválasztónál áll meg. A nyújtást a non-scaling-stroke ellensúlyozza. */
.strand-zone { position: relative; }

.strand-zone > .strand-bg {
  top: 0;
  height: 100%;
}

/* A fejléc alsó margóját paddingre váltjuk, különben kicsúszik a rétegből
   (margin collapse), és a hajszál 64px-szel a vonal fölött érne véget. */
.why-intro {
  padding-top: clamp(70px, 11vh, 130px);
  padding-bottom: clamp(40px, 6vh, 64px);
}

.why-intro .section-head { margin-bottom: 0; }

.why-section { padding-bottom: clamp(70px, 11vh, 130px); }

/* ---------- marquee ---------- */

.marquee {
  background: var(--gold-bright);
  color: var(--ink);
  overflow: hidden;
  padding-block: 14px;
  border-block: 1px solid rgba(22, 19, 17, 0.18);
}

/* A -50%-os eltolás csak akkor illeszkedik hézagmentesen, ha a két
   futam között nincs flex gap, a térközt a spanek padding-rightja adja. */
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  /* 96s = 3 span hossz ~54 px/s sebességgel (lásd a HTML-beli megjegyzést) */
  animation: marquee 96s linear infinite;
  will-change: transform;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.marquee-track .dot { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */

.section { padding-block: clamp(70px, 11vh, 130px); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 64px); }

.section-head > * + * { margin-top: 20px; }

/* why columns */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}

.why-card {
  background: var(--ivory);
  padding: clamp(28px, 3.5vw, 48px) clamp(22px, 2.6vw, 38px);
  transition: background 0.35s ease;
}

.why-card:hover { background: var(--paper); }

.why-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.why-card h3 { margin-top: 18px; }

.why-card p { margin-top: 12px; color: var(--ink-soft); font-size: 0.99rem; }

/* training cards */
.trainings { display: grid; gap: clamp(28px, 4vw, 44px); }

.training-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -45px rgba(22, 19, 17, 0.4);
}

.training-card.is-flipped { grid-template-columns: 1.1fr 0.9fr; }

.training-card.is-flipped .training-media { order: 2; }

.training-media { position: relative; min-height: 340px; }

.training-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.training-media .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

.training-body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; gap: 20px; }

.training-body .lead { font-size: 1rem; }

.feature-list { list-style: none; display: grid; gap: 12px; margin-top: 6px; }

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5.2 4 7.6 8.5 2.6' fill='none' stroke='%23c9922f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ---------- dark tech section ---------- */

.tech {
  background: var(--dark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.tech .eyebrow { color: var(--gold-bright); }

.tech-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.tech-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  padding: clamp(18px, 2.5vw, 36px);
}

.tech-copy .lead { color: var(--on-dark-soft); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(246, 244, 239, 0.12);
  border: 1px solid rgba(246, 244, 239, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 34px;
}

.spec {
  background: var(--dark-2);
  padding: 22px 24px;
}

.spec strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
}

.spec span { font-size: 0.85rem; color: var(--on-dark-soft); }

.tech-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.tech-chips span {
  border: 1px solid rgba(246, 244, 239, 0.25);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ivory);
  transition: border-color .3s ease, background .3s ease;
}

.tech-chips span:hover { border-color: var(--gold-bright); background: rgba(221, 153, 51, 0.12); }

/* ---------- takeaway checklist ---------- */

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.takeaway {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.takeaway:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -28px rgba(22, 19, 17, 0.35);
}

.takeaway h4 { font-size: 1.04rem; font-weight: 700; margin-top: 14px; }

.takeaway p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 8px; }

.takeaway .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  color: var(--gold);
}

/* ---------- founders ---------- */

.founders-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.founders-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -45px rgba(22, 19, 17, 0.5);
}

.founders-photo img { width: 100%; height: 100%; object-fit: cover; }

.timeline { list-style: none; margin-top: 34px; display: grid; gap: 0; }

.timeline li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding-block: 18px;
  border-top: 1px solid var(--line-soft);
}

.timeline li:last-child { border-bottom: 1px solid var(--line-soft); }

.timeline .year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.2;
}

.timeline p { font-size: 0.98rem; color: var(--ink-soft); align-self: center; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--dark);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band .h2 { max-width: 20ch; margin-inline: auto; }

.cta-band p { color: var(--on-dark-soft); margin-top: 18px; }

.cta-band .btn { margin-top: 34px; }

.cta-band .strand-bg { top: auto; bottom: -160px; right: -80px; opacity: 0.25; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 46px;
  margin-top: clamp(60px, 9vh, 110px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-contact { display: flex; flex-wrap: wrap; gap: 22px; font-weight: 700; color: var(--ink); }

/* ============================================================
   JELENTKEZÉS OLDAL
   ============================================================ */

.hero-booking {
  padding-block: clamp(52px, 8vh, 96px) clamp(30px, 5vh, 56px);
  text-align: left;
}

.hero-booking .lead { margin-top: 24px; }

/* booking module */

.booking-module {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.date-list { display: grid; gap: 14px; }

.date-card {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.date-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -26px rgba(22, 19, 17, 0.4); }

.date-card.is-selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 22px 40px -28px rgba(201, 146, 47, 0.5); }

.date-card .cal {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding-right: 18px;
}

.date-card .cal strong { display: block; font-size: 1.9rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }

.date-card .cal span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }

.date-card .info h4 { font-size: 1.05rem; font-weight: 700; }

.date-card .info p { font-size: 0.86rem; color: var(--ink-soft); margin-top: 3px; }

.date-card .status { text-align: right; font-size: 0.8rem; font-weight: 700; }

.seat-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.seat-pill.is-low { background: rgba(178, 58, 44, 0.12); color: #b23a2c; }

.seat-pill.is-full { background: rgba(22, 19, 17, 0.08); color: var(--ink-soft); }

.date-card.is-disabled { opacity: 0.55; cursor: not-allowed; }

.date-card.is-disabled:hover { transform: none; box-shadow: none; }

/* summary card */

.booking-summary {
  position: sticky;
  top: 96px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 40px 80px -40px rgba(22, 19, 17, 0.6);
}

.booking-summary .eyebrow { color: var(--gold-bright); }

.booking-summary h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-top: 16px; }

.summary-rows { list-style: none; margin-top: 24px; display: grid; }

.summary-rows li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 13px;
  border-top: 1px solid rgba(246, 244, 239, 0.14);
  font-size: 0.94rem;
}

.summary-rows li span:first-child { color: var(--on-dark-soft); }

.summary-rows li span:last-child { font-weight: 700; text-align: right; }

.summary-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 244, 239, 0.14);
}

.summary-price strong { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gold-bright); }

.summary-price span { font-size: 0.85rem; color: var(--on-dark-soft); }

.seat-meter { margin-top: 20px; }

.seat-meter .meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--on-dark-soft);
  margin-bottom: 8px;
}

.seat-meter .meter-label strong { color: var(--gold-bright); }

.meter-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 244, 239, 0.15);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.booking-summary .btn { width: 100%; margin-top: 26px; }

.pay-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--on-dark-soft);
  text-align: center;
}

.preview-flag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.4);
  border: 1px dashed rgba(246, 244, 239, 0.25);
  border-radius: 6px;
  padding: 4px 10px;
}

/* ---------- agenda ---------- */

.agenda { max-width: 780px; }

.agenda-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding-block: 24px;
  border-top: 1px solid var(--line-soft);
}

.agenda-item:last-child { border-bottom: 1px solid var(--line-soft); }

.agenda-item .time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1.4;
}

.agenda-item h4 { font-size: 1.08rem; font-weight: 700; }

.agenda-item p { font-size: 0.94rem; color: var(--ink-soft); margin-top: 5px; }

/* ---------- venue ---------- */

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.venue-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.venue-card .h3 { margin-bottom: 10px; }

.venue-card p { color: var(--ink-soft); }

.venue-card .venue-addr { font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

.venue-contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

.venue-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.venue-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.step h4 { font-size: 1.05rem; font-weight: 700; margin-top: 16px; }

.step p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 8px; }

/* ---------- FAQ ---------- */

.faq { max-width: 780px; }

.faq-item { border-top: 1px solid var(--line-soft); }

.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-a p { padding-bottom: 24px; color: var(--ink-soft); font-size: 0.97rem; max-width: 62ch; }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid, .tech-grid, .founders-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .chip-1 { left: -4%; }
  .chip-2 { right: -3%; }
  .training-card, .training-card.is-flipped { grid-template-columns: 1fr; }
  .training-card.is-flipped .training-media { order: 0; }
  .booking-module { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .why-grid, .takeaway-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .why-grid, .takeaway-grid, .steps-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .date-card { grid-template-columns: 64px 1fr; }
  .date-card .status { grid-column: 2; text-align: left; }
  .hero-meta { gap: 18px; }
  .agenda-item { grid-template-columns: 84px 1fr; }
}
