/* ============================================================
   DARIAMHAPPY.COM — Shared Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,600&family=Spline+Sans:wght@300;400;500&family=Caveat:wght@400;500&display=swap');

/* ── Design Tokens ── */
:root {
  --greygreen-deep:  #7A8F6E;
  --greygreen:       #8A9268;
  --greygreen-mid:   #AAAC82;
  --greygreen-pale:  #C8CA9E;
  --bg-base:         #EDEAE0;
  --bg-soft:         #E4E0D4;
  --bg-mist:         #F4F2EC;
  --sienna-deep:     #8B3A22;
  --sienna:          #C4661F;
  --sienna-mid:      #CE8060;
  --sienna-light:    #E8BFA8;
  --olive:           #6B6B24;
  --olive-mid:       #9A9A46;
  --olive-light:     #D8D8A8;
  --text-dark:       #1E1E10;
  --text-mid:        #5C5C40;
  --text-light:      #F0EDE6;
  --font-display:    'Fraunces', Georgia, serif;
  --font-body:       'Spline Sans', system-ui, sans-serif;
  --container:       1200px;
  --pad-h:           48px;
  --section-pad:     120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--bg-base);
  overflow-x: hidden;
}

/* ── Grain Texture Overlay (hero only) ── */

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; font-style: normal; line-height: 1.1; }

