/* ==========================================================================
   TASHA Events — Main Stylesheet
   Design: Editorial Magazine + Gala Night atmosphere
   Colors: Terracotta (accent) · Gold (editorial) · Deep Green (structure)
   Type: Fraunces (editorial) · Inter (UI)
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Accent — Terracotta */
  --accent:       #b04826;
  --accent-deep:  #8a3a1f;
  --accent-soft:  #f7e3d8;

  /* Gold — editorial polish */
  --gold:         #c69a2e;
  --gold-bright:  #f6d97a;
  --gold-mid:     #d4a830;
  --gold-deep:    #a8862a;
  --gold-soft:    #faf3dc;

  /* Green — trust / structure */
  --green:        #216c4a;
  --green-deep:   #1e4432;
  --green-darker: #112d22;
  --green-soft:   #e3eee7;

  /* Backgrounds — warm paper */
  --bg:           #fbf8f3;
  --bg-alt:       #f3eee2;
  --bg-dark:      #07120c;

  /* Ink */
  --ink:          #14110d;
  --ink-soft:     #5a534a;
  --rule:         #d8cfbe;
  --rule-dark:    rgba(212, 168, 48, 0.2);

  /* Gala dark backdrop */
  --gala-bg-1:    #07120c;
  --gala-bg-2:    #0a1d13;
  --gala-smoke:   rgba(46, 129, 89, 0.4);

  /* Typography */
  --font-editorial: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-ui:        'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --container-pad: 32px;
  --section-pad:   120px;
  --section-pad-m: 56px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

@media (max-width: 767px) {
  :root { --container-pad: 20px; --section-pad: var(--section-pad-m); }
}

/* --------------------------------------------------------------------------
   Gold Shimmer Text
   -------------------------------------------------------------------------- */
.gold-shimmer {
  background: linear-gradient(135deg, #f6d97a 0%, #d4a830 28%, #b58320 48%, #f4d77a 65%, #d4a830 85%, #f6d97a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer-pan 9s ease-in-out infinite;
}

@keyframes gold-shimmer-pan {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* --------------------------------------------------------------------------
   Gala Atmosphere — particles & smoke
   -------------------------------------------------------------------------- */
.gala-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fbe7a3 0%, #d4a830 50%, transparent 75%);
  pointer-events: none;
  animation: gala-twinkle ease-in-out infinite;
  filter: blur(0.3px);
}

.gala-spark {
  position: absolute;
  pointer-events: none;
  color: #f0c850;
  font-size: 12px;
  animation: gala-twinkle ease-in-out infinite, gala-drift ease-in-out infinite;
  user-select: none;
}

@keyframes gala-twinkle {
  0%, 100% { opacity: 0.05; transform: scale(0.7); }
  50%       { opacity: var(--peak, 0.85); transform: scale(1); }
}

@keyframes gala-drift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(8px, -12px); }
  100% { transform: translate(0, 0); }
}

@keyframes gala-smoke {
  0%, 100% { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
  50%       { transform: translate(20px,-10px) rotate(2deg); opacity: 0.85; }
}

/* Corner brackets for gala frames */
.gala-frame {
  position: relative;
  border: 1px solid rgba(212, 168, 48, 0.45);
}
.gala-frame::before, .gala-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212, 168, 48, 0.8);
}
.gala-frame::before { top: -7px;    left: -7px;  border-right: none; border-bottom: none; }
.gala-frame::after  { bottom: -7px; right: -7px; border-left: none;  border-top: none;   }

/* --------------------------------------------------------------------------
   Gala Section (dark)
   -------------------------------------------------------------------------- */
