/* ============================================
   SZORGENT VIKTOR — ITT Intuitív Tánc Terápia
   Design tokens: fekete-arany, egyetlen folytonos
   vonal mint szignatúra elem (a test története).
   ============================================ */

:root{
  --bg:            #0b0a08;
  --bg-alt:        #141210;
  --bg-alt-2:      #1c1813;
  --hairline:      rgba(201,161,90,0.22);
  --gold-light:    #ecd7a8;
  --gold:          #c9a15a;
  --gold-deep:     #8a6a35;
  --cream:         #f4ede0;
  --muted:         #b3a68d;
  --muted-dim:     #7c7261;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --container: 1180px;
  --container-narrow: 760px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -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: 0 40px; }
.container.narrow{ max-width: var(--container-narrow); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Typography ---------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow.center{ text-align:center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.section-title.center{ text-align:center; }

.lead{
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.55;
  margin: 0 0 22px;
}

.section p{ color: var(--muted); font-size: 1.03rem; margin: 0 0 18px; }
.section p:last-child{ margin-bottom:0; }

/* ---------- Signature thread ---------- */
.thread{
  position: fixed;
  left: 28px;
  top: 0;
  width: 40px;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
}
.thread path{
  fill:none;
  stroke: var(--gold);
  stroke-width: 1.1;
  stroke-linecap: round;
  opacity: 0.55;
}
@media (max-width: 980px){
  .thread{ display:none; }
}

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(8,7,5,0.94);
  border-bottom: 1px solid var(--hairline);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{ height: 34px; width:auto; }
.brand-text{
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.main-nav{
  display:flex;
  align-items:center;
  gap: 38px;
}
.main-nav a{
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}
.main-nav a:hover{ color: var(--gold-light); }
.main-nav a.nav-cta{
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 20px;
  border-radius: 2px;
}
.main-nav a.nav-cta:hover{ background: var(--gold); color: var(--bg); }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  flex-direction:column; gap:5px; padding:6px;
}
.nav-toggle span{ width:24px; height:1px; background: var(--gold-light); display:block; }

@media (max-width: 860px){
  .main-nav{
    position: fixed; top:0; right:0; height:100vh; width: min(78vw, 320px);
    background: var(--bg-alt); flex-direction:column; justify-content:center; align-items:flex-start;
    padding: 40px; gap: 28px; transform: translateX(100%); transition: transform 0.4s ease;
    border-left: 1px solid var(--hairline);
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{ background: var(--bg); }

/* the video is pinned and scrubbed by scroll, at full brightness — no overlay, no blur */
.hero-scrub{
  position: relative;
  height: 300vh;
  background: #fbf8f2; /* matches the video's own near-white background, seamless edge */
}
.hero-media-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding-top: 72px; /* clears the fixed header */
}
.hero-video{
  width:100%;
  height:100%;
  object-fit: contain; /* never crop the artwork, including the final wordmark */
}

.hero-scroll{
  position:absolute; bottom: 34px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  color: var(--gold-deep); font-size: 0.72rem; letter-spacing:0.2em; text-transform:uppercase;
}
.hero-scroll span{
  width:1px; height:36px;
  background: linear-gradient(180deg, var(--gold-deep), transparent);
  position:relative; overflow:hidden;
}
.hero-scroll span::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--gold);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; }
}

.hero-content{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 40px 110px;
  text-align:center;
}
.hero-content .eyebrow{ text-align:center; }
.hero-content h1{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.16;
  color: var(--cream);
  margin: 0 0 40px;
  letter-spacing: 0.005em;
}
.hero-content h1 em{
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions{ display:flex; gap: 18px; justify-content:center; flex-wrap:wrap; }

.btn{
  display:inline-block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-gold{
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light));
  color: #1a1408;
  font-weight: 500;
}
.btn-gold:hover{ filter: brightness(1.1); transform: translateY(-1px); }
.btn-ghost{
  border: 1px solid rgba(244,237,224,0.35);
  color: var(--cream);
}
.btn-ghost:hover{ border-color: var(--gold-light); color: var(--gold-light); }

@media (max-width: 760px){
  .hero-scrub{ height: auto; position: static; }
  .hero-media-sticky{
    position: static;
    height: 62vh;
    height: calc(var(--vh, 1vh) * 62);
    padding-top: 64px;
  }
  .hero-video{ object-fit: cover; }
  .hero-scroll{ display:none; }
  .hero-content{ padding: 56px 28px 72px; }
}

/* ---------- Sections ---------- */
.section{ padding: 120px 0; position: relative; }
.intro{ background: var(--bg); }