.display-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  display: block;
  margin-bottom: 20px;
}

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sienna);
  color: var(--text-light);
}
.btn-primary:hover {
  background: var(--sienna-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 62, 30, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--greygreen-pale);
}
.btn-outline:hover {
  background: rgba(200,217,214,0.12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--sienna);
  border: 1px solid var(--sienna);
}
.btn-ghost:hover {
  background: var(--sienna);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ── Text link hover ── */
.text-link {
  color: var(--sienna);
  text-decoration: none;
  position: relative;
  font-weight: 400;
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sienna);
  transition: width 0.3s ease;
}
.text-link:hover::after { width: 100%; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 24px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.scrolled {
  background: var(--greygreen-deep);
}
.nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(210,205,80,0.22) 0%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
  z-index: 0;
}
.nav.scrolled::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}
.nav.scrolled .nav-wrap {
  padding: 16px var(--pad-h);
  position: relative;
  z-index: 1;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text-light);
  transition: color 0.3s ease;
}
.nav-logo .logo-mark {
  display: block;
  height: 80px;
  width: auto;
  aspect-ratio: 640 / 348;
  background-color: currentColor;
  -webkit-mask-image: url('assets/images/logo-dariamhappy.png');
  mask-image: url('assets/images/logo-dariamhappy.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav:not(.scrolled) .nav-links a { color: var(--text-light); }
.nav.scrolled .nav-links a      { color: var(--text-light); }
.nav-light:not(.scrolled) .nav-logo { color: var(--sienna); }
.nav-light:not(.scrolled) .nav-links a { color: var(--text-dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.lang-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.lang-btn:hover::after { width: 100%; }
.nav-light:not(.scrolled) .lang-btn { color: var(--text-dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sienna);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 12px 24px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--greygreen-deep);
  background-image:
    radial-gradient(ellipse at 45% 40%, rgba(210,205,80,0.22) 0%, rgba(0,0,0,0.32) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 201px 201px;
  background-attachment: local, local;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 120px var(--pad-h) 60px;
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > * { position: relative; z-index: 1; }

/* When menu is open — logo and hamburger X go light */
.nav.menu-open .nav-logo { color: var(--text-light) !important; pointer-events: none; }
.nav-hamburger.active span { background: var(--text-light) !important; }

/* Français link inside mobile menu */
.mobile-menu .lang-btn {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light) !important;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  order: 2;
  align-self: center;
  margin-top: 32px;
  margin-bottom: 0;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 1;
  margin-top: auto;
  margin-bottom: auto;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: 52px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.mobile-menu-links a:hover { opacity: 1; color: var(--sienna-light); }
.mobile-menu-links .mobile-cta-link { color: var(--text-light); opacity: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
/* ================================================================
   FOOTER — Aurora style
   ================================================================ */
.footer {
  background: var(--bg-soft);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--pad-h) 48px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  color: var(--sienna);
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: var(--sienna-deep);
  opacity: 0.8;
}
.footer-address {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  text-align: right;
}
.footer-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sienna);
  transition: width 0.3s ease;
}
.footer-links a:hover { color: var(--sienna-deep); }
.footer-links a:hover::after { width: 100%; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  margin-left: -10px;
  color: var(--sienna);
}
.footer-logo .logo-mark {
  display: block;
  height: clamp(72px, 9vw, 110px);
  width: auto;
  aspect-ratio: 640 / 348;
  background-color: currentColor;
  -webkit-mask-image: url('assets/images/logo-dariamhappy.png');
  mask-image: url('assets/images/logo-dariamhappy.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin: 0;
}

.bridge-cta-wrap {
  margin-top: 40px;
  margin-left: 56px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-align: left;
  margin-top: 24px;
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-strip {
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-strip--dark { background: var(--greygreen-deep); }
.marquee-strip--sienna { background: var(--sienna); }

.marquee-inner {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}

.marquee-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-right: 0;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================================
   HERO — SHARED
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--greygreen-deep);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 45% 40%, rgba(210,205,80,0.25) 0%, rgba(0,0,0,0.35) 100%);
  background-repeat: repeat, no-repeat;
  background-size: 201px 201px, cover;
}
/* Light hero variant (homepage) */
.hero-light::before { opacity: 0; }
.hero-light .hero-label { color: var(--sienna); }
.hero-light .hero-h1   { color: var(--text-dark); }
.hero-light .hero-sub  { color: var(--text-mid); }

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-content { padding: 80px 60px 60px 0; }

/* ── Two-column hero layout ── */
.hero-photo-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.hero-circle {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--sienna);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-cutout {
  position: relative;
  z-index: 1;
  height: 72vh;
  width: auto;
  display: block;
  max-height: 600px;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--greygreen-pale);
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0s forwards;
}

.hero-h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0.15s forwards;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 440px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0.3s forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0.45s forwards;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image::before { display: none; }
.hero-image::after  { display: none; }

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Classes page photo strip */
.classes-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-strip-item {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 2px;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(77, 99, 88, 0.22);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.04); }
.photo-strip-item:hover::after { opacity: 0.5; }

/* Classes page hero */
.classes-hero {
  background: var(--greygreen-deep);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.classes-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 40%, rgba(210,205,80,0.25) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 0;
}
.classes-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}
.classes-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  position: relative;
  z-index: 1;
}
.classes-hero h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 46px);
  color: var(--text-light);
  line-height: 1.15;
  margin-top: 12px;
}

/* Sub-page hero (shorter) */
.hero-sub-page {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-sub-page .hero-inner { min-height: 60vh; grid-template-columns: 1fr; }
.hero-sub-page .hero-content { max-width: 700px; padding: 120px 0 40px; }
.hero-sub-page .hero-image { width: 100%; opacity: 0.25; }

/* ================================================================
   SECTION — SHARED PATTERNS
   ================================================================ */
.section { padding: var(--section-pad) 0; }
.section-bg-base { background: var(--bg-base); }
.section-bg-soft { background: var(--bg-soft); }
.section-bg-mist { background: var(--bg-mist); }
.section-bg-dark {
  background: var(--greygreen-deep);
  color: var(--text-light);
}
.section-bg-green {
  background: var(--greygreen);
  color: var(--text-light);
}

.section-header { margin-bottom: 64px; }
.section-header .display-label { margin-bottom: 12px; }

/* ================================================================
   VIDEO EMBED (responsive 16:9)
   ================================================================ */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 48px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,30,16,0.16);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(46,74,68,0.1);
}

.pricing-card.featured {
  background: var(--greygreen-deep);
  border-color: var(--greygreen-deep);
  color: var(--text-light);
  box-shadow: 0 16px 48px rgba(46,74,68,0.2);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(210,205,80,0.25) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 0;
}
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}
.pricing-card.featured > * { position: relative; z-index: 1; }
.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(46,74,68,0.3);
}

