:root {
  interpolate-size: allow-keywords;
  --bg: #0A0A0A;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --ink: #F5F0E8;
  --ink-soft: rgba(245,240,232,0.6);
  --accent: #D4AF37;
  --accent-2: #8B6F47;
  --line: rgba(212,175,55,0.18);
  --line-strong: rgba(212,175,55,0.35);
  --header-h: 72px;
  --ff-heading: Georgia, 'Times New Roman', serif;
  --ff-body: 'Trebuchet MS', Tahoma, sans-serif;
  --container-px: clamp(16px, 4vw, 32px);
  --max-w: 1400px;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--surface-2);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.gold-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
  border: none;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

main {
  padding-top: var(--header-h);
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 200ms;
}
.skip-link:focus {
  top: 8px;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(10,10,10,0.85);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0 var(--container-px);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--header-h);
}
.header__logo {
  font-family: var(--ff-heading);
  font-weight: 300;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover { color: var(--accent); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.nav-desktop .nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ---- HAMBURGER ---- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE DRAWER ---- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
  display: block;
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-drawer .nav-cta-mobile {
  margin-top: 24px;
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: none;
  transition: background 240ms, color 240ms;
}
.mobile-drawer .nav-cta-mobile:hover {
  background: var(--ink);
  color: var(--bg);
  padding-left: 28px;
}
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms;
}
.drawer-close:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
}
.hero__media {
  position: absolute;
  inset: -20% 0 0 0;
  width: 100%;
  height: 120%;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: hero-zoom 8s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 16px;
  clip-path: inset(0 100% 0 0);
  animation: curtain-text 1.4s cubic-bezier(.2,.7,.2,1) 0.5s forwards;
}
@keyframes curtain-text {
  to { clip-path: inset(0 0 0 0); }
}
.hero__sub {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 800ms cubic-bezier(.2,.7,.2,1) 1.2s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 32px;
  opacity: 0;
  animation: fade-up 800ms cubic-bezier(.2,.7,.2,1) 1.6s forwards;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 40px;
}
.trust-badge svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 36px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.4,0,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 14px 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---- STATS COUNTERS ---- */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ---- DISCIPLINES ---- */
.disciplines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
}
.discipline-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.discipline-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.discipline-card:hover img {
  transform: scale(1.04);
}
.discipline-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
}
.discipline-card__name {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.discipline-card__desc {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 8px;
  max-width: 280px;
}

/* spotlight reveal for discipline/gallery images */
.spotlight-reveal {
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.2s cubic-bezier(.2,.7,.2,1);
}
.spotlight-reveal.is-in {
  clip-path: circle(75% at 50% 50%);
}

@media (max-width: 640px) {
  .disciplines-grid { grid-template-columns: 1fr; }
  .discipline-card { aspect-ratio: 4 / 5; }
}

/* ---- PROCESS TIMELINE ---- */
.timeline {
  position: relative;
  padding-left: 56px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
}
.timeline__step {
  position: relative;
  padding-bottom: clamp(36px, 5vw, 56px);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -44px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 16px rgba(212,175,55,0.3);
}
.timeline__time {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline__text {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .timeline { padding-left: 40px; }
  .timeline__dot { left: -28px; width: 10px; height: 10px; }
  .timeline::before { left: 14px; }
}

/* ---- GALLERY MASONRY ---- */
.masonry {
  columns: 3;
  column-gap: clamp(12px, 2vw, 20px);
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 2vw, 20px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
}
.masonry__item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover img {
  transform: scale(1.04);
}
.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
}
.masonry__item:hover::after { opacity: 1; }

@media (max-width: 768px) { .masonry { columns: 2; } }
@media (max-width: 480px) { .masonry { columns: 1; } }

/* ---- SEASON TABLE ---- */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.875rem;
}
thead th {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}
tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(212,175,55,0.04); }

