/* ==========================================================================
   Sezen Karakas — Design V
   Banner & menu inherited from Design II (fullscreen photo, centred
   monogram); everything below re-imagined: porcelain white, Marcellus
   serif, copper accent, numbered sections, modern editorial layouts.
   Loads AFTER style.css.
   ========================================================================== */

/* Marcellus is self-hosted via /assets/css/fonts.css */

:root {
  --bg: #f7f5f0;
  --bg-alt: #f1ede4;
  --surface: #fffdf9;
  --ink: #1a1813;
  --ink-soft: #57534a;
  --ink-faint: #8f887b;
  --copper: #a4592f;
  --copper-deep: #7f4423;
  --gold: #a4592f;          /* remap inherited accents to copper */
  --gold-deep: #7f4423;
  --gold-soft: #e9d5c4;
  --line: #e6e0d3;
  --radius: 22px;
  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;
}

h1, h2, h3 { font-weight: 400; }

.btn { border-radius: 999px; }
.btn-primary { background: var(--copper); }
.btn-primary:hover { background: var(--copper-deep); }

/* ==========================================================================
   Header & fullscreen hero — same as Design II
   ========================================================================== */

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(20, 16, 10, 0.42), rgba(20, 16, 10, 0));
  border-bottom: 0; /* no 1px slot — avoids a hairline seam over the photo */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(26, 24, 19, 0.06);
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.13em;
  font-size: 0.85rem;
}
.site-header .nav-link:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.8); }
.site-header.scrolled .nav-link { color: var(--ink-soft); text-shadow: none; }
.site-header.scrolled .nav-link:hover { color: var(--ink); border-bottom-color: var(--copper); }