.pricing-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
}
.pricing-card.featured .pricing-tag { color: var(--greygreen-pale); }

.pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-dark);
}
.pricing-card.featured h3 { color: var(--text-light); }

.pricing-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--sienna);
  line-height: 1;
}

.pricing-card.featured .pricing-price { color: var(--greygreen-pale); }

.pricing-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  flex-grow: 1;
}
.pricing-card.featured .pricing-desc { color: var(--text-light); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.classes-testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-card {
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  padding: 48px 44px 40px;
  position: relative;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  color: var(--sienna);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
  opacity: 0.55;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--greygreen);
}

/* ================================================================
   SOUND FAMILIAR SECTION
   ================================================================ */
.sound-familiar-section {
  position: relative;
  overflow: hidden;
}

.bg-word {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(120px, 17vw, 200px);
  color: var(--greygreen-pale);
  opacity: 0.14;
  top: 50%;
  transform: translateY(-50%);
  left: -2%;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.bg-word--right {
  left: auto;
  right: -2%;
}

.bg-word--light {
  color: var(--sienna-light);
}

.sound-familiar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.sf-card {
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.35s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.sf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,74,68,0.1);
  border-color: var(--sienna-light);
}

.sf-card-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--greygreen-pale);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.sf-card-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 0;
}

.sf-card-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sienna-deep);
  font-style: italic;
  margin-top: 0;
}

.sf-card:hover .sf-card-reveal {
  max-height: 80px;
  opacity: 1;
  margin-top: 16px;
}

/* ================================================================
   HANDWRITTEN BRIDGE
   ================================================================ */
.bridge-para {
  font-family: 'Caveat', cursive;
  font-size: 23px;
  line-height: 1.9;
  color: var(--text-dark);
  max-width: 640px;
  margin: 56px 0 0 56px;
  padding-left: 28px;
  border-left: 2px solid var(--sienna-light);
  position: relative;
  z-index: 1;
}

/* ================================================================
   ABOUT SECTION — HOMEPAGE
   ================================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.about-image-panel {
  background: var(--bg-soft);
  overflow: hidden;
  width: 75%;
}

.about-image-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text-panel {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-panel h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--text-dark);
  margin-bottom: 28px;
}

.about-text-panel p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ================================================================
   CTA BANNER (FINAL)
   ================================================================ */
.cta-banner {
  background: var(--greygreen-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--section-pad) 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 40%, rgba(210,205,80,0.25) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}

.cta-banner .bg-word {
  color: var(--sienna-light);
  opacity: 0.12;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 18vw, 220px);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 44px;
}

/* ================================================================
   STEP FLOW
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.step {
  text-align: left;
  padding: 40px 0;
  border-top: 1px solid var(--greygreen-pale);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  color: var(--greygreen-pale);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.step p { color: var(--text-mid); font-size: 16px; }

/* ================================================================
   IS THIS FOR YOU
   ================================================================ */
.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.for-you-col h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 28px;
}

.for-you-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.for-you-col li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
}

.for-you-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--greygreen-mid);
}

.for-you-col.not li::before {
  content: '✕';
  background: none;
  color: var(--sienna);
  font-size: 12px;
  font-weight: 600;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 4px;
}

/* ================================================================
   BLOG GRID
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.blog-card {
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,74,68,0.1);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--greygreen-mid) 0%, var(--greygreen-deep) 100%);
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(122,158,151,0.6) 0%, transparent 60%);
}

.blog-coming-soon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(46,74,68,0.7);
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.blog-card-body { padding: 28px 28px 32px; }

.blog-cat {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  display: block;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-info p { color: var(--text-mid); margin-bottom: 40px; }

.contact-detail-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 16px;
  display: block;
}

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-details li {
  font-size: 16px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-details a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.contact-details a:hover { color: var(--sienna); }

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sienna-mid);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  color: var(--text-dark);
  margin-bottom: 36px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.form-group label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--greygreen-mid);
  box-shadow: 0 0 0 3px rgba(122,158,151,0.12);
}

.form-message {
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 15px;
  margin-top: 16px;
  display: none;
}
.form-message.success {
  background: rgba(61,74,46,0.1);
  border: 1px solid var(--greygreen-mid);
  color: var(--greygreen-deep);
  display: block;
}
.form-message.error {
  background: rgba(193,98,47,0.1);
  border: 1px solid var(--sienna-mid);
  color: var(--sienna-deep);
  display: block;
}

/* ================================================================
   ABOUT PAGE PHOTO
   ================================================================ */
