*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #0B0B0D;
  color: #F5F3EE;
  min-height: 100vh;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }
input, select, button { font-family: inherit; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
ul { list-style: none; }

/* ── HEADER ─────────────────────────────────────────────────── */
.sdl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,13,0.95);
  border-bottom: 1px solid #2A2A2E;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sdl-header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sdl-logo {
  font-size: 14px;
  font-weight: 700;
  color: #F5F3EE;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.sdl-logo:hover { opacity: 0.75; }
.sdl-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #B9B2A6;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: #F5F3EE; background: rgba(255,255,255,0.05); }
.nav-active { color: #C39252 !important; background: none !important; }
.nav-sep { width: 1px; height: 16px; background: #2A2A2E; margin: 0 12px; flex-shrink: 0; }
.nav-join {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #C49A60;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-join:hover { color: #C39252; }
.nav-cta {
  margin-left: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #C39252;
  border: 1px solid #9C6A34;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.nav-cta:hover { background: rgba(156,106,52,0.12); border-color: #B07A3E; color: #F5F3EE; }
.sdl-hamburger {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #B9B2A6;
  flex-shrink: 0;
}
.sdl-hamburger:hover { color: #F5F3EE; }
.sdl-hamburger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.sdl-mobile-menu {
  display: none;
  border-top: 1px solid #2A2A2E;
  background: #0B0B0D;
  padding: 16px 24px 20px;
}
.sdl-mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #D2C4B4;
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: #F5F3EE; }
.mobile-nav-active { color: #C39252 !important; }
.mobile-nav-sep { height: 1px; background: #2A2A2E; margin: 8px 0; }
.mobile-nav-join {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #C49A60;
  transition: color 0.15s;
}
.mobile-nav-join:hover { color: #C39252; }
.mobile-nav-cta {
  display: block;
  margin-top: 4px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #C39252;
  border: 1px solid #9C6A34;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-nav-cta:hover { background: rgba(156,106,52,0.12); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #0a0a0a;
  border-top: 1px solid #2A2A2E;
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #F5F3EE;
  display: block;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px;
  color: #D2C4B4;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-brand-desc a { color: #C49A60; }
.footer-social { display: flex; gap: 8px; align-items: center; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #2A2A2E;
  color: #A89880;
  background: transparent;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social-btn:hover { border-color: #9C6A34; color: #C39252; background: rgba(156,106,52,0.08); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C39252;
  margin-bottom: 16px;
}
.footer-col-head + .footer-col-head { margin-top: 24px; }
.footer-link {
  display: block;
  font-size: 13px;
  color: #D2C4B4;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-link:hover { color: #F5F3EE; }
.footer-link-dim {
  display: block;
  font-size: 13px;
  color: #C0B09A;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-link-dim:hover { color: #E0D4C0; }
.footer-bottom {
  border-top: 1px solid #2A2A2E;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: #958A80; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: #958A80; transition: color 0.15s; }
.footer-legal a:hover { color: #D2C4B4; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  background: #B88746;
  color: #111111;
  border: 1px solid #B88746;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.btn-gold:hover { background: #C99A58; border-color: #C99A58; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid #9C6A34;
  color: #C39252;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(156,106,52,0.12); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  border-radius: 8px;
  border: 1px solid rgba(156,106,52,0.35);
  color: #C39252;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(156,106,52,0.12); border-color: rgba(156,106,52,0.55); }
.btn-pill-gold {
  display: inline-block;
  padding: 10px 20px;
  background: #B88746;
  color: #111111;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s;
}
.btn-pill-gold:hover { background: #C99A58; }
.btn-pill-outline {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #C39252;
  border: 1px solid #9C6A34;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s;
}
.btn-pill-outline:hover { background: rgba(156,106,52,0.12); }

/* ── EVENT CARDS ─────────────────────────────────────────────── */
.event-card {
  background: #151518;
  border: 1px solid #2A2A2E;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Thumbnail: landscape image on top for desktop */
.event-card-thumb-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 540;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.event-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Descriptions are for the detail page only — hidden on listing cards */
.event-card-desc { display: none !important; }
/* Wrapper for header + body — transparent on desktop */
.event-card-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.event-card-header {
  padding: 14px 16px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-type { background: rgba(156,106,52,0.15); color: #C39252; border: 1px solid rgba(156,106,52,0.25); }
.badge-fast { background: rgba(220,80,60,0.12); color: #E07060; border: 1px solid rgba(220,80,60,0.2); }
.event-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.event-card-title { font-size: 15px; font-weight: 700; color: #F5F3EE; margin-bottom: 10px; line-height: 1.35; }
.event-card-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.event-card-meta-row { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #D2C2AE; }
.event-card-meta-icon { width: 13px; height: 13px; opacity: 0.6; flex-shrink: 0; }
.event-card-age {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(195,146,82,0.1);
  color: #C39252;
  border: 1px solid rgba(195,146,82,0.2);
  margin-bottom: 10px;
}
.event-card-desc { font-size: 13px; color: #D2C2AE; line-height: 1.6; margin-bottom: 12px; flex: 1; }
.event-card-spots {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #2A2A2E;
  margin-bottom: 12px;
}
.event-card-spot { display: flex; flex-direction: column; gap: 3px; }
.event-card-spot-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A89880; }
.event-card-spot-val { font-size: 14px; font-weight: 700; color: #F5F3EE; }
.spot-low { color: #E07060; }
.event-card-btn {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  background: #B88746;
  color: #111111;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.event-card-btn:hover { background: #C99A58; }

/* ── HOMEPAGE ────────────────────────────────────────────────── */
.sdl-hero {
  position: relative;
  overflow: hidden;
  height: clamp(380px, 52vw, 520px);
}
.sdl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.sdl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.82) 38%, rgba(8,8,8,0.50) 60%, rgba(8,8,8,0.20) 100%);
}
.sdl-hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #0B0B0D 0%, transparent 100%);
}
.sdl-hero-text {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sdl-hero-trust {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C39252;
  margin-bottom: 16px;
}
.sdl-hero-h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 520px;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
.sdl-hero-h1 span { color: rgba(255,255,255,0.82); }
.sdl-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.86);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.sdl-hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* Couples section — desktop: side by side, mobile: stacked */
.sdl-couples {
  display: flex;
  align-items: stretch;
  min-height: 280px;
  border-bottom: 1px solid #2A2A2E;
  overflow: hidden;
}
.sdl-couples-img-wrap {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
}
.sdl-couples-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.sdl-couples-img-wrap .img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,11,13,0.05) 55%, rgba(11,11,13,0.72) 100%);
}
.sdl-couples-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 56px 32px 44px;
  background: #151518;
}
.sdl-couples-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #C39252; margin-bottom: 8px;
}
.sdl-couples-h2 {
  font-size: 24px; font-weight: 800;
  color: #F5F3EE; line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.sdl-couples-p { font-size: 14px; color: #D2C2AE; line-height: 1.72; }
.sdl-couples-newsday {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px; font-weight: 600;
  color: #C39252;
}
.sdl-couples-newsday:hover { color: #F5F3EE; }

/* Trust section */
.sdl-trust { max-width: 1152px; margin: 0 auto; padding: 28px 24px 24px; display: flex; align-items: center; gap: 48px; }
.sdl-trust-left { flex: 0 0 42%; }
.sdl-trust-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #C39252; margin-bottom: 10px;
}
.sdl-trust-h2 {
  font-size: 22px; font-weight: 800;
  color: #F5F3EE; line-height: 1.2;
  letter-spacing: -0.01em;
}
.sdl-trust-right {
  flex: 1;
  font-size: 14px; color: #D2C2AE; line-height: 1.75;
}

/* Filter bar */
.sdl-filter-section { max-width: 1152px; margin: 0 auto; padding: 20px 24px 32px; }
.sdl-filter-card {
  background: #151518;
  border: 1px solid #2A2A2E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.sdl-filter-row { display: flex; align-items: stretch; min-height: 56px; }
.sdl-filter-field {
  flex: 1 1 0;
  display: flex; align-items: center;
  padding: 0 16px;
  border-right: 1px solid #2A2A2E;
  min-width: 0;
}
.sdl-filter-field-area { flex: 2 1 140px; }
.sdl-filter-label-text {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #C39252; margin-bottom: 2px;
}
.sdl-filter-input {
  width: 100%; height: 40px;
  background: transparent; border: none; outline: none;
  color: #F0E8DC; font-size: 13px;
  appearance: none; -webkit-appearance: none;
}
.sdl-filter-input::placeholder { color: #CDBB9F; }
.sdl-filter-select {
  width: 100%; height: 40px;
  background: transparent; border: none; outline: none;
  color: #CDBB9F; font-size: 13px;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.sdl-filter-select.filled { color: #F0E8DC; }
.sdl-filter-select option { background: #1e1e1e; color: #e5e5e5; }
.sdl-filter-caret { font-size: 11px; color: #9C8A70; pointer-events: none; margin-left: -16px; }
.sdl-filter-btn {
  flex-shrink: 0;
  padding: 0 28px;
  background: #B88746; color: #111111;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}
.sdl-filter-btn:hover { background: #C99A58; }
.sdl-filter-helper {
  padding: 8px 16px;
  border-top: 1px solid #2A2A2E;
  font-size: 11px; color: #A89880;
}

/* Other areas */
.sdl-other-areas { max-width: 1152px; margin: 4px auto 20px; padding: 0 24px; }
.sdl-other-areas p { font-size: 12px; color: #BBA898; }
.sdl-other-areas a { color: #C9A870; transition: color 0.15s; }
.sdl-other-areas a:hover { color: #E0C890; }

/* Events feed */
.sdl-events-feed { max-width: 1152px; margin: 0 auto; padding: 0 24px 36px; }
.sdl-events-feed-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.sdl-events-feed-header h2 { font-size: 20px; font-weight: 700; color: #F5F3EE; }
.sdl-events-feed-header p { font-size: 13px; color: #D2C2AE; margin-top: 4px; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.events-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.events-cta { margin-top: 32px; text-align: center; }

/* Why section */
.sdl-why { border-top: 1px solid #2A2A2E; background: #0B0B0D; padding: 52px 0; }
.sdl-why-inner { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.sdl-why h2 { font-size: 20px; font-weight: 700; color: #F5F3EE; text-align: center; margin-bottom: 6px; }
.sdl-why-sub { font-size: 13px; color: #D2C2AE; text-align: center; margin-bottom: 24px; }
.sdl-why-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.sdl-why-card {
  flex: 0 0 calc(33.33% - 11px);
  max-width: calc(33.33% - 11px);
  background: #151518;
  border: 1px solid #2A2A2E;
  border-radius: 12px;
  padding: 16px 20px;
}
.sdl-why-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(156,106,52,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sdl-why-icon svg { width: 17px; height: 17px; stroke: #C39252; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sdl-why-card h3 { font-size: 13px; font-weight: 700; color: #F5F3EE; margin-bottom: 8px; }
.sdl-why-card p { font-size: 13px; color: #D2C2AE; line-height: 1.6; }

/* Stories section */
.sdl-stories { border-top: 1px solid #2A2A2E; padding: 52px 0; }
.sdl-stories-inner { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.sdl-stories-head { text-align: center; margin-bottom: 36px; }
.sdl-stories-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #C39252; margin-bottom: 10px; }
.sdl-stories-h2 { font-size: 22px; font-weight: 800; color: #F5F3EE; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 10px; }
.sdl-stories-sub { font-size: 14px; color: #D2C2AE; line-height: 1.6; }
.sdl-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sdl-story-card {
  background: #151518;
  border: 1px solid #2A2A2E;
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.sdl-story-quote-mark { font-size: 40px; line-height: 1; color: #C39252; opacity: 0.35; font-family: Georgia, serif; user-select: none; }
.sdl-story-text { font-size: 15px; color: #F5F3EE; line-height: 1.7; flex: 1; }
.sdl-story-source { font-size: 12px; font-weight: 600; color: #C39252; letter-spacing: 0.02em; }
.sdl-stories-footer { text-align: center; margin-top: 32px; }
.sdl-stories-attr { font-size: 12px; color: #A89880; margin-bottom: 20px; }

/* Stats section */
.sdl-stats { border-top: 1px solid #2A2A2E; background: #0B0B0D; padding: 44px 0; }
.sdl-stats-inner { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.sdl-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sdl-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sdl-stat-num { font-size: 32px; font-weight: 800; color: #F5F3EE; margin-bottom: 6px; }
.sdl-stat-label { font-size: 10px; color: #A89880; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

/* Final CTA */
.sdl-cta { padding: 48px 24px; text-align: center; }
.sdl-cta-inner { max-width: 500px; margin: 0 auto; }
.sdl-cta h2 { font-size: clamp(22px, 3.2vw, 32px); font-weight: 800; color: #F5F3EE; line-height: 1.2; margin-bottom: 14px; }
.sdl-cta p { font-size: 14px; color: #D2C2AE; line-height: 1.6; margin-bottom: 28px; }
.sdl-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 36px; border-radius: 8px;
  background: #9C6A34; border: 1px solid #9C6A34;
  color: #1A1A1A; font-size: 14px; font-weight: 700;
  transition: background 0.15s;
}
.sdl-cta-btn:hover { background: #B07A3E; }

/* ── EVENTS PAGE ─────────────────────────────────────────────── */
.events-page-header { border-bottom: 1px solid #2A2A2E; padding: 48px 24px 40px; }
.events-page-header-inner { max-width: 1280px; margin: 0 auto; }
.events-page-header h1 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: #F5F3EE; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.events-page-header p { font-size: 14px; color: #D2C2AE; max-width: 560px; }
.events-filter-bar { padding: 28px 24px 32px; border-bottom: 1px solid #2A2A2E; }
.events-filter-bar .sdl-filter-card { max-width: 1280px; margin: 0 auto; }
.events-schedule { padding: 48px 24px 80px; }
.events-schedule-inner { max-width: 1280px; margin: 0 auto; }
.events-schedule-head { margin-bottom: 28px; }
.events-schedule-head h2 { font-size: 18px; font-weight: 700; color: #F5F3EE; margin-bottom: 4px; }
.events-schedule-head p { font-size: 13px; color: #D2C2AE; }
.events-nudge { margin-top: 28px; padding-top: 20px; border-top: 1px solid #2A2A2E; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.events-nudge p { font-size: 13px; color: #A89880; }
.events-nudge-links { display: flex; gap: 12px; flex-wrap: wrap; }
.events-nudge-links a { font-size: 13px; font-weight: 600; color: #C39252; text-decoration: underline; text-decoration-color: rgba(195,146,82,0.35); text-underline-offset: 3px; }
.events-nudge-links a:hover { color: #F5F3EE; }
.events-nudge-sep { color: #3A3A3E; }

/* ── HOW IT WORKS PAGE ───────────────────────────────────────── */
.hiw-page-header { padding: 80px 24px 64px; border-bottom: 1px solid #2A2A2E; background: #151518; text-align: center; }
.hiw-page-header-inner { max-width: 52rem; margin: 0 auto; }
.hiw-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #9C6A34; margin-bottom: 16px; }
.hiw-h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.hiw-intro { font-size: 18px; color: #D2C2AE; line-height: 1.7; max-width: 40rem; margin: 0 auto; }
.hiw-glance { padding: 48px 24px; border-bottom: 1px solid #2A2A2E; }
.hiw-glance-inner { max-width: 52rem; margin: 0 auto; }
.hiw-glance-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9C6A34; margin-bottom: 20px; text-align: center; }
.glance-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.glance-item { display: flex; align-items: center; gap: 12px; background: #151518; border: 1px solid #2A2A2E; border-radius: 10px; padding: 14px 16px; }
.glance-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: #9C6A34; }
.glance-item span { font-size: 15px; color: #F5F3EE; font-weight: 500; }
.hiw-body { padding: 80px 24px; }
.hiw-body-inner { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.hiw-steps-list { display: flex; flex-direction: column; gap: 40px; }
.hiw-steps-h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.hiw-step { display: flex; gap: 24px; }
.hiw-step-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(156,106,52,0.12); border: 1px solid rgba(156,106,52,0.25); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.hiw-step-icon svg { width: 20px; height: 20px; stroke: #9C6A34; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hiw-step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9C6A34; margin-bottom: 4px; }
.hiw-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hiw-step p { color: #D2C2AE; line-height: 1.65; }
.hiw-cta-btns { padding-top: 8px; display: flex; flex-wrap: wrap; gap: 12px; }
.hiw-sidebar { display: flex; flex-direction: column; gap: 20px; align-self: start; }
.hiw-sidebar-card { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 40px; text-align: center; }
.hiw-sidebar-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.hiw-sidebar-card p { color: #D2C2AE; margin-bottom: 32px; line-height: 1.65; }
.hiw-sidebar-card-sm { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 28px; text-align: center; }
.hiw-sidebar-card-sm p { color: #D2C2AE; line-height: 1.65; margin-bottom: 16px; }
.hiw-sidebar-card-sm a { color: #C39252; font-weight: 600; font-size: 15px; text-decoration: underline; text-decoration-color: rgba(195,146,82,0.4); text-underline-offset: 3px; }
.hiw-sidebar-card-sm a:hover { color: #F5F3EE; }
.hiw-sidebar-note { font-size: 12px; color: #A89880; margin-top: 20px; font-weight: 500; }

/* ── FAQ PAGE ────────────────────────────────────────────────── */
.faq-page-header { padding: 80px 24px 64px; border-bottom: 1px solid #2A2A2E; background: #151518; text-align: center; }
.faq-page-header-inner { max-width: 52rem; margin: 0 auto; }
.faq-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #9C6A34; margin-bottom: 16px; }
.faq-h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.faq-intro { font-size: 17px; color: #D2C2AE; line-height: 1.7; max-width: 40rem; margin: 0 auto; }
.faq-body { padding: 64px 24px; }
.faq-layout { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.faq-accordion {}
.faq-item { border-bottom: 1px solid #2A2A2E; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 16px;
}
.faq-question span:first-child { font-size: 17px; font-weight: 600; color: #F5F3EE; line-height: 1.45; flex: 1; }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(156,106,52,0.12); border: 1px solid rgba(156,106,52,0.25);
  display: flex; align-items: center; justify-content: center;
}
.faq-icon svg { width: 13px; height: 13px; stroke: #9C6A34; fill: none; stroke-width: 2; stroke-linecap: round; }
.faq-answer { display: none; color: #D2C2AE; line-height: 1.7; padding-bottom: 20px; font-size: 15px; }
.faq-answer.open { display: block; }
.faq-answer a { color: #C39252; text-decoration: underline; text-decoration-color: rgba(195,146,82,0.4); text-underline-offset: 3px; }
.faq-sidebar { display: flex; flex-direction: column; gap: 20px; align-self: start; }
.faq-sidebar-card { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 32px; text-align: center; }
.faq-sidebar-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.faq-sidebar-card p { color: #D2C2AE; line-height: 1.65; font-size: 15px; margin-bottom: 24px; }
.faq-sidebar-card-accent { background: rgba(156,106,52,0.07); border: 1px solid rgba(156,106,52,0.2); border-radius: 16px; padding: 28px; text-align: center; }
.faq-sidebar-card-accent p:first-child { color: #C39252; font-weight: 600; font-size: 15px; margin-bottom: 12px; }
.faq-sidebar-card-accent p:last-of-type { color: #D2C2AE; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.faq-sidebar-note { font-size: 12px; color: #A89880; margin-top: 16px; font-weight: 500; }
.faq-sidebar-link { color: #C39252; font-weight: 600; font-size: 15px; text-decoration: underline; text-decoration-color: rgba(195,146,82,0.4); text-underline-offset: 3px; }
.faq-sidebar-link:hover { color: #F5F3EE; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-page-header { padding: 80px 24px 64px; border-bottom: 1px solid #2A2A2E; background: #151518; text-align: center; }
.contact-page-header-inner { max-width: 52rem; margin: 0 auto; }
.contact-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #9C6A34; margin-bottom: 16px; }
.contact-h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.contact-intro { font-size: 17px; color: #D2C2AE; line-height: 1.7; max-width: 38rem; margin: 0 auto; }
.contact-body { padding: 64px 24px; }
.contact-layout { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.contact-col { display: flex; flex-direction: column; gap: 24px; }
.contact-card { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 40px; }
.contact-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-card-sub { color: #D2C2AE; font-size: 15px; line-height: 1.65; margin-bottom: 32px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 10px; background: rgba(156,106,52,0.12);
  border: 1px solid rgba(156,106,52,0.25);
  display: flex; align-items: center; justify-content: center;
}
.contact-method-icon svg { width: 16px; height: 16px; stroke: #9C6A34; fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-method-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #A89880; margin-bottom: 3px; }
.contact-method a { font-size: 17px; font-weight: 600; color: #C39252; transition: color 0.15s; }
.contact-method a:hover { color: #F5F3EE; }
.contact-divider { height: 1px; background: #2A2A2E; margin: 16px 0; }
.contact-topics-card { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 40px; }
.contact-topics-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.contact-topics { display: flex; flex-direction: column; gap: 12px; }
.contact-topic { display: flex; align-items: flex-start; gap: 12px; }
.topic-dot { flex-shrink: 0; margin-top: 6px; width: 6px; height: 6px; border-radius: 50%; background: #9C6A34; }
.contact-topic span { color: #D2C2AE; font-size: 15px; line-height: 1.6; }
.contact-trust { font-size: 13px; color: #A0968A; line-height: 1.65; padding: 0 4px; }
.contact-trust a { color: #C49A60; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; align-self: start; }
.contact-sidebar-card { background: #151518; border: 1px solid #2A2A2E; border-radius: 16px; padding: 32px; }
.contact-sidebar-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-sidebar-card p { color: #D2C2AE; font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.contact-sidebar-card .btn-pill-gold { display: block; text-align: center; font-size: 15px; margin-bottom: 0; }
.contact-helplink {
  display: block; padding: 12px 16px;
  background: rgba(156,106,52,0.06);
  border: 1px solid #2A2A2E; border-radius: 10px;
  color: #C39252; font-weight: 600; font-size: 14px;
  margin-bottom: 10px; transition: background 0.15s;
}
.contact-helplink:hover { background: rgba(156,106,52,0.12); }
.contact-sidebar-note { font-size: 11px; color: #A0968A; margin-top: 12px; font-weight: 500; text-align: center; }

/* ── INNER PAGE HEADER (shared) ─────────────────────────────── */
.page-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #9C6A34; margin-bottom: 16px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .events-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 700px) {
  /* Nav */
  .sdl-nav { display: none !important; }
  .sdl-hamburger { display: block; }

  /* Hero */
  .sdl-hero { height: calc(100dvh - 56px) !important; min-height: 480px; max-height: none; }
  .sdl-hero-img { object-position: 79% center !important; }
  .sdl-hero-overlay { background: linear-gradient(105deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.65) 32%, rgba(8,8,8,0.40) 58%, rgba(8,8,8,0.10) 100%) !important; }
  .sdl-hero-text { padding-left: 32px !important; padding-right: 32px !important; }
  .sdl-hero-trust { font-size: 12px !important; color: #D4A85A !important; }
  .sdl-hero-h1 { font-size: clamp(30px, 8vw, 42px) !important; color: #FFFFFF; text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8) !important; }
  .sdl-hero-sub { color: rgba(255,255,255,0.82) !important; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }

  /* Couples: stack vertically */
  .sdl-couples { flex-direction: column; min-height: unset; }
  .sdl-couples-img-wrap { flex: none; height: 260px; }
  .sdl-couples-img-wrap .img-fade { background: linear-gradient(to top, rgba(11,11,13,0.82) 0%, rgba(11,11,13,0.3) 50%, rgba(11,11,13,0.1) 100%) !important; }
  .sdl-couples-text { padding: 20px 20px 24px !important; background: #0B0B0D !important; }

  /* Trust section: stack */
  .sdl-trust { flex-direction: column; gap: 16px; padding: 24px 20px; }

  /* Filter */
  .sdl-filter-section { padding: 0 16px 10px; }
  .sdl-filter-row { flex-wrap: wrap; min-height: unset; }
  .sdl-filter-field { flex: 1 1 45%; border-right: none; border-bottom: 1px solid #2A2A2E; padding: 10px 13px; }
  .sdl-filter-field:first-child { border-right: 1px solid #2A2A2E !important; }
  .sdl-filter-field-area { flex: 1 1 100%; border-right: none; }
  .sdl-filter-btn { flex: 1 1 100%; justify-content: center; padding: 13px 24px; }

  /* Events grid */
  .events-grid, .events-grid-3 { grid-template-columns: 1fr !important; }

  /* Events feed */
  .sdl-events-feed { padding: 0 16px 24px; }

  /* ── Mobile event card: horizontal thumbnail layout ── */
  .event-card {
    flex-direction: row !important;
    align-items: flex-start !important;
    border-color: rgba(165, 48, 48, 0.28);
    box-shadow: 0 0 0 1px rgba(165, 48, 48, 0.07), 0 4px 16px rgba(0,0,0,0.5);
  }
  /* Override desktop (full-width top) → compact landscape thumbnail on left */
  .event-card-thumb-wrap {
    flex: 0 0 120px;
    width: 120px;
    aspect-ratio: 800 / 540;
    border-radius: 8px;
    margin: 12px 0 12px 12px;
  }
  .event-card-header {
    padding: 10px 11px 3px !important;
    gap: 4px;
  }
  .event-card-body { padding: 2px 11px 11px !important; }
  .event-card-title { font-size: 13px !important; line-height: 1.28 !important; margin-bottom: 6px !important; }
  .event-card-meta { gap: 2px !important; margin-bottom: 5px !important; }
  .event-card-meta-row { font-size: 11px !important; }
  .event-card-meta-icon { width: 11px !important; height: 11px !important; }
  .event-card-age { font-size: 10px !important; padding: 2px 7px !important; margin-bottom: 6px !important; }
  .event-card-desc { display: none !important; }
  .event-card-spots {
    padding: 5px 0 !important;
    margin-bottom: 7px !important;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .event-card-spot-label { font-size: 9px !important; }
  .event-card-spot-val { font-size: 12px !important; }
  .event-card-btn {
    font-size: 12px !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
    background: #8B2020 !important;
    border-color: #8B2020 !important;
    color: #F5EDE0 !important;
  }
  .event-card-btn:hover { background: #A02828 !important; border-color: #A02828 !important; }

  /* Why grid */
  .sdl-why-card { flex: 0 0 100%; max-width: 100%; }
  .sdl-why { padding: 32px 0; }

  /* Stories: hidden on mobile */
  .sdl-stories { display: none !important; }

  /* Stats */
  .sdl-stats-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .sdl-stats { padding: 20px 0 22px; }

  /* CTA */
  .sdl-cta { padding: 36px 20px; }

  /* Events page */
  .events-page-header { padding: 28px 16px 18px; }
  .events-filter-bar { padding: 14px 16px 10px; }
  .events-schedule { padding: 28px 16px 36px; }
  .events-nudge { flex-direction: column; align-items: flex-start; }

  /* HIW page */
  .hiw-page-header { padding: 36px 20px 28px; }
  .hiw-glance { padding: 26px 20px; }
  .glance-grid { grid-template-columns: 1fr 1fr; }
  .hiw-body { padding: 32px 20px; }
  .hiw-body-inner { grid-template-columns: 1fr; gap: 32px; }
  .hiw-sidebar-card { padding: 24px 20px; }
  .hiw-cta-btns { flex-direction: column; }
  .hiw-cta-btns a { text-align: center; width: 100%; }

  /* FAQ page */
  .faq-page-header { padding: 36px 20px 28px; }
  .faq-body { padding: 32px 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-sidebar { order: -1; }
  .faq-sidebar > .faq-sidebar-card:not(:first-child),
  .faq-sidebar > .faq-sidebar-card-accent { display: none; }

  /* Contact page */
  .contact-page-header { padding: 36px 20px 28px; }
  .contact-body { padding: 32px 20px; }
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding-top: 24px; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }
  .faq-sidebar > .faq-sidebar-card:not(:first-child),
  .faq-sidebar > .faq-sidebar-card-accent { display: none; }
  .hiw-body-inner { grid-template-columns: 1fr; }
}

@media (min-width: 701px) and (max-width: 1023px) {
  .sdl-stories-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sdl-why-card { flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
}
