:root {
  --cream: #F5EFE4;
  --cream-dark: #EDE4D4;
  --terracotta: #C1693A;
  --terracotta-light: #D4825A;
  --green: #2D4A3E;
  --green-light: #3D6455;
  --gold: #B8975A;
  --gold-light: #CEAD78;
  --charcoal: #1A1A17;
  --warm-gray: #7A7060;
  --white: #FDFAF5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 64px;
  height: 69px;
  background: #9B6CC4;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  padding: 16px 64px;
  background: rgba(245, 239, 228, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,151,90,0.18);
}
.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 2cm;
}
.nav-logo {
  height: 60px;
  width: auto;
  display: block;
}
nav.scrolled .nav-brand { color: var(--green); }
.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #9B6CC4;
  list-style: none;
  min-width: 140px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 300;
  padding: 4px 0;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: #5B2D8E; color: white; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
nav.scrolled .nav-links a { color: var(--charcoal); }
nav.scrolled .nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: white !important;
  padding: 9px 24px;
  border-radius: 2px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.3s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.28) !important; }
nav.scrolled .nav-cta {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: white !important;
}
nav.scrolled .nav-cta:hover { background: var(--green-light) !important; }
.nav-social-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #9B6CC4;
  text-decoration: none;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.nav-social:hover { background: #fff; transform: scale(1.1); }
.lang-badge { display: flex; gap: 5px; }
.lang-pill {
  background: none;
  padding: 2px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  line-height: 1;
  text-decoration: none;
  opacity: 0.7;
}
.lang-pill .fi {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  display: block;
}
.lang-pill:hover { transform: scale(1.15); opacity: 1; }
.lang-pill--active { opacity: 1; outline: 2px solid rgba(255,255,255,0.7); border-radius: 4px; }
nav.scrolled .lang-pill { background: none; }
.nav-right { display: flex; align-items: center; gap: 24px; }

/* ─── HERO — video fullscreen ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 100px;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.82);
}
/* Fallback gradient when no video plays */
.hero-video-wrap .video-fallback {
  width: 100%; height: 100%;
  background:
    linear-gradient(160deg,
      rgba(45,74,62,0.75) 0%,
      rgba(26,26,23,0.82) 55%,
      rgba(193,105,58,0.35) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  flex-direction: column; gap: 10px;
}
.video-placeholder-icon { font-size: 3rem; opacity: 0.3; }
.video-placeholder-text { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.5; }
/* Multi-layer overlay for cinematic depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(20,18,15,0.88) 0%, rgba(20,18,15,0.22) 45%, rgba(20,18,15,0.08) 100%),
    linear-gradient(to right, rgba(20,18,15,0.45) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-left { max-width: 680px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 22px;
  opacity: 0;
  animation: slideUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow span { display: flex; align-items: center; gap: 8px; }
.eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); opacity: 0.6; }
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 0.95;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  opacity: 0;
  animation: slideUp 0.9s 0.35s ease forwards;
}
.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: #FFFFFF;
}
.hero-heading .line-last {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  margin-top: 14px;
  font-style: normal;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUp 0.9s 0.5s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: slideUp 0.9s 0.65s ease forwards;
}
.btn-hero-primary {
  background: var(--terracotta);
  color: white;
  padding: 14px 34px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-hero-primary:hover { background: var(--terracotta-light); transform: translateY(-2px); }
.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.88);
  padding: 14px 34px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.9);
  color: white;
  background: rgba(255,255,255,0.08);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  opacity: 0;
  animation: slideUp 0.9s 0.75s ease forwards;
}
.hero-logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  align-self: flex-end;
  overflow: hidden;
}
.hero-logo-img {
  width: 85%;
  height: auto;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold-light); font-style: italic; }
.hero-stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
}
/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollDrop 1.6s 1.4s ease-in-out infinite;
}

/* ─── SECTION COMMONS ─── */
section { padding: 110px 64px; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.section-heading em { font-style: italic; color: var(--terracotta); }

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: #9B6CC4;
  padding: 52px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.intro-item {
  background: var(--cream);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(0,0,0,0.2);
  line-height: 1;
  flex-shrink: 0;
}
.intro-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #5B2D8E;
  margin-bottom: 8px;
}
.intro-text p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
}

/* ─── ABOUT ─── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}
.about-photo-outer {
  position: relative;
  padding-bottom: 32px;
  padding-right: 32px;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-rect {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  background: #9B6CC4;
  border-radius: 3px;
  z-index: 0;
}
.about-gold-strip {
  position: absolute;
  top: 32px;
  left: -5px;
  width: 3px;
  height: 42%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 2;
}
.about-text { padding-right: 10px; }
.about-text p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 18px;
}
.about-text p strong { opacity: 1; font-weight: 500; color: var(--green); }
.about-list {
  margin: 0 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.8;
}
.credentials-list {
  margin-top: 40px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cred {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: baseline;
}
.cred-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.cred-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--warm-gray);
}

/* ─── BOOKS ─── */
.books { background: var(--cream); }
.books-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.books-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  padding-bottom: 4px;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.book-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px 1fr;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(45,74,62,0.13);
}
.book-cover {
  aspect-ratio: 2/3;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover-text {
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
}
.book-cover.book-terra { background: linear-gradient(165deg, #B85C30 0%, #8B3F20 100%); }
.book-cover.book-green { background: linear-gradient(165deg, #2D4A3E 0%, #1A2E27 100%); }
.new-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--terracotta);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.book-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.book-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.book-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--warm-gray);
  margin-bottom: 22px;
  flex-grow: 1;
}
.book-langs {
  display: flex; gap: 6px; margin-bottom: 22px; flex-wrap: wrap;
}
.book-lang {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--cream-dark);
  color: var(--warm-gray);
  padding: 3px 9px;
  border-radius: 20px;
}
.book-btns { display: flex; flex-direction: column; gap: 9px; }
.bbtn {
  display: block;
  text-align: center;
  padding: 10px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.22s;
}
.bbtn-primary { background: #5B2D8E; color: white; }
.bbtn-primary:hover { background: #3D1A6E; }
.bbtn-outline { border: 1.5px solid #5B2D8E; color: #5B2D8E; }
.bbtn-outline:hover { background: #5B2D8E; color: white; }
.bbtn-dark { background: #5B2D8E; color: white; }
.bbtn-dark:hover { background: #3D1A6E; }

/* ─── SERVICES ─── */
.services {
  background: #9B6CC4;
  padding: 110px 64px;
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.services .section-label { color: var(--gold-light); }
.services .section-label::before { background: var(--gold-light); }
.services .section-heading { color: white; font-size: 3.5rem; font-weight: 300; line-height: 1.15; }
.services .section-heading em { color: white; }
.services-intro p {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc {
  background: var(--cream);
  padding: 50px 38px;
  position: relative;
  border-top: 2px solid transparent;
  transition: all 0.3s;
}
.svc:hover {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--gold);
}
.svc-icon { font-size: 1.8rem; margin-bottom: 22px; display: block; }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.svc-desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(0,0,0,0.6);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 14px; }
.svc-link::after { content: '→'; }

/* ─── QUOTE / HERO 2 ─── */
.quote-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,18,15,0.72) 0%, rgba(20,18,15,0.72) 100%),
    url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80') center/cover no-repeat;
  filter: saturate(0.5);
}
.quote-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 64px;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.4;
  opacity: 0.4;
  display: block;
  margin-bottom: 10px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 28px;
}
.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── LANGUAGES ─── */
.lang-band {
  background: #C4A882;
  padding: 0 64px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.lang-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 44px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
  cursor: default;
}
.lang-item:last-of-type { border-right: none; }
.lang-item:hover { background: rgba(255,255,255,0.03); }
.lang-flag { font-size: 2.2rem; }
.lang-info {}
.lang-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 3px;
}
.lang-level {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.lang-cta {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  background: rgba(184,151,90,0.08);
  border-left: 1px solid rgba(184,151,90,0.2);
}
.lang-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 18px;
}
.lang-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: gap 0.2s;
}
.lang-cta-btn::after { content: '→'; }
.lang-cta-btn:hover { gap: 14px; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--white);
  padding: 90px 64px;
  text-align: center;
}
.testi-heading { margin-bottom: 16px; }
.testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.testi-score {
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testi-stars {
  font-size: 1.4rem;
  color: #F5A623;
}
.testi-powered {
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.testi-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.testi-track-wrap {
  overflow: hidden;
  flex: 1;
}
.testi-track {
  display: flex;
  transition: transform 0.4s ease;
}
.testi-prev, .testi-next {
  background: none;
  border: 2px solid #9B6CC4;
  color: #9B6CC4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.testi-prev:hover, .testi-next:hover { background: #9B6CC4; color: white; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D5C4E8;
  cursor: pointer;
  transition: background 0.2s;
}
.testi-dot.active { background: #9B6CC4; }
.testi-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testi-stars-sm { color: #F5A623; font-size: 1rem; }
.testi-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--charcoal);
  flex: 1;
}
.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.testi-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

/* ─── WORKSHOPS ─── */
.workshops {
  background: #F7F3ED;
  padding: 80px 64px;
}
.workshops-header {
  text-align: center;
  margin-bottom: 56px;
}
.workshops-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #C4A04A;
  text-transform: uppercase;
}
.workshops-title em {
  font-style: normal;
  color: #C4A04A;
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.workshop-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.workshop-img-wrap {
  border: 2px solid #C4A04A;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #E8E0D5;
}
.workshop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-info {
  text-align: center;
  padding: 0 4px;
}
.workshop-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
}
.workshop-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
/* Workshop popup modal */
.workshop-card--popup { cursor: pointer; }
.wmodal-wrap {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wmodal-wrap.open { display: flex; }
.wmodal {
  background: #fff;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: wmodal-in 0.3s ease;
}
@keyframes wmodal-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wmodal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}
.wmodal-close:hover { color: var(--charcoal); }
.wmodal-img { width: 100%; height: 240px; overflow: hidden; border-radius: 16px 16px 0 0; }
.wmodal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wmodal-body { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.wmodal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  padding-right: 24px;
}
.wmodal-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.wmodal-leaders { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid #eee; padding-top: 16px; }
.wmodal-leaders-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9B6CC4;
  margin-bottom: 4px;
}
.wmodal-leader {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
}
.wmodal-next { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid #eee; padding-top: 18px; }
.wmodal-next-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A04A;
}
.wmodal-next-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.workshop-card--expandable { cursor: pointer; }
.workshop-expand-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(196,160,74,0.88);
  color: #fff;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.workshop-img-wrap { position: relative; }
.workshop-card--expandable:hover .workshop-expand-hint { opacity: 0.8; }
.workshop-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.workshop-card--expandable.open .workshop-panel {
  max-height: 400px;
}
.workshop-card--expandable.open .workshop-expand-hint {
  display: none;
}
.workshop-panel-inner {
  background: #fff;
  border: 1.5px solid #C4A04A;
  border-radius: 12px;
  padding: 20px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.workshop-panel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
}
.workshop-panel-next { display: flex; flex-direction: column; gap: 6px; }
.workshop-panel-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A04A;
}
.workshop-panel-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.workshop-panel-btn {
  display: inline-block;
  background: #9B6CC4;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.workshop-panel-btn:hover { background: #5B2D8E; }

@media (max-width: 900px) {
  .workshops-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .workshops { padding: 56px 24px; }
  .workshops-grid { grid-template-columns: 1fr; }
}

/* ─── PRESS ─── */
.press-section {
  background: var(--cream);
  padding: 96px 64px;
}
.press-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.press-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,26,23,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,26,23,0.13);
}
.press-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.press-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.press-card:hover .press-img-wrap img {
  transform: scale(1.04);
}
.press-img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8dff5, #d5c6e8);
}
.press-placeholder-icon {
  font-size: 3rem;
  color: #9B6CC4;
  opacity: 0.5;
}
.press-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.press-badge--tv   { background: #9B6CC4; color: #fff; }
.press-badge--pod  { background: var(--gold); color: #fff; }
.press-badge--conf { background: var(--green); color: #fff; }
.press-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.press-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.press-meta {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 500;
}
.press-desc {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
  flex: 1;
}
.press-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 18px;
  border-radius: 24px;
  background: #9B6CC4;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.press-cta:hover {
  background: #7a52a0;
  transform: translateX(2px);
}
@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .press-section { padding: 64px 20px; }
  .press-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT ─── */
.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-left {
  background: url('../assets/contact-bg.jpeg') center center / cover no-repeat;
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(155, 108, 196, 0.45);
  z-index: 0;
}
.contact-left::after {
  display: none;
}
.contact-left > * {
  position: relative;
  z-index: 1;
}
.contact-left .section-label { color: var(--gold-light); }
.contact-left .section-label::before { background: var(--gold-light); }
.contact-left .section-heading { color: var(--charcoal); margin-bottom: 50px; }
.contact-left .section-heading em { color: var(--gold-light); }
.c-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.c-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.c-label {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.c-value {
  color: var(--charcoal);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.c-value:hover { color: var(--gold-light); }
.c-avail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.c-avail-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-avail-mode {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.c-avail-slot {
  font-size: 0.9rem;
  color: var(--charcoal);
}
.c-socials {
  display: flex;
  gap: 10px;
  margin-top: 44px;
}
.c-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 500;
  transition: all 0.2s;
}
.c-social:hover { background: var(--gold); color: white; }
.contact-right { padding: 100px 64px; }
.contact-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 36px;
  color: var(--charcoal);
}
.fg { margin-bottom: 20px; }
.fg label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 7px;
  font-weight: 500;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: #E0D5C5;
  border: 1px solid #C8BAA5;
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.22s;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { resize: vertical; min-height: 118px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fsub {
  background: #9B6CC4;
  color: white;
  border: none;
  padding: 15px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.22s, transform 0.22s;
  margin-top: 6px;
}
.fsub:hover { background: #5B2D8E; transform: translateY(-2px); }
.fsub:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form validation error */
.form-error {
  background: rgba(193,105,58,0.1);
  border: 1px solid rgba(193,105,58,0.4);
  color: var(--terracotta);
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
  display: none;
}
.form-error.visible { display: block; }

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 56px 0;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.4rem;
}
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.c-social--zl { font-size: 0.58rem; }
.fsub--full { width: 100%; margin-top: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 44px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* ─── NOTIFY MODAL ─── */
.modal-wrap {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  align-items: center; justify-content: center;
  background: rgba(20,18,15,0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.modal-wrap.open { display: flex; }
.modal {
  background: var(--white);
  padding: 56px;
  max-width: 460px;
  width: 90%;
  border-radius: 4px;
  position: relative;
  animation: slideUp 0.3s ease;
}
.modal-x {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--warm-gray); line-height: 1;
}
.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 10px;
}
.modal p {
  font-size: 0.88rem; color: var(--warm-gray);
  line-height: 1.7; margin-bottom: 26px;
}
.modal input {
  width: 100%; background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px; padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--charcoal);
  margin-bottom: 12px; outline: none;
  transition: border-color 0.2s;
}
.modal input:focus { border-color: var(--green); }

/* ─── ANIMATIONS ─── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0.8; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 0.8; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  section, .services { padding: 72px 28px; }
  .hero-content { padding: 0 28px 60px; flex-direction: column; align-items: flex-start; gap: 36px; }
  .hero-right { flex-direction: row; gap: 28px; }
  .about { grid-template-columns: 1fr; gap: 48px; padding: 72px 28px; }
  .books-header, .books-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 130px 1fr; }
  .services-top { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-strip { grid-template-columns: 1fr; padding: 0; }
  .lang-band { flex-direction: column; padding: 0; }
  .lang-item, .lang-cta { padding: 28px 28px; border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 64px 28px; }
  .footer { padding: 28px; flex-direction: column; text-align: center; }
  .books-header { margin-bottom: 36px; }
}