.gala-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50%   0%, rgba(33,108,74,.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 15%  50%, rgba(46,129,89,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85%  70%, rgba(33,108,74,.45) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(17,45,34,.7)  0%, transparent 70%),
    linear-gradient(180deg, #07120c 0%, #0a1d13 50%, #07120c 100%);
  color: #f3ebd9;
}

.gala-smoke-1 {
  position: absolute; pointer-events: none;
  top: -20%; left: -10%; width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(46,129,89,.4) 0%, transparent 60%);
  transform: rotate(-15deg);
  filter: blur(60px);
  animation: gala-smoke 14s ease-in-out infinite;
}
.gala-smoke-2 {
  position: absolute; pointer-events: none;
  top: 10%; right: -15%; width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(33,108,74,.45) 0%, transparent 65%);
  transform: rotate(20deg);
  filter: blur(80px);
  animation: gala-smoke 18s ease-in-out infinite reverse;
}
.gala-gold-streak {
  position: absolute; pointer-events: none;
  top: 30%; left: -5%; width: 110%; height: 8%;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212,168,48,.18) 30%,
    rgba(246,217,122,.32) 50%, rgba(212,168,48,.18) 70%, transparent 100%);
  transform: rotate(-8deg);
  filter: blur(20px);
}

.gala-particles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gala-inner {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Gold Ornament Divider
   -------------------------------------------------------------------------- */
.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(212, 168, 48, 0.7);
  margin: 40px 0;
}
.gold-ornament::before,
.gold-ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(212,168,48,.6), transparent);
}
.gold-ornament .diamond {
  font-size: 8px;
  color: rgba(212,168,48,.8);
}
.gold-ornament .star {
  font-size: 12px;
  color: rgba(212,168,48,.7);
}

/* --------------------------------------------------------------------------
   Typography Utilities
   -------------------------------------------------------------------------- */
.editorial { font-family: var(--font-editorial); }
.ui-font   { font-family: var(--font-ui); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: all .22s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #f6d97a 0%, #d4a830 50%, #b58320 100%);
  color: #0a1d13;
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(212,168,48,.25);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-ghost-dark {
  background: transparent;
  color: #f3ebd9;
  border: 1px solid rgba(246,217,122,.45);
}
.btn-ghost-dark:hover { border-color: rgba(246,217,122,.8); }

.btn-green {
  background: var(--green-deep);
  color: white;
  border: none;
}
.btn-green:hover { background: var(--green); transform: translateY(-1px); }

.btn-arrow {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 2px;
  font-size: 14px;
}

.btn-full { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  color: white;
  font-family: var(--font-ui);
}
.badge-networking { background: #2f9e62; }
.badge-business   { background: #2563eb; }
.badge-guide      { background: var(--accent); }
.badge-wedding    { background: var(--accent); }
.badge-private    { background: var(--gold-deep); }
.badge-corporate  { background: var(--green); }
.badge-past       { background: var(--ink-soft, #5a534a); }

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-editorial);
  text-decoration: none;
}
.site-logo__name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.site-logo__sub {
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink);
}
.site-nav a {
  font-weight: 500;
  transition: color .2s;
}
.site-nav a:hover { color: var(--accent); }

.site-header__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Language switcher from GTranslate */
.gt-lang-switcher { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-soft); }
#google_translate_element .goog-te-gadget-simple {
  border: none;
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Mobile nav */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--rule);
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
  font-size: 16px;
}
.mobile-nav.is-open { display: flex; }

@media (max-width: 1023px) {
  .site-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .site-header__btn-label { display: none; }
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — GALA HERO
   -------------------------------------------------------------------------- */
.gala-hero {
  padding: 100px 0 110px;
  min-height: 820px;
  display: flex;
  align-items: center;
}

.gala-hero__monogram {
  text-align: center;
  margin-bottom: 40px;
}

.gala-hero__brand-label {
  font-size: 11px;
  letter-spacing: 0.48em;
  color: rgba(246,217,122,.85);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
  font-family: var(--font-ui);
}

.gala-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(246,217,122,.7);
  margin-bottom: 24px;
}
.gala-hero__ornament-line {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, rgba(212,168,48,.7));
}
.gala-hero__ornament-line.r {
  background: linear-gradient(90deg, rgba(212,168,48,.7), transparent);
}

.gala-hero__strapline {
  text-align: center;
  font-family: var(--font-editorial);
  font-size: 22px;
  font-style: italic;
  color: rgba(243,235,217,.85);
  line-height: 1.4;
  margin-bottom: 36px;
}

