/* ============ ALLA TANGO — CRYSTAL CAVE + LAVENDER ============ */
:root {
  /* Dark (crystal cave) */
  --cave-deep: #060819;
  --cave-navy: #0B183E;
  --cave-purple: #330E53;
  --cave-berry: #1B0516;
  /* Lavender (body) */
  --lav: #EDE8F4;
  --lav-light: #F0ECF6;
  --lav-warm: #E8E4F4;
  --card-bg: #FFFFFF;
  --card-bg-tint: #F8F4FF;
  /* Accent */
  --teal: #0B9FBD;
  --teal-bright: #0FC5E8;
  --teal-deep: #025067;
  --magenta: #B31B6F;
  --magenta-light: #D4308A;
  --purple: #7114AC;
  --purple-soft: #B37BC6;
  --purple-dark: #330E53;
  /* Text */
  --text-on-dark: #F2EFF8;
  --text-on-dark-muted: rgba(179,123,198,0.5);
  --text-on-light: #1B0516;
  --text-on-light-sub: #6B6578;
  --text-on-light-muted: #9A95A8;
  /* Compat aliases (so old HTML still works) */
  --cream: var(--lav);
  --cream-light: var(--lav-light);
  --burgundy: var(--magenta);
  --burgundy-deep: var(--purple-dark);
  --burgundy-light: var(--magenta-light);
  --gold: var(--teal);
  --gold-soft: var(--teal-bright);
  --charcoal: var(--text-on-light);
  --warm-gray: var(--text-on-light-sub);
  --warm-gray-light: var(--text-on-light-muted);
  --wood: var(--teal-deep);
  --wood-light: var(--purple-soft);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--lav);
  color: var(--text-on-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0.9rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(90deg, var(--cave-deep), var(--cave-berry));
}
nav.scrolled, nav.solid {
  background: linear-gradient(90deg, var(--cave-deep), var(--cave-berry));
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(6,8,25,0.5);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--teal-bright); text-decoration: none;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand img { height: 36px; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links li + li::before {
  content: '·';
  color: rgba(179,123,198,0.25);
  font-size: 0.9rem;
  padding: 0 1rem;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(242,239,248,0.45); text-decoration: none;
  position: relative; transition: color 0.3s;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--teal-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal-bright); }
.nav-links a.active::after { width: 100%; }

.lang-switch {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.12em;
  display: flex; gap: 0.3rem; align-items: center;
  margin-left: 0.8rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(11,159,189,0.15);
}
.lang-switch a {
  color: rgba(242,239,248,0.3); text-decoration: none;
  padding: 0.2rem 0.35rem; border-radius: 2px;
  transition: all 0.3s;
}
.lang-switch a.active { color: var(--teal-bright); background: rgba(11,159,189,0.1); }
.lang-switch a:hover { color: var(--teal-bright); }
.lang-switch span { color: rgba(242,239,248,0.15); font-size: 0.55rem; }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--teal); margin: 5px 0; transition: 0.3s;
}

/* ============ SHARED TYPOGRAPHY ============ */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.35em;
  background: linear-gradient(90deg, var(--teal-deep), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--text-on-light);
  margin-bottom: 1.5rem; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--purple-dark); }
.divider {
  width: 60px; height: 1.5px; border-radius: 1px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  margin-bottom: 2.5rem;
}
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 7rem 2rem; }

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.9rem 2.4rem; text-decoration: none;
  border-radius: 3px; transition: all 0.35s ease;
  cursor: pointer; border: none; display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(113,20,172,0.3);
}
.btn-outline {
  background: transparent; color: var(--teal-deep);
  border: 1px solid rgba(2,80,103,0.25);
}
.btn-outline:hover {
  background: var(--teal-deep); color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff; font-weight: 500;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,159,189,0.3);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  position: relative;
  background: linear-gradient(160deg, var(--cave-deep) 0%, var(--cave-navy) 25%, var(--cave-purple) 55%, var(--cave-berry) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,159,189,0.08) 0%, transparent 65%);
  animation: float 12s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(113,20,172,0.1) 0%, transparent 65%);
  animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 2rem; }
