@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:        #FFF8E7;
  --bg-2:      #FFF3D6;
  --bg-3:      #F0E4C8;
  --mid:       #D4C4A8;
  --muted:     #A09070;
  --ink:       #3A3528;
  --ink-light: #5A5548;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

h1, h2, h3, .brand, .hero-sub, .hero-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}

p {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: var(--ink-light);
  text-align: justify;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--muted);
}

.container {
  width: min(1000px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.section-divider {
  height: 1px;
  background: var(--bg-3);
  max-width: 1000px;
  margin: 0 auto;
}

.page-section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}

/* ── Header ─────────────────────────────── */

.site-header {
  padding: 1.25rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--bg-3);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

nav a:hover,
.nav-active {
  color: var(--ink);
}

.lang-switcher {
  display: flex;
  gap: 0;
  margin-left: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.lang-btn {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0;
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  text-transform: uppercase;
}

.lang-btn:not(:last-child)::after {
  content: '/';
  margin: 0 0.25rem;
  color: var(--bg-3);
  pointer-events: none;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  color: var(--ink);
  font-weight: 500;
}

/* ── Hero ───────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background: #111;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 231, 0.08);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  text-align: center;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Gallery ────────────────────────────── */

.gallery-category {
  margin-bottom: 3rem;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-grid figure {
  margin: 0;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  transition: border-color 0.2s;
}

.gallery-grid figure:hover {
  border-color: var(--mid);
}

.gallery-grid figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.gallery-grid figure img:hover {
  opacity: 0.85;
}

.gallery-grid figure.gallery-hidden {
  display: none;
}

.gallery-toggle {
  display: block;
  margin: 1.5rem auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--bg-3);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-toggle:hover {
  color: var(--ink);
  border-color: var(--mid);
}

/* ── Videos ─────────────────────────────── */

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.act-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--bg-3);
  background: var(--bg-2);
}

.act-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.acts-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin: -1.5rem 0 2.5rem;
}

/* ── Act Card Description ───────────────── */

.act-description {
  margin-top: 0.75rem;
}

.act-description p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 0.35rem;
  color: var(--ink-light);
}

.act-tech {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── Contact ────────────────────────────── */

.contact-left {
  margin-right: auto;
  width: 100%;
  max-width: 420px;
  text-align: left;
}

.contact-left h1 {
  text-align: left;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.contact-links a:hover {
  color: #fff;
}

/* ── Contact Form ──────────────────────────── */

.contact-form {
  max-width: 500px;
  margin: 3rem 0;
}

.form-row {
  margin-bottom: 2.5rem;
}

.form-row label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--mid);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--ink);
}

.form-submit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 2.5rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.form-submit:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ── Contact Form (on dark hero) ─────────── */

.hero .contact-form {
  margin: 2.5rem 0 0;
}

.hero .form-row label {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .form-row input,
.hero .form-row textarea {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  padding: 0.6rem 0;
}

.hero .form-row input:focus,
.hero .form-row textarea:focus {
  border-bottom-color: #fff;
}

.hero .form-row input::placeholder,
.hero .form-row textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.hero .form-submit {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.hero .form-submit:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── About ──────────────────────────────────── */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  border: 1px solid var(--bg-3);
}

@media (max-width: 640px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Footer ─────────────────────────────── */

.site-footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--bg-3);
  margin-top: 2rem;
}

.site-footer p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
}

/* ── Lightbox ───────────────────────────── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 231, 0.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(58, 53, 40, 0.15);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--mid);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.5;
  transition: opacity 0.15s;
  user-select: none;
}

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* ── Tech Requirements ────────────────────── */

.tech-toggle {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--bg-3);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tech-toggle:hover {
  color: var(--ink);
  border-color: var(--mid);
}

.tech-details {
  display: none;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--bg-3);
  border-radius: 6px;
  background: var(--bg-2);
}

.tech-details.open {
  display: block;
}

.tech-details h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}

.tech-details h4:first-child {
  margin-top: 0;
}

.tech-details ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.tech-details li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 0.25rem;
}

.tech-details p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ── Workshops ────────────────────────────── */

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.workshop-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--bg-3);
  border-radius: 6px;
  background: var(--bg-2);
}

.workshop-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  min-width: 5rem;
}

.workshop-info h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.2rem;
}

.workshop-info p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: var(--ink-light);
}

.workshop-book-link {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.workshop-book-link:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  .workshop-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── Classes ──────────────────────────────────── */

.classes-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.classes-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1.5rem;
}

.training-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.training-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--bg-3);
  border-radius: 6px;
  background: var(--bg-2);
}

.training-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.training-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-light);
}

@media (max-width: 640px) {
  .training-options {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile ─────────────────────────────── */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .page-section {
    padding: 3rem 0;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile contact video ─────────────── */

@media (max-width: 640px) {
  .contact-hero {
    flex-direction: column;
    min-height: auto;
    background: var(--bg);
    padding: 2rem 0 0;
    justify-content: flex-start;
  }

  .contact-hero .hero-video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: none;
    order: 2;
    margin: 2rem 0 0;
  }

  .contact-hero::after {
    display: none;
  }

  .contact-hero .hero-content {
    position: static;
    z-index: auto;
    max-width: none;
    order: 1;
    padding: 0 1rem;
  }

  .contact-hero .hero-content h1 {
    color: var(--ink);
  }

  .contact-hero .contact-form {
    margin: 2rem 0 0;
  }

  .contact-hero .form-row label {
    color: var(--ink-light);
  }

  .contact-hero .form-row input,
  .contact-hero .form-row textarea {
    color: var(--ink);
    border-bottom-color: var(--mid);
  }

  .contact-hero .form-row input::placeholder,
  .contact-hero .form-row textarea::placeholder {
    color: var(--muted);
  }

  .contact-hero .form-submit {
    border-color: var(--ink);
    color: var(--ink);
  }

  .contact-hero .form-submit:hover {
    background: var(--ink);
    color: var(--bg);
  }

  .contact-hero .contact-links a {
    color: var(--muted);
  }

  .contact-hero .contact-links a:hover {
    color: var(--ink);
  }
}