.gala-hero__headline {
  font-family: var(--font-editorial);
  font-size: clamp(72px, 8.9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.gala-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(243,235,217,.75);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.gala-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.gala-hero__stats {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 56px;
  background: rgba(7,18,12,.4);
  backdrop-filter: blur(4px);
}

.gala-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gala-stat {
  text-align: center;
}
.gala-stat + .gala-stat {
  border-left: 1px solid rgba(212,168,48,.25);
  padding-left: 8px;
}
.gala-stat__num {
  font-family: var(--font-editorial);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  display: block;
}
.gala-stat__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,235,217,.65);
  margin-top: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .gala-hero { padding: 48px 20px 60px; min-height: auto; }
  .gala-hero__stats { padding: 28px 20px; }
  .gala-hero__stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gala-stat__num { font-size: 36px; }
  .gala-hero__headline { font-size: 52px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — SERVICES
   -------------------------------------------------------------------------- */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}

.services-header__lead {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.service-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
  margin-bottom: 16px;
}

.service-card:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.service-card:nth-child(even) .service-card__photo { order: 2; }
.service-card:nth-child(even) .service-card__body  { order: 1; }

.service-card__photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.service-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  color: white;
}

.service-card__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__index {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-card__title {
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card__copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.service-card__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.service-card__bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.service-card__bullet::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex-shrink: 0;
}

.service-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 767px) {
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(even) .service-card__photo { order: 0; }
  .service-card:nth-child(even) .service-card__body  { order: 1; }
  .service-card__photo { min-height: 240px; }
  .service-card__body  { padding: 28px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calculator-intro__headline {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 24px;
}

.calculator-intro__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.calculator-intro__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}
.calculator-intro__list svg { flex-shrink: 0; margin-top: 2px; }

.calculator-card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 6px;
}

.calculator-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calculator-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.calculator-card__live-tag {
  font-size: 11px;
  color: var(--ink-soft);
}

.calculator-estimate {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.calculator-estimate__desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.calc-row {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.calc-row__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.calc-row__field-name {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.calc-row__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.calc-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-soft);
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font-ui);
}
.calc-chip:hover { border-color: var(--accent); color: var(--accent); }
.calc-chip.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 600;
}

.calc-slider-track {
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  position: relative;
}

.calc-slider-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width .2s;
}

.calc-slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-alt);
  transition: left .2s;
}

.calc-slider-input {
  position: absolute;
  inset: -6px 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: calc(100% + 12px);
  -webkit-appearance: none;
}