.hero .label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--purple); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--text-on-dark);
  line-height: 1.15; margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--teal-bright), var(--purple-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem; color: var(--text-on-dark-muted);
  max-width: 500px; margin: 0 auto 2rem;
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--cave-deep) 0%, var(--cave-navy) 30%, var(--cave-purple) 65%, var(--cave-berry) 100%);
}
.page-header .label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--purple); margin-bottom: 1.2rem;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--text-on-dark);
  line-height: 1.2; margin-bottom: 1rem;
}
.page-header h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--teal-bright), var(--purple-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-header p {
  font-size: 1.15rem; color: var(--text-on-dark-muted);
  max-width: 600px; margin: 0 auto;
}

/* ============ LAVENDER SECTIONS ============ */
section[style*="background:var(--cream)"],
section[style*="background: var(--cream)"] {
  background: linear-gradient(160deg, var(--lav) 0%, var(--lav-warm) 100%) !important;
}

/* ============ CLASS CARDS ============ */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.class-card {
  background: linear-gradient(145deg, var(--card-bg), var(--card-bg-tint));
  border: 1px solid rgba(113,20,172,0.08);
  border-radius: 4px; padding: 2rem;
  transition: all 0.4s ease;
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(113,20,172,0.08);
}
.class-level {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--purple);
  margin-bottom: 0.5rem;
}
.class-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--text-on-light); margin-bottom: 0.8rem;
}
.class-desc {
  font-size: 1.05rem; color: var(--text-on-light-sub);
  line-height: 1.8; margin-bottom: 1rem;
}
.class-detail {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; display: flex; gap: 0.5rem;
  margin-bottom: 0.4rem; color: var(--text-on-light-sub);
}
.class-detail span:first-child {
  color: var(--teal-deep); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.65rem;
  min-width: 60px;
}
.class-detail strong { color: var(--text-on-light); }

/* ============ ABOUT ============ */
.about { padding: 7rem 2rem; background: linear-gradient(160deg, var(--lav), var(--lav-warm)); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.about-image-frame {
  border-radius: 3px; overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal-deep), var(--cave-purple));
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 1.1rem; color: var(--text-on-light-sub);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.about-text p a { color: var(--teal-deep); }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--teal); }
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-on-light-muted);
}

/* ============ DJ SECTIONS (dark) ============ */
.dj-section {
  background: linear-gradient(160deg, var(--cave-deep) 0%, var(--cave-navy) 35%, var(--cave-purple) 100%);
  padding: 7rem 2rem;
}
.dj-section .section-label {
  background: none; -webkit-text-fill-color: var(--purple);
}
.dj-section .section-title { color: var(--text-on-dark); }
.dj-section .section-title em {
  background: linear-gradient(90deg, var(--teal-bright), var(--purple-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dj-section .divider {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.dj-intro { font-size: 1.1rem; color: rgba(242,239,248,0.55); line-height: 1.85; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  padding: 2rem;
  background: linear-gradient(145deg, var(--card-bg), var(--card-bg-tint));
  border: 1px solid rgba(113,20,172,0.08);
  border-left: 2px solid; border-image: linear-gradient(180deg, var(--teal), var(--purple)) 1;
  border-radius: 0 4px 4px 0;
}
.testimonial-text {
  font-size: 1.05rem; color: var(--text-on-light-sub);
  line-height: 1.8; font-style: italic;
}
.testimonial-author {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; color: var(--purple);
  margin-top: 1rem; letter-spacing: 0.05em;
}

/* ============ FAQ ============ */
details { border-bottom: 1px solid rgba(113,20,172,0.08); }
details summary {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--teal-deep); padding: 1.2rem 0;
  cursor: pointer; list-style: none;
  transition: color 0.3s;
}
details summary::-webkit-details-marker { display: none; }
details summary::before { content: '+ '; color: var(--purple); }
details[open] summary::before { content: '– '; }
details[open] summary { color: var(--purple-dark); }
details p {
  font-size: 1.05rem; color: var(--text-on-light-sub);
  line-height: 1.85; padding-bottom: 1.5rem;
}
details p a { color: var(--teal-deep); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1rem; }
.form-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--purple);
  margin-bottom: 0.4rem; display: block;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  background: linear-gradient(135deg, var(--card-bg), var(--card-bg-tint));
  border: 1px solid rgba(113,20,172,0.12);
  border-radius: 3px; color: var(--text-on-light);
  transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-on-light-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; }
.booking-form { margin-top: 2rem; }

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(90deg, var(--cave-deep), var(--cave-berry));
  padding: 3rem 2rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: rgba(179,123,198,0.3);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(11,159,189,0.35); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal-bright); }
footer p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; color: rgba(179,123,198,0.2);
  letter-spacing: 0.08em;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ INLINE LINK OVERRIDE ============ */
a[style*="color:var(--gold)"] { color: var(--teal-deep) !important; }

/* ============ PHOTO GRID & MEDIA ============ */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.photo-grid.masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
.photo-cell {
  position: relative; overflow: hidden; border-radius: 4px;
  background: linear-gradient(135deg, var(--teal-deep), var(--cave-purple));
  cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.photo-cell:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(113,20,172,0.12); }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-cell:hover img { transform: scale(1.05); }
.photo-cell.tall { grid-row: span 2; }
.photo-cell.wide { grid-column: span 2; }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,5,22,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.photo-cell:hover .photo-overlay { opacity: 1; }
.photo-caption { font-family: 'Josefin Sans', sans-serif; font-size: 0.75rem; color: var(--text-on-dark); letter-spacing: 0.08em; }
.photo-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(179,123,198,0.3);
}
.photo-placeholder svg { width: 32px; height: 32px; opacity: 0.25; stroke: var(--purple-soft); fill: none; stroke-width: 1.5; }