.about-page-photo {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.about-page-photo img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-opening {
  padding: var(--section-pad) 0;
  background: var(--bg-base);
}

.about-opening-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.about-opening h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.about-opening p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 680px;
}

.story-section {
  background: var(--bg-soft);
  padding: var(--section-pad) 0;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.story-inner h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--text-dark);
  margin-bottom: 48px;
}

.story-inner p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  color: var(--text-dark);
  border-left: 3px solid var(--sienna);
  padding-left: 32px;
  margin: 56px 0;
}

/* ================================================================
   BOOKING SECTION
   ================================================================ */
.booking-section {
  background: var(--bg-mist);
  border: 1px solid var(--greygreen-pale);
  border-radius: 2px;
  padding: 48px;
  margin-top: 48px;
}

.booking-section p {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
  font-style: italic;
}

.booking-scroll-wrap {
  height: 800px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 2px;
}
.booking-scroll-wrap iframe {
  width: 100%;
  height: 1200px;
  border: none;
  display: block;
}

/* ================================================================
   WHAT HAPPENS IN CLASS
   ================================================================ */
.class-arc {
  background: var(--greygreen);
  color: var(--text-light);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.class-arc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(210,205,80,0.14) 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 0;
}
.class-arc::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}
.class-arc .container { position: relative; z-index: 1; }

.class-arc .container { max-width: 760px; }

.class-arc h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--text-light);
  margin-bottom: 40px;
}