.brand-monogram {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(10px, 1.4vw, 18px);
  text-decoration: none;
}
/* tighter run of links either side of the logo */
.site-header .nav-side { gap: clamp(12px, 1.6vw, 22px); }
.brand-monogram svg {
  width: 52px;
  height: 52px;
  color: #fff;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.brand-monogram:hover svg { transform: scale(1.05); }
.site-header.scrolled .brand-monogram svg { color: var(--ink); filter: none; }
/* wide signature logo instead of the round SK monogram — header grows with it */
:root { --header-h: 96px; }
.brand-monogram svg.logo-mark { width: auto; height: 74px; }
@media (max-width: 940px) {
  :root { --header-h: 76px; }
  .brand-monogram svg.logo-mark { height: 52px; }
}

.site-header .lang-switch { background: rgba(20, 16, 10, 0.25); border-color: rgba(255, 255, 255, 0.45); }
.site-header .lang-switch a { color: rgba(255, 255, 255, 0.85); }
.site-header .lang-switch a:hover { color: #fff; background: rgba(255, 255, 255, 0.18); }
.site-header .lang-switch .active { background: rgba(255, 255, 255, 0.92); color: var(--ink); }
.site-header.scrolled .lang-switch { background: rgba(255, 255, 255, 0.6); border-color: var(--line); }
.site-header.scrolled .lang-switch a { color: var(--ink-soft); }
.site-header.scrolled .lang-switch a:hover { color: var(--ink); background: var(--gold-soft); }
.site-header.scrolled .lang-switch .active { background: var(--ink); color: var(--bg); }

.menu-toggle { background: rgba(20, 16, 10, 0.3); border-color: rgba(255, 255, 255, 0.5); }
.menu-toggle .bar { background: #fff; }
.site-header.scrolled .menu-toggle { background: var(--surface); border-color: var(--line); }
.site-header.scrolled .menu-toggle .bar { background: var(--ink); }

.mobile-nav { background: rgba(247, 245, 240, 0.98); }
.mobile-nav .nav-link { color: var(--ink-soft); text-shadow: none; }
.mobile-nav .lang-switch { background: rgba(255, 255, 255, 0.6); border-color: var(--line); }
.mobile-nav .lang-switch a { color: var(--ink-soft); }
.mobile-nav .lang-switch .active { background: var(--ink); color: var(--bg); }

@media (max-width: 940px) {
  .brand-monogram { grid-column: 1; justify-content: flex-start; padding: 0; }
  .brand-monogram svg { width: 46px; height: 46px; }
}

.hero-full { position: relative; min-height: 100svh; overflow: hidden; }
.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%; /* crop pushes her face into the top third, clear of the text */
}
.hero-full .hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 15, 8, 0.34) 0%, rgba(20, 15, 8, 0) 24%, rgba(20, 15, 8, 0) 52%, rgba(20, 15, 8, 0.62) 100%);
}
.hero-full-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 110px 20px 72px;
  gap: 13px;
}
.display-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.9rem);
  font-weight: 400;
  letter-spacing: clamp(0.12em, 1.6vw, 0.26em);
  text-indent: clamp(0.12em, 1.6vw, 0.26em);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.display-tag {
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-langs { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.hero-langs a {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(20, 16, 10, 0.24);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.hero-langs a:hover { background: rgba(255, 255, 255, 0.22); border-color: #fff; }
.hero-full .btn-cta {
  margin-top: 6px;
  background: var(--copper);
  border: 1px solid var(--copper);
  color: #fffdf8;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.hero-full .btn-cta:hover { background: var(--copper-deep); border-color: var(--copper-deep); color: #fffdf8; transform: translateY(-2px); }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.scroll-cue svg { width: 20px; height: 20px; animation: cue-bob 2.2s ease-in-out infinite; }
.scroll-cue:hover { color: #fff; }
@keyframes cue-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

@media (max-width: 700px) {
  .hero-full .hero-bg { object-position: 50% 40%; }
  .hero-full-content { padding-bottom: 96px; gap: 12px; }
}

/* short viewports: keep the whole stack below her face */
@media (max-height: 760px) {
  .display-name { font-size: clamp(1.7rem, 4vw, 2.6rem); }
  .hero-full-content { gap: 10px; padding-bottom: 56px; }
  .hero-full .btn-cta { padding: 12px 24px; }
  .hero-langs a { padding: 9px 18px; }
}

/* phones win over the short-viewport rule above: name block sits lower
   (clear of her chin) while the CTA still keeps air above the scroll cue */
@media (max-width: 700px) {
  .hero-full-content { padding-bottom: 102px; }
  .scroll-cue { bottom: 12px; }
}

/* ==========================================================================
   Below the fold — new modern editorial system
   ========================================================================== */

/* --- Marquee strip --------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  flex: none;
  padding-right: 3.2em;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.marquee-track span b { font-weight: 400; color: var(--copper); padding-right: 3.2em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* --- Numbered section heads -------------------------------------------------- */

.idx-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: clamp(30px, 4.5vw, 48px);
}
.idx-head .idx {
  flex: none;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.idx-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin: 0;
  letter-spacing: 0.01em;
}
.idx-head .idx-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-8px);
  min-width: 40px;
}

/* --- Biography: sticky label / flowing content ---------------------------------- */

.bio5 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.bio5 .bio5-media { position: sticky; top: calc(var(--header-h) + 24px); }
.bio5 .bio5-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 50% 50%; /* teaching portrait: her eyes sit at ~53% of the source */
  box-shadow: 0 24px 60px rgba(26, 24, 19, 0.14);
}
.bio5 .bio5-media figcaption { margin-top: 12px; font-size: 0.85rem; color: var(--ink-faint); }
.bio5 .bio-text p { color: var(--ink-soft); }
.bio5 .bio-text p strong { color: var(--ink); font-weight: 500; }

.timeline { border-left: 0; padding-left: 0; margin-top: 38px; }
.timeline li { padding: 14px 0 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 22px; align-items: baseline; }
.timeline li::before { content: none; }
.timeline li:first-child { border-top: 1px solid var(--line); }
.timeline .t-year { flex: none; min-width: 5.5em; font-family: var(--font-display); font-size: 0.95rem; color: var(--copper); letter-spacing: 0.06em; }

@media (max-width: 880px) {
  .bio5 { grid-template-columns: 1fr; }
  .bio5 .bio5-media { position: static; max-width: 440px; }
}

/* --- Lessons: numbered path rows --------------------------------------------------- */

.path-intro { max-width: 640px; color: var(--ink-soft); margin-bottom: clamp(28px, 4vw, 40px); }

.path-list { list-style: none; margin: 0; padding: 0; }
.path-list > li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(22px, 3.4vw, 34px) clamp(16px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
  border-radius: 18px;
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.path-list > li:first-child { border-top: 1px solid var(--line); }
.path-list > li:hover {
  background: var(--surface);
  transform: translateX(6px);
  box-shadow: 0 10px 34px rgba(26, 24, 19, 0.07);
}
.path-list .p5-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--copper);
  text-stroke: 1px var(--copper);
  min-width: 1.6em;
}
.path-list h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 0 0 6px; }
.path-list p { margin: 0; color: var(--ink-soft); max-width: 56ch; }
.path-list .p5-tag {
  flex: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .path-list > li { grid-template-columns: auto 1fr; }
  .path-list .p5-tag { grid-column: 2; justify-self: start; margin-top: 10px; }
}

.lessons5-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}
.lessons5-foot .lesson-note { margin: 0; text-align: left; }

/* --- Videos ---------------------------------------------------------------------------- */