/* ============ VIDEO ============ */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem;
  background: linear-gradient(135deg, var(--cave-deep), var(--teal-deep)) !important;
}
.video-play-btn {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(11,159,189,0.15);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.video-play-btn:hover { background: rgba(11,159,189,0.25); transform: scale(1.08); }
.video-play-btn svg { width: 24px; height: 24px; fill: var(--teal-bright); margin-left: 3px; }
.video-label { font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--purple-soft); opacity: 0.6; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.video-card { border-radius: 4px; overflow: hidden; }
.video-card-info { padding: 1.2rem 0.2rem; }
.video-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 0.3rem; }
.video-card-meta { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; color: var(--text-on-light-muted); letter-spacing: 0.08em; }

/* ============ VISUAL SPACERS ============ */
.breather { padding: 5rem 2rem; text-align: center; background: linear-gradient(160deg, var(--lav-warm), var(--lav-light)); }
.breather-quote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic; color: var(--purple-dark);
  max-width: 700px; margin: 0 auto; line-height: 1.4;
}
.breather-attr {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-on-light-muted); margin-top: 1.2rem;
}
.visual-break { height: 300px; position: relative; background: linear-gradient(135deg, var(--teal-deep), var(--cave-purple)); overflow: hidden; }
.visual-break img { width: 100%; height: 100%; object-fit: cover; }
.visual-break-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(237,232,244,0.3), rgba(27,5,22,0.15)); }
.visual-break.full { height: 400px; }

/* ============ INSTAGRAM GRID ============ */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; }
.insta-cell {
  aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep), var(--cave-purple));
  position: relative; cursor: pointer;
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-cell:hover img { transform: scale(1.1); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(160deg, var(--cave-deep) 0%, var(--cave-purple) 30%, var(--cave-deep) 100%);
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,159,189,0.06), transparent 65%);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.newsletter-label { font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.35em; color: var(--purple-soft); margin-bottom: 1rem; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--text-on-dark); line-height: 1.3; margin-bottom: 0.8rem; }
.newsletter h2 em { font-style: italic; }
.newsletter-desc { font-size: 1.05rem; color: rgba(242,239,248,0.4); line-height: 1.75; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.6rem; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 0.85rem 1.2rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  background: rgba(11,159,189,0.07); border: 1px solid rgba(11,159,189,0.2);
  border-radius: 3px; color: var(--text-on-dark); outline: none;
}
.newsletter-input::placeholder { color: rgba(242,239,248,0.25); }
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-btn {
  font-family: 'Josefin Sans', sans-serif; font-weight: 400; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff; border: none; border-radius: 3px;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.newsletter-btn:hover { box-shadow: 0 6px 20px rgba(11,159,189,0.3); transform: translateY(-1px); }
.newsletter-privacy { font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.05em; color: rgba(242,239,248,0.2); margin-top: 1rem; }
.newsletter-success { display: none; padding: 1.5rem; background: rgba(11,159,189,0.1); border: 1px solid rgba(11,159,189,0.2); border-radius: 3px; }
.newsletter-success p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--teal-bright); }

/* ============ KEY TAKEAWAYS ============ */
.key-takeaways {
  max-width: 780px; margin: -1rem auto 0; padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(2,80,103,0.04), rgba(113,20,172,0.04));
  border: 1px solid rgba(113,20,172,0.08);
  border-radius: 4px; position: relative;
}
.key-takeaways::before {
  content: 'Key Takeaways'; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--purple); position: absolute; top: -0.5rem; left: 1.5rem;
  background: var(--lav); padding: 0 0.5rem;
}
.key-takeaways ul { list-style: none; padding: 0; margin: 0; }
.key-takeaways li {
  font-size: 1rem; color: var(--text-on-light-sub); line-height: 1.7;
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative;
}
.key-takeaways li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: bold; }

/* ============ TOPICAL CLUSTER ============ */
.cluster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.cluster-card {
  padding: 1.2rem;
  background: linear-gradient(145deg, var(--card-bg), var(--card-bg-tint));
  border: 1px solid rgba(113,20,172,0.06);
  border-radius: 4px; text-decoration: none; transition: all 0.3s; display: block;
}
.cluster-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(113,20,172,0.06); }
.cluster-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 0.3rem; }
.cluster-card-desc { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; color: var(--text-on-light-muted); letter-spacing: 0.05em; }

/* ============ SECTION-SPACIOUS ============ */
.section-spacious { padding: 8rem 2rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cave-deep); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li + li::before { display: none; }
  .nav-links a { display: block; padding: 0.8rem 1rem; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .photo-grid.masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .photo-cell.wide { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .visual-break { height: 200px; }
  .visual-break.full { height: 280px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; }
}