.divider{ display:flex; justify-content:center; margin: 32px 0 40px; }
.divider svg{ width:180px; height:32px; }
.divider path{ fill:none; stroke: var(--gold); stroke-width:1; opacity:0.6; }

.intro .lead{ text-align:center; }
.intro p{ text-align:center; max-width: 620px; margin-left:auto; margin-right:auto; }

/* ---------- About ---------- */
.about{ background: var(--bg-alt); }
.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items:center;
}
.about-photo-frame{
  position:relative;
  border: 1px solid var(--hairline);
  padding: 18px;
}
.about-photo-frame::before{
  content:'';
  position:absolute; top:-14px; left:-14px; right:14px; bottom:14px;
  border: 1px solid var(--gold-deep);
  pointer-events:none;
  z-index:0;
}
.about-photo{ position:relative; z-index:1; filter: grayscale(0.15) contrast(1.02); width:100%; height:auto; }

.credentials{
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}
.credentials-label{
  font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing:0.24em; text-transform:uppercase;
  color: var(--gold); margin: 0 0 16px;
}
.credentials-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.credentials-list li{
  color: var(--cream); font-size: 1rem; font-weight:300;
  padding-left: 22px; position:relative;
}
.credentials-list li::before{
  content:''; position:absolute; left:0; top:0.65em;
  width:9px; height:1px; background: var(--gold);
}

@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; gap: 48px; }
  .about-photo-frame{ max-width: 380px; margin: 0 auto; }
}

/* ---------- Kinek ajanlom ---------- */
.whofor{ background: var(--bg); }
.who-grid{
  list-style:none; margin: 56px 0 0; padding:0;
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  max-width: 820px; margin-left:auto; margin-right:auto;
}
.who-grid li{
  display:flex; align-items:baseline; gap:18px;
  padding: 24px 18px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}
.who-grid li:nth-child(odd){ border-right: 1px solid var(--hairline); }
.who-num{
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
@media (max-width: 700px){
  .who-grid{ grid-template-columns: 1fr; }
  .who-grid li:nth-child(odd){ border-right:none; }
}

/* ---------- Sessions ---------- */
.sessions{ background: var(--bg-alt); }
.session-cards{
  display:grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 56px;
}
.session-card{
  background: var(--bg-alt-2);
  border: 1px solid var(--hairline);
  padding: 46px 40px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.session-card:hover{ border-color: var(--gold-deep); transform: translateY(-4px); }
.session-kicker{
  font-size: 0.78rem; letter-spacing:0.24em; text-transform:uppercase;
  color: var(--gold); margin:0 0 14px;
}
.session-card h3{
  font-family: var(--font-display); font-weight:500;
  font-size: 1.7rem; color: var(--cream); margin: 0 0 18px;
}
.session-card p{ margin:0; }

@media (max-width: 760px){
  .session-cards{ grid-template-columns: 1fr; }
}

/* ---------- Why ---------- */
.why{ background: var(--bg); }
.why-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 56px;
}
.why-item{
  border-top: 1px solid var(--gold-deep);
  padding-top: 22px;
}
.why-text{
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--cream);
  margin:0;
  line-height: 1.4;
}
@media (max-width: 860px){
  .why-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .why-grid{ grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact{ background: var(--bg-alt); }
.contact-grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px;
  align-items:start;
}
.detail-list{ margin: 34px 0; display:grid; gap: 16px; }
.detail-list div{
  display:flex; justify-content:space-between; align-items:baseline;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
}
.detail-list dt{
  font-size: 0.78rem; letter-spacing:0.18em; text-transform:uppercase; color: var(--muted-dim);
}
.detail-list dd{
  margin:0; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light);
}
.detail-list dd a{ transition: color 0.25s ease; }
.detail-list dd a:hover{ color: var(--cream); }

.disclaimer{
  background: var(--bg-alt-2);
  border: 1px solid var(--hairline);
  padding: 34px 32px;
}
.disclaimer-title{
  font-size: 0.78rem; letter-spacing:0.2em; text-transform:uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.disclaimer p:last-child{ margin:0; font-size: 0.92rem; color: var(--muted-dim); line-height:1.65; }

@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; gap: 44px; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: #060504;
  border-top: 1px solid var(--hairline);
  padding: 56px 0 40px;
  text-align:center;
}
.footer-mark{ height: 40px; width:auto; margin: 0 auto 18px; opacity:0.9; }
.footer-name{
  font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin: 0 0 10px;
}
.footer-contact{ color: var(--muted); font-size: 0.92rem; margin: 0 0 22px; }
.footer-contact a:hover{ color: var(--gold-light); }
.footer-legal{ color: var(--muted-dim); font-size: 0.78rem; margin:0; letter-spacing:0.04em; }