.video-frame { border-radius: var(--radius); }
.video-frame .play { background: rgba(247, 245, 240, 0.95); }
.video-frame:hover .play { background: var(--copper); }
.video-frame:hover .play::before { border-left-color: #fffdf8; }
.video-item .video-title { font-weight: 400; }

/* --- Gallery: mixed-size editorial grid --------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, 23vw);
  gap: clamp(14px, 2vw, 22px);
}
.gallery-item { border-radius: var(--radius); }
.gallery-item .g-frame { border-radius: var(--radius); aspect-ratio: auto; height: 100%; }
.gallery-item figure { height: 100%; display: flex; flex-direction: column; }
.gallery-item .g-frame { flex: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item figcaption { padding: 10px 6px 0; font-size: 0.85rem; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(160px, 34vw); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
}

/* --- Testimonials: oversized quotes --------------------------------------------------------- */

.quotes5 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}
.quotes5 .q5 { border-left: 2px solid var(--copper); padding-left: clamp(20px, 3vw, 34px); }
.quotes5 .q5 + .q5 { margin-top: 40px; }
.quotes5 blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
}
.quotes5 cite { font-style: normal; font-size: 0.88rem; color: var(--ink-faint); letter-spacing: 0.08em; }
.quotes5 .stars { color: var(--copper); letter-spacing: 4px; margin-bottom: 10px; }

.q5-google {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 38px);
}
.q5-google p { color: var(--ink-soft); }

@media (max-width: 880px) { .quotes5 { grid-template-columns: 1fr; } }

/* --- FAQ: soft cards --------------------------------------------------------------------------- */

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  margin-bottom: 12px;
  padding: 0 clamp(16px, 2.4vw, 26px);
}
.faq-item summary { font-size: 1.18rem; }
.faq-item[open] { border-color: var(--gold-soft); box-shadow: 0 8px 30px rgba(26, 24, 19, 0.06); }

/* --- Contact: warm panel ------------------------------------------------------------------------- */

.contact5 {
  background: linear-gradient(135deg, #f3e3d3, #efe7da 70%);
  border-radius: 32px;
  padding: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.contact5 h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; }
.contact5 .contact-lead { color: var(--ink-soft); max-width: 30em; }
.contact5 .contact-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.contact5-aside { display: flex; flex-direction: column; gap: 18px; }
.contact5-aside .c-item .c-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 3px;
}
.contact5-aside .c-item .c-value { color: var(--ink); }
.contact5-aside .c-item .c-value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(26, 24, 19, 0.25); }
.contact5-aside .c-item .c-value a:hover { color: var(--copper-deep); border-bottom-color: var(--copper-deep); }

@media (max-width: 880px) { .contact5 { grid-template-columns: 1fr; } }

/* --- Footer: light modern ---------------------------------------------------------------------------- */

.site-footer { background: transparent; color: var(--ink); border-top: 1px solid var(--line); }
.site-footer .brand { color: var(--ink); font-family: var(--font-display); }
.site-footer .foot-tag { color: var(--ink-faint); }
.foot-nav a { color: var(--ink-soft); }
.foot-nav a:hover { color: var(--copper-deep); }
.foot-social a { border-color: var(--line); color: var(--ink); }
.foot-social a:hover { background: var(--copper); border-color: var(--copper); color: #fffdf8; }
.foot-legal { border-top-color: var(--line); color: var(--ink-faint); }
.foot-legal a:hover { color: var(--copper-deep); }

.skip-link { background: var(--copper); color: #fffdf8; }

/* --- Solid header + location landing pages (Unterrichtsorte) -------------------- */

.site-header.solid {
  position: sticky;
  background: rgba(247, 245, 240, 0.95);
  border-bottom: 1px solid var(--line);
}
.site-header.solid .nav-link { color: var(--ink-soft); text-shadow: none; }
.site-header.solid .nav-link:hover { color: var(--ink); border-bottom-color: var(--copper); }
.site-header.solid .brand-monogram svg { color: var(--ink); filter: none; }
.site-header.solid .menu-toggle { background: var(--surface); border-color: var(--line); }
.site-header.solid .menu-toggle .bar { background: var(--ink); }

.locpage { max-width: 860px; margin: 0 auto; }
.locpage .eyebrow { font-family: var(--font-ui, "Jost", sans-serif); }
.locpage h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 10px 0 18px;
  line-height: 1.12;
}
.locpage .lead { font-size: 1.16rem; color: var(--ink-soft); }
.locpage h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin: 44px 0 14px; }
.locpage p { color: var(--ink-soft); }
/* Show the full portrait uncropped, as a centred editorial inset */
.locpage figure { margin: 38px auto; max-width: 500px; }
.locpage figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26, 24, 19, 0.12);
}

.locpage figcaption { margin-top: 10px; font-size: 0.88rem; color: var(--ink-faint); text-align: center; }
.locpage .lesson-meta { justify-content: flex-start; margin-top: 26px; }
.loc-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 8px; }
.locpage .faq-list { margin-top: 6px; }
.loc-links {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-faint);
}
.loc-links a { color: var(--ink-soft); }
.loc-links a:hover { color: var(--copper-deep); }

.foot-places { color: var(--ink-faint); }
.foot-places a { color: var(--ink-soft); }
.foot-places a:hover { color: var(--copper-deep); }