.calculator-card__footer {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.calculator-card__disclaimer {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.5;
  font-style: italic;
  font-family: var(--font-editorial);
}

@media (max-width: 767px) {
  .calculator-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — HOW WE WORK
   -------------------------------------------------------------------------- */
.how-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.how-steps { display: flex; flex-direction: column; }

.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.how-step:last-child { border-bottom: none; }

.how-step__num {
  font-family: var(--font-editorial);
  font-size: 32px;
  color: var(--gold-deep);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.how-step__title {
  font-family: var(--font-editorial);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 8px;
}

.how-step__body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — GALA STATS
   -------------------------------------------------------------------------- */
.gala-stats {
  padding: var(--section-pad) 0;
}

.gala-stats__header {
  text-align: center;
  margin-bottom: 64px;
}

.gala-stats__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246,217,122,.85);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 16px;
}

.gala-stats__headline {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.gala-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gala-stat-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(7,18,12,.35);
}

.gala-stat-card__num {
  font-family: var(--font-editorial);
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  display: block;
}

.gala-stat-card__divider {
  width: 24px;
  height: 1px;
  background: rgba(212,168,48,.5);
  margin: 16px auto;
}

.gala-stat-card__label {
  font-size: 11px;
  color: rgba(243,235,217,.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .gala-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gala-stats__header { margin-bottom: 32px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — FOUNDER
   -------------------------------------------------------------------------- */
.founder-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.founder-photo {
  height: 540px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.founder-quote {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 32px;
}

.founder-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.founder-byline__rule {
  width: 56px;
  height: 1px;
  background: var(--accent);
}

@media (max-width: 767px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { height: 380px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — THREE PATHS
   -------------------------------------------------------------------------- */
.paths-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.path-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.path-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.path-card__num {
  font-family: var(--font-editorial);
  font-size: 32px;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.path-card__meta {
  text-align: right;
}

.path-card__hint {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.path-card__meta-detail {
  font-size: 13px;
  color: var(--ink);
  margin-top: 4px;
  font-weight: 600;
}

.path-card__title {
  font-family: var(--font-editorial);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 16px;
}

.path-card__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 32px;
}

.path-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.path-card__cta-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.path-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .paths-grid { grid-template-columns: 1fr; }
  .path-card { min-height: auto; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — EVENTS STRIP
   -------------------------------------------------------------------------- */
.events-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card__photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.event-card__date {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.event-card__title {
  font-family: var(--font-editorial);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 12px;
  flex: 1;
}

.event-card__venue {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.event-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.event-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.event-card__reserve {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.event-card__reserve:hover { color: var(--accent-deep); }

@media (max-width: 1023px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .events-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   HOMEPAGE — FEATURED PRODUCT
   -------------------------------------------------------------------------- */
.featured-product-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.featured-product-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-product__book-mockup {
  height: 520px;
  background: var(--accent-soft);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.featured-product__book-inner {
  width: 70%;
  height: 85%;
  background: var(--bg);
  box-shadow: 0 30px 80px rgba(20,17,13,.18), 0 8px 24px rgba(20,17,13,.1);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-2deg);
}

.featured-product__actions { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }

@media (max-width: 767px) {
  .featured-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-product__book-mockup { height: 360px; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.testimonial blockquote {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.testimonial figcaption .rule { width: 32px; height: 1px; background: var(--accent); }

@media (max-width: 767px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE — PARTNERS
   -------------------------------------------------------------------------- */
.partners-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.partners-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}

.partner-card {
  background: var(--bg);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.partner-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.partner-card__kind {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
}

.partner-card__since {
  font-family: var(--font-editorial);
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

.partner-card__name {
  font-family: var(--font-editorial);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 8px;
}

.partner-card__city {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.partner-card__note { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

.partner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.partners-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 4px;
}

@media (max-width: 1023px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  {
  .partners-grid { grid-template-columns: 1fr; }
  .partners-header { grid-template-columns: 1fr; gap: 16px; }
  .partners-cta { padding: 24px; }
}

/* --------------------------------------------------------------------------
   GALA FOOTER
   -------------------------------------------------------------------------- */
.gala-footer {
  padding: 100px 0 32px;
}

.gala-footer__center {
  text-align: center;
  margin-bottom: 56px;
}

.gala-footer__strapline {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.2vw, 32px);
  font-style: italic;
  color: rgba(243,235,217,.85);
  max-width: 640px;
  margin: 24px auto 32px;
  line-height: 1.3;
}

.gala-footer__newsletter {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.gala-footer__email-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7,18,12,.5);
  border: 1px solid rgba(212,168,48,.35);
  color: #f3ebd9;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.gala-footer__email-input::placeholder { color: rgba(243,235,217,.45); }
.gala-footer__email-input:focus { border-color: rgba(212,168,48,.7); }

.gala-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(212,168,48,.18);
  border-bottom: 1px solid rgba(212,168,48,.18);
}

.gala-footer__col-head {
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.gala-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gala-footer__col-links li a,
.gala-footer__col-links li {
  font-size: 13px;
  color: rgba(243,235,217,.65);
  transition: color .2s;
}
.gala-footer__col-links a:hover { color: rgba(246,217,122,.9); }

.gala-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 11px;
  color: rgba(243,235,217,.45);
  flex-wrap: wrap;
  gap: 12px;
}

.gala-footer__social {
  display: flex;
  gap: 20px;
}
.gala-footer__social a { color: rgba(243,235,217,.45); transition: color .2s; }
.gala-footer__social a:hover { color: rgba(246,217,122,.8); }

@media (max-width: 767px) {
  .gala-footer { padding: 60px 20px 24px; }
  .gala-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   EVENTS LISTING PAGE
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 80px 0 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.page-hero--gala {
  padding: 0;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: #0a1d13;
}

.page-hero--gala .page-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.7);
}

.page-hero--gala .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,29,19,.5) 0%, rgba(10,29,19,.2) 40%, rgba(10,29,19,.95) 100%);
}

.page-hero--gala .page-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}

.page-hero__breadcrumb {
  font-size: 11px;
  color: rgba(243,235,217,.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-hero__breadcrumb a { color: rgba(243,235,217,.6); }
.page-hero__breadcrumb .sep { margin: 0 8px; color: rgba(212,168,48,.7); }
.page-hero__breadcrumb .current { color: var(--gold-bright); }

.page-hero__h1 {
  font-family: var(--font-editorial);
  font-size: clamp(64px, 8.9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 24px;
}

.page-hero__lead {
  font-family: var(--font-editorial);
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: italic;
  color: rgba(243,235,217,.85);
  max-width: 720px;
  line-height: 1.35;
}

/* Filter bar */
.filter-bar {
  padding: 24px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}

.filter-bar__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-chip {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font-ui);
  text-decoration: none;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 600;
}

/* Featured event */
.featured-event {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}

.featured-event__photo {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-event__countdown {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  background: rgba(0,0,0,.4);
  padding: 8px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.featured-event__body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event__date {
  font-family: var(--font-editorial);
  font-size: 24px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.featured-event__title {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 16px;
}

.featured-event__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.featured-event__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.featured-event__detail-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.featured-event__detail-value {
  font-size: 14px;
  font-weight: 600;
}

.featured-event__detail-sub {
  font-size: 13px;
  color: var(--ink-soft);
}

.featured-event__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Past events gallery */
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.past-event-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.past-event-tile__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}
.past-event-tile:hover .past-event-tile__img { transform: scale(1.04); }

.past-event-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,29,19,.85) 100%);
}

.past-event-tile__info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  color: #f3ebd9;
}

.past-event-tile__year {
  font-size: 11px;
  color: var(--gold-bright);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.past-event-tile__title {
  font-family: var(--font-editorial);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 4px;
}

.past-event-tile__city { font-size: 13px; color: rgba(243,235,217,.75); }

@media (max-width: 1023px) {
  .featured-event { grid-template-columns: 1fr; }
  .featured-event__photo { height: 280px; }
  .featured-event__body { padding: 28px; }
  .past-events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .past-events-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   CALCULATOR PAGE
   -------------------------------------------------------------------------- */
.calc-page { padding: var(--section-pad) 0; background: var(--bg); }

.calc-page__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.calc-full-form { display: flex; flex-direction: column; gap: 24px; }

.calc-type-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.calc-type-tile {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  background: transparent;
  font-family: var(--font-ui);
}
.calc-type-tile:hover { border-color: var(--accent); }
.calc-type-tile.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.calc-type-tile__icon { font-size: 24px; margin-bottom: 8px; display: block; }
.calc-type-tile__name { font-size: 13px; font-weight: 600; color: var(--ink); }

.calc-estimate-card {
  background: var(--green-deep);
  color: #f3ebd9;
  padding: 40px;
  border-radius: 6px;
  position: sticky;
  top: 24px;
}

.calc-estimate-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(243,235,217,.6);
  margin-bottom: 8px;
}

.calc-estimate-card__price {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 4px;
}

.calc-estimate-card__includes {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(243,235,217,.15);
}

.calc-estimate-card__includes-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(243,235,217,.6);
  margin-bottom: 12px;
}

.calc-include {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(243,235,217,.75);
  margin-bottom: 8px;
}
.calc-include::before { content: "✓"; color: var(--gold-bright); flex-shrink: 0; }

@media (max-width: 1023px) {
  .calc-page__grid { grid-template-columns: 1fr; gap: 48px; }
  .calc-estimate-card { position: static; }
  .calc-type-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   SERVICES LISTING PAGE
   -------------------------------------------------------------------------- */
.services-page { padding: var(--section-pad) 0; }

.services-page-grid { display: flex; flex-direction: column; gap: 80px; }

.service-detail-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  min-height: 480px;
}

.service-detail-section:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.service-detail-section:nth-child(even) .service-detail__photo { order: 2; }
.service-detail-section:nth-child(even) .service-detail__content { order: 1; }

.service-detail__photo {
  background-size: cover;
  background-position: center;
  min-height: 360px;
  position: relative;
}

.service-detail__content { padding: 64px; display: flex; flex-direction: column; justify-content: center; }

@media (max-width: 1023px) {
  .service-detail-section,
  .service-detail-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-detail-section:nth-child(even) .service-detail__photo { order: 0; }
  .service-detail__content { padding: 32px; }
}

/* --------------------------------------------------------------------------
   SINGLE EVENT DETAIL (WooCommerce product)
   -------------------------------------------------------------------------- */
.event-detail-hero {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.event-detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.65);
}

.event-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,12,.4) 0%, rgba(7,18,12,.15) 40%, rgba(7,18,12,.95) 100%);
}

.event-detail-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}

.event-countdown-bar {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  justify-content: center;
  margin-bottom: 40px;
}

.countdown-unit {
  text-align: center;
  padding: 16px 32px;
  border: 1px solid rgba(212,168,48,.3);
}

.countdown-unit + .countdown-unit { border-left: none; }

.countdown-unit__num {
  font-family: var(--font-editorial);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  display: block;
}

.countdown-unit__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(243,235,217,.6);
  margin-top: 6px;
  display: block;
}

/* Ticket tiers */
.ticket-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ticket-tier {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px;
}

.ticket-tier.featured {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Event agenda */
.agenda { display: flex; flex-direction: column; gap: 0; }

.agenda-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.agenda-item__time {
  font-family: var(--font-editorial);
  font-size: 18px;
  color: var(--accent);
  font-weight: 500;
}

/* Past event — video + gallery */
.event-video-poster {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.event-video-poster__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(.75);
}

.event-video-poster__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6d97a, #d4a830);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(212,168,48,.4);
  transition: transform .2s;
}
.event-video-poster:hover .play-btn { transform: scale(1.06); }

.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.event-gallery__item {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.event-gallery__item:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   SERVICE DETAIL PAGE
   -------------------------------------------------------------------------- */
.service-detail-page__sticky-aside {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 4px;
  position: sticky;
  top: 24px;
}

.service-price-big {
  font-family: var(--font-editorial);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  display: block;
  margin-bottom: 4px;
}

.service-detail-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-detail-bullet {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.service-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-timeline-card {
  padding: 24px;
  background: rgba(7,18,12,.45);
  min-height: 220px;
}

.service-timeline-card__when {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-timeline-card__what {
  font-family: var(--font-editorial);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 12px;
  color: #f3ebd9;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.faq-item__icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item.open .faq-item__answer { display: block; }

@media (max-width: 767px) {
  .service-detail-bullets { grid-template-columns: 1fr; }
  .service-timeline-grid  { grid-template-columns: 1fr; }
  .ticket-tiers           { grid-template-columns: 1fr; }
  .event-gallery          { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   WooCommerce Reset overrides
   -------------------------------------------------------------------------- */
.woocommerce-page .entry-title { display: none; }
.woocommerce-breadcrumb { display: none; }
.woocommerce-notices-wrapper { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* --------------------------------------------------------------------------
   Generic page content
   -------------------------------------------------------------------------- */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px var(--container-pad);
}

.page-content h1 { font-family: var(--font-editorial); font-size: clamp(40px, 4.4vw, 64px); line-height: 0.98; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 24px; }
.page-content h2 { font-family: var(--font-editorial); font-size: clamp(28px, 3vw, 40px); font-weight: 400; margin: 40px 0 16px; }
.page-content p  { margin-bottom: 20px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-gold { color: var(--gold-deep); }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.section-pad { padding: var(--section-pad) 0; }
.bg-paper { background: var(--bg); }
.bg-paper-alt { background: var(--bg-alt); }
.bg-green-deep { background: var(--green-deep); }
.gala-breadcrumb { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.gala-breadcrumb a { color: rgba(243,235,217,.6); }
.gala-breadcrumb .sep { margin: 0 8px; color: rgba(212,168,48,.7); }
.gala-breadcrumb .current { color: var(--gold-bright); }