.class-arc p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}
.arc-visual {
  margin: 48px auto 32px;
  width: 100%;
}
.arc-svg {
  width: 100%;
  height: auto;
  display: block;
}
.arc-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.arc-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  padding: 0 4px;
}
.arc-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,202,158,0.9);
}
.arc-dur {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(200,202,158,0.5);
}
.arc-label--peak .arc-name { color: rgba(200,202,158,0.9); }
.arc-label--peak .arc-dur  { color: rgba(200,202,158,0.5); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1099px) {
  :root { --section-pad: 80px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { width: 100%; opacity: 0.18; }
  .hero-content { padding: 120px 0 80px; max-width: 680px; }

  .pricing-grid { gap: 16px; }
  .pricing-card { padding: 36px 28px; }

  .about-split { grid-template-columns: 1fr 1fr; }
  .about-text-panel { padding: 60px 48px; }

  .contact-grid { gap: 48px; }

  .for-you-grid { gap: 40px; }

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

@media (max-width: 767px) {
  :root { --section-pad: 64px; --pad-h: 24px; }

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .nav { padding: 0; }
  .nav.scrolled { padding: 0; }
  .nav-hamburger {
    display: flex;
    position: absolute;
    right: var(--pad-h);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  /* Sienna hamburger on light (non-scrolled) nav */
  .nav-light:not(.scrolled) .nav-hamburger span { background: var(--sienna); }

  /* ── Home hero ── */
  .hero {
    height: auto;
    min-height: 100vh;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 100vh;
    align-items: end;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-content {
    padding: 130px 0 40px;
    max-width: 100%;
  }
  .hero-h1 { font-size: clamp(28px, 7vw, 48px); }
  .hero-sub { max-width: 100%; font-size: 17px; }
  /* Option A — photo below text, with circle */
  .hero-photo-area {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 48px;
    position: relative;
  }
  .hero-circle {
    display: block;
    width: 280px;
    height: 280px;
  }
  .hero-cutout {
    height: 42vh;
    max-height: 340px;
    width: auto;
    opacity: 1;
  }
  .hero-content { padding-bottom: 0; }
  .hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.35;
  }
  .hero-image::after { display: none; }

  /* ── Sound familiar ── */
  .sound-familiar-grid { grid-template-columns: 1fr; }
  .bridge-para { margin-left: 0; margin-top: 40px; }
  .bg-word { font-size: 80px; opacity: 0.08; }

  /* ── Pricing ── */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* ── About section (home page) ── */
  .about-split { grid-template-columns: 1fr; padding: 0 var(--pad-h); }
  .about-image-panel { width: 100%; }
  .about-image-panel img { width: 100%; }
  .about-text-panel { padding: 48px 0; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }
  .classes-testimonials-grid { grid-template-columns: 1fr; }

  /* ── Steps / For you ── */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 32px 0; }
  .for-you-grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Blog ── */
  .blog-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }

  /* ── Mobile menu ── */
  .mobile-menu-links a { font-size: 38px; }

  /* ── About page ── */
  .about-opening h2 { font-size: clamp(30px, 8vw, 48px); }
  .about-opening p { font-size: 18px; }
  .about-page-hero-inner {
    grid-template-columns: 1fr;
    padding: 110px var(--pad-h) 0;
  }
  .about-hero-photo-frame {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
  }
  .about-hero-photo-frame img {
    width: 75%;
    height: 45vh;
    max-height: 360px;
  }

  /* ── Classes ── */
  .classes-photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { height: 420px; }
  .arc-label { padding: 0 2px; }
  .arc-name { font-size: 9px; }
  .arc-dur { font-size: 9px; }

  /* ── Booking ── */
  .booking-section { padding: 28px 20px; }
  .booking-section iframe { height: 900px; }

  /* ── Footer ── */
  .footer-inner { gap: 40px; }
  .footer-links { align-items: center; }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  /* Socials + address first, then brand */
  .footer-brand { order: 2; align-items: center; text-align: center; }
  .footer-logo { margin-left: 0; }
  .footer-right { order: 1; align-items: center; }
  .footer-address { text-align: center; }
  .footer-copyright { text-align: center; }

  /* ── Language switcher (in mobile menu instead) ── */
  .lang-switcher { display: none; }
}

/* ================================================================
   UPCOMING EVENTS (homepage — only rendered when events exist)
   ================================================================ */
.events-section {
  background: var(--greygreen-deep);
  position: relative;
  overflow: hidden;
}
.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 40%, rgba(210,205,80,0.22) 0%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
  z-index: 0;
}
.events-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 201px 201px;
  pointer-events: none;
  z-index: 0;
}
.events-section .container { position: relative; z-index: 1; }
.events-section .display-label { color: var(--sienna-light); }
.events-section .section-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--text-light);
}
.events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.event-card {
  display: flex;
  flex-direction: column;
  background: rgba(240, 237, 230, 0.07);
  border: 1px solid rgba(240, 237, 230, 0.16);
  overflow: hidden;
}
.event-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-soft);
  padding: 8px 14px;
  text-align: center;
}
.event-date-day {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: var(--text-dark);
}
.event-date-month {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-top: 2px;
}
.event-card--no-image .event-date-badge {
  position: static;
  align-self: flex-start;
  margin: 28px 28px 0;
  background: rgba(240, 237, 230, 0.12);
}
.event-card--no-image .event-date-day { color: var(--text-light); }
.event-card--no-image .event-date-month { color: var(--sienna-light); }
.event-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px 28px;
}
.event-date-line {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna-light);
  margin-bottom: 10px;
}
.event-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 10px;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-light);
  opacity: 0.78;
}
.event-desc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
  opacity: 0.82;
}
.event-price {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna-light);
}
.event-cta {
  margin-top: auto;
  padding-top: 20px;
}
.event-cta .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {
  .events-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .events-list { grid-template-columns: 1fr; gap: 16px; }
  .event-info { padding: 20px 24px 24px; }
  .event-info h3 { font-size: 22px; }
}