.status-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-badge--open {
  background: rgba(212,175,55,0.15);
  color: var(--accent);
}
.status-badge--pre {
  background: rgba(139,111,71,0.18);
  color: var(--accent-2);
}
.status-badge--soon {
  background: rgba(245,240,232,0.08);
  color: var(--ink-soft);
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.1);
}
.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 24px;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-card__name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__period {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.pricing-card__list li {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.pricing-card__list li.excluded {
  color: rgba(245,240,232,0.35);
  text-decoration: line-through;
}
.pricing-card__list li.excluded::before {
  background: rgba(245,240,232,0.2);
}
.pricing-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
.testimonials-grid .testimonial:first-child {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
  opacity: 0.3;
}
.testimonial__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial__author {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.testimonial__meta {
  font-size: 0.6875rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .testimonial:first-child {
    grid-row: auto;
  }
}

/* ---- FAQ ACCORDION (pure CSS) ---- */
.faq-list {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ---- FORM ---- */
.form-section {
  background: var(--surface);
}
.site-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  transition: border-color 240ms, box-shadow 240ms;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field-checkbox {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.field-checkbox input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .site-form { grid-template-columns: 1fr; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(36px, 6vw, 56px);
}
.footer__brand {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}
.footer__text {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 320px;
}
.footer__heading {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none; padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  transition: color 240ms, padding-left 240ms;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer__contact-item {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: flex;
  align-items: start;
  gap: 8px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner__title {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-btn {
  flex: 1 1 auto;
  min-height: 44px;
  min-width: 100px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
  padding: 10px 16px;
  text-align: center;
}
.cookie-btn--accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-btn--accept:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cookie-btn--reject {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-btn--reject:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
}
.cookie-btn--settings {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-btn--settings:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
}

/* ---- CONTACT PAGE GRID ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- CONTACT CHANNELS ---- */
.contact-channels {
  display: grid;
  gap: 0;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.channel-row:last-child { border-bottom: none; }
.channel-row:hover {
  transform: translateX(4px);
  background: rgba(212,175,55,0.03);
}
.channel-row:hover .channel-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.channel-icon {
  width: 20px; height: 20px;
  stroke: var(--ink-soft);
  fill: none;
  transition: color 240ms, transform 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.channel-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}
.channel-value {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.channel-value a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.channel-value a:hover { color: var(--accent); }

/* ---- ABOUT PAGE ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.08);
}
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card__info {
  padding: clamp(20px, 3vw, 32px);
}
.team-card__name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}

.about-story {
  max-width: 720px;
}
.about-story p {
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- LEGAL PAGE ---- */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---- 404 PAGE ---- */
.notfound-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound-code {
  font-family: var(--ff-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
}

/* ---- SITEMAP PAGE ---- */
.sitemap-list {
  list-style: none; padding: 0;
  columns: 2;
  column-gap: 32px;
}
.sitemap-list li {
  margin-bottom: 12px;
  break-inside: avoid;
}
.sitemap-list a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.sitemap-list a:hover { color: var(--accent); }
@media (max-width: 480px) {
  .sitemap-list { columns: 1; }
}

/* ---- DANCE NICHE ANIMATIONS ---- */
@keyframes stage-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.08); }
  50% { box-shadow: 0 0 40px rgba(212,175,55,0.2); }
}
@keyframes barre-draw {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes curtain-open {
  from { clip-path: inset(0 50%); }
  to { clip-path: inset(0 0); }
}
@keyframes arabesque-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pirouette-hint {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

.stage-glow { animation: stage-glow 10s ease-in-out infinite; }
.barre-line {
  display: block;
  height: 1px;
  background: var(--accent);
  width: 0;
}
.barre-line.is-in {
  animation: barre-draw 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.arabesque-float {
  animation: arabesque-float 12s ease-in-out infinite;
}

/* ---- REVEALS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .spotlight-reveal { clip-path: none; }
html.no-js .barre-line { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .spotlight-reveal { clip-path: none !important; transition: none !important; }
  .hero__title { clip-path: none !important; animation: none !important; }
  .hero__sub { animation: none !important; opacity: 1 !important; }
  .trust-strip { animation: none !important; opacity: 1 !important; }
  .hero__media img { animation: none !important; }
  .stage-glow { animation: none !important; }
  .arabesque-float { animation: none !important; }
  .barre-line { animation: none !important; width: 100% !important; }
}

/* ---- OVERLAPPING Z-LAYER SECTION ---- */
.overlap-section {
  position: relative;
}
.overlap-section__image {
  max-width: clamp(300px, 50%, 540px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--surface-2);
}
.overlap-section__image img {
  width: 100%; height: auto;
}
.overlap-section__text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 2;
  margin-top: -48px;
  margin-left: auto;
  max-width: 600px;
}
@media (max-width: 768px) {
  .overlap-section__text { margin-top: -24px; }
  .overlap-section__image { max-width: 90%; }
}

/* ---- MANIFESTO QUOTE ---- */
.manifesto-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-block blockquote {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1280px) {
  :root { --header-h: 68px; }
}
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .section { padding: clamp(48px, 8vw, 80px) 0; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
@media (max-width: 430px) {
  .container { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 360px) {
  body { font-size: 0.9375rem; }
  .hero__title { font-size: 2rem; }
}

/* ---- PRINT ---- */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { min-height: auto; page-break-after: always; }
}
