/* ═══════════════════════════════════════════════════════════════════════
   UNLOCKED PROPHECY: The Book of Daniel — SEMINAR LANDING PAGE
   Design: Sleek white/light beige + dark cosmic header
   Font: Cinzel (headings) + Inter (body)
═══════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS & RESET ─── */
:root {
  --color-gold:        #c9a227;
  --color-gold-light:  #f5d78e;
  --color-gold-dark:   #8b6914;
  --color-deep-navy:   #0d1b2e;
  --color-navy:        #1a2f50;
  --color-cosmic:      #0e0c1e;
  --color-cream:       #f8f4ec;
  --color-beige:       #f0ebe0;
  --color-white:       #ffffff;
  --color-text-dark:   #1a1814;
  --color-text-mid:    #4a4540;
  --color-text-light:  #7a7470;
  --color-accent:      #5b2d8e;
  --color-green:       #4a7c59;

  /* ─── TYPOGRAPHY: Adventist / AWR Layout Styling ─── */
  --font-display: 'Montserrat', 'Noto Sans', 'Open Sans', sans-serif;
  --font-accent:  'EB Garamond', serif;
  --font-sans:    'Noto Sans', 'Open Sans', sans-serif;

  /* Theme Aliases & Mappings */
  --font-body:    var(--font-sans);
  --font-elegant: var(--font-accent);

  /* ─── FALLBACK / ROLLBACK THEME VARIABLES (Uncomment to revert/swap themes) ─── */
  /*
  --font-display: 'Abril Fatface', serif;
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-accent:  'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  */

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-deep:  0 16px 64px rgba(0,0,0,0.18);
  --shadow-glow:  0 0 40px rgba(201,162,39,0.3);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:    1160px;
  --section-pad:  clamp(60px, 8vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Global HTML Typography Element Styling */
h1, h2, h3 {
  font-family: var(--font-display);
}

blockquote, .quote-box, .highlight-box, .section-quote, .quote-card {
  font-family: var(--font-accent);
  font-style: italic;
}

nav, .navbar, .nav-link, .top-bar, .top-nav, .top-nav__link, .location-switcher {
  font-family: var(--font-sans);
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

[contenteditable="true"] {
  outline: none;
  border-radius: 3px;
  transition: background var(--transition), box-shadow var(--transition);
}
[contenteditable="true"]:hover  { background: rgba(201,162,39,0.06); }
[contenteditable="true"]:focus  { background: rgba(201,162,39,0.12); box-shadow: 0 0 0 2px rgba(201,162,39,0.4); }

/* ─── LAYOUT UTILITIES ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO HEADER
═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--color-cosmic);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('hero002.jpeg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,8,30,0.72) 0%,
      rgba(10,8,30,0.35) 40%,
      rgba(10,8,30,0.60) 80%,
      rgba(10,8,30,0.90) 100%
    );
}

/* AWR Banner */
.awr-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(201,162,39,0.92);
  color: #0d1b2e;
  font-family: var(--font-display);
  font-size: clamp(10px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.8vh, 18px);
  padding: clamp(65px, 6vh, 85px) 20px clamp(40px, 5vh, 60px);
  max-width: 820px;
  margin: 0 auto;
}

.hero__cross {
  width: clamp(44px, 6vw, 64px);
  filter: drop-shadow(0 0 18px rgba(201,162,39,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}

.hero__event-name {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.hero__event-location {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  opacity: 0.85;
  line-height: 1.2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}

.hero__title-sub {
  display: block;
  font-size: clamp(18px, 3.5vw, 32px);
  color: var(--color-gold-light);
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 36px;
  line-height: 1.3;
}

.btn--hero {
  padding: 14px 40px;
  font-size: clamp(13px, 2.2vw, 16px);
}

.hero__tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 24px);
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.05em;
}

.hero__dates {
  font-family: var(--font-display);
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-xl);
  padding: 10px 28px;
  backdrop-filter: blur(6px);
}

/* Free Admission Banner */
.free-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #c9a227, #e8c84a, #c9a227);
  color: #0d1b2e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 20px);
  letter-spacing: 0.12em;
  padding: 14px 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 30px rgba(201,162,39,0.45), var(--shadow-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 30px rgba(201,162,39,0.45); }
  50%       { box-shadow: 0 4px 50px rgba(201,162,39,0.75); }
}
.free-banner__divider { opacity: 0.5; }
.free-banner__en { font-size: 0.85em; opacity: 0.8; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 0; top: 6px; }
  50%  { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section--light  { background: var(--color-cream); }
.section--cream  { background: var(--color-beige); }
.section--white  { background: var(--color-white); }
.section--dark   {
  background: linear-gradient(160deg, var(--color-deep-navy) 0%, var(--color-navy) 60%, #12213a 100%);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-header--dark { color: var(--color-white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 10px;
}
.section-label--gold { color: var(--color-gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-deep-navy);
  margin-bottom: 18px;
}
.section-title--light { color: var(--color-white); }

.section-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 0 auto;
  border-radius: 2px;
}
.section-rule--gold {
  background: linear-gradient(90deg, var(--color-gold-light), rgba(255,255,255,0.3));
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 1: DESCRIPTION (REDESIGNED - OPEN & SPACIOUS)
═══════════════════════════════════════════════════════════════════════ */
.description-section {
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--color-offwhite);
  position: relative;
}

.description-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.description-question {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-deep-navy);
  margin-top: 28px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.description-paragraph {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: var(--color-text-mid);
  max-width: 720px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

.description-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), #e8c84a);
  color: var(--color-deep-navy);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
}
.btn--outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold-dark);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(201,162,39,0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 2: SPEAKERS
═══════════════════════════════════════════════════════════════════════ */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.speaker-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speaker-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}
.speaker-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,162,39,0.4);
}

.speaker-card__avatar {
  width: clamp(100px, 14vw, 140px);
  height: clamp(100px, 14vw, 140px);
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid rgba(201,162,39,0.4);
  box-shadow: 0 0 0 6px rgba(201,162,39,0.08), 0 8px 30px rgba(0,0,0,0.4);
  transition: box-shadow var(--transition);
}
.speaker-card:hover .speaker-card__avatar {
  box-shadow: 0 0 0 8px rgba(201,162,39,0.18), 0 8px 30px rgba(0,0,0,0.5);
}

.speaker-card__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-align: center;
}

.speaker-card__location {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.speaker-card__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  text-transform: uppercase;
  text-align: center;
}

.speaker-card__title-en {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  text-align: center;
}

.speaker-card__divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 16px auto;
}

.speaker-card__bio {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 3: SCHEDULE
═══════════════════════════════════════════════════════════════════════ */
.schedule-wrap {
  max-width: 820px;
  margin: 0 auto;
}



/* Amenities */
.schedule-amenities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.amenity {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.amenity:hover { transform: translateY(-3px); }

.amenity__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.amenity__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.amenity__text strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-deep-navy);
}
.amenity__text span {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 4: LOGISTICS
═══════════════════════════════════════════════════════════════════════ */
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

/* Church image */
.logistics-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.logistics-church-img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
}
.logistics-image-caption {
  display: none;
}

/* Map */
.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.map-placeholder__inner {
  position: relative;
  background: #e8eed8;
}
.map-svg { width: 100%; display: block; }

.map-pin {
  position: absolute;
  top: 38%;
  left: 49%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 44px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
  animation: bounce-pin 2s ease-in-out infinite;
}
@keyframes bounce-pin {
  0%, 100% { transform: translate(-50%, -50%); }
  50%       { transform: translate(-50%, -60%); }
}

.map-label {
  background: var(--color-white);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

/* Address block */
.address-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, var(--color-cream), var(--color-beige));
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(201,162,39,0.2);
  margin-bottom: 16px;
}
.address-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.address-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-deep-navy);
  margin-bottom: 4px;
}
.address-street, .address-city {
  font-size: 14px;
  color: var(--color-text-mid);
}

.getting-here {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(0,0,0,0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(201,162,39,0.4);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(160deg, var(--color-cosmic) 0%, #0a0d1a 100%);
  color: rgba(255,255,255,0.7);
  padding: clamp(40px, 6vw, 70px) 0 clamp(24px, 4vw, 40px);
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-cross { width: 28px; }

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 0.06em;
}
.footer-brand-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
  margin-bottom: 36px;
}

/* Footer links */
.footer-links {
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  flex: 1;
  min-width: 180px;
}
.footer-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
}

.footer-link__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-link__logo--fb  { background: #1877f2; }
.footer-link__logo--sda { background: #003580; }
.footer-link__logo--awr { background: #0a5c99; }
.footer-link__logo svg  { width: 26px; height: 26px; }
.footer-link__logo-img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-link__logo-img-awr { width: 100%; height: 100%; object-fit: cover; display: block; }

.footer-link__text .lang-is,
.footer-link__text .lang-en {
  display: flex;
  flex-direction: column;
}

.footer-link__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.footer-link__text span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-back-top {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-back-top:hover { color: var(--color-gold-light); }


/* Share Widget styling */
.share-widget {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,162,39,0.2);
  text-align: center;
}

.share-widget__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.share-widget__desc {
  font-size: 14px;
  color: var(--color-text-mid);
  margin-bottom: 24px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-card);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.share-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.share-btn--facebook {
  background: #1877f2;
}
.share-btn--facebook:hover {
  background: #166fe5;
}

.share-btn--twitter {
  background: #000000;
}
.share-btn--twitter:hover {
  background: #1a1a1a;
}

.share-btn--whatsapp {
  background: #25d366;
}
.share-btn--whatsapp:hover {
  background: #20ba5a;
}

.share-btn--copy {
  background: var(--color-navy);
  color: var(--color-gold-light);
  border: 1px solid rgba(201,162,39,0.3);
}
.share-btn--copy:hover {
  background: var(--color-deep-navy);
  color: var(--color-white);
  border-color: var(--color-gold);
}


/* ═══════════════════════════════════════════════════════════════════════
   LECTURE CARDS
═══════════════════════════════════════════════════════════════════════ */

.lectures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.lecture-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* Hide upcoming lectures 5-13 until toggled back on */
.lecture-card--hidden {
  display: none !important;
}

.lecture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-beige);
  transition: background var(--transition);
}

.lecture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), var(--shadow-glow);
  border-color: rgba(201,162,39,0.35);
}

.lecture-card:hover::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

/* Today highlight */
.lecture-card.lecture-card--today {
  outline: 2px solid var(--color-gold);
  box-shadow: 0 12px 32px rgba(201,162,39,0.2), var(--shadow-glow);
}
.lecture-card.lecture-card--today::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.lecture-card.lecture-card--today::after {
  content: 'TODAY';
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--color-gold);
  color: var(--color-deep-navy);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.1em;
}

/* Saturday special card styling */
.lecture-card--special {
  background: #fdfaf3;
  border-color: rgba(201,162,39,0.2);
}
.lecture-card--special::before {
  background: var(--color-gold);
}

/* Saturday special dark card styling for finale */
.lecture-card--special-dark {
  background: linear-gradient(145deg, var(--color-deep-navy), #142338);
  border-color: rgba(201,162,39,0.3);
  color: var(--color-white);
}
.lecture-card--special-dark::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.lecture-card--special-dark .lecture-number {
  color: var(--color-gold-light);
}
.lecture-card--special-dark .lecture-date {
  color: rgba(255,255,255,0.6);
}
.lecture-card--special-dark .lecture-chapter {
  color: var(--color-gold);
}
.lecture-card--special-dark .lecture-title {
  color: var(--color-white);
}
.lecture-card--special-dark .lecture-time {
  color: var(--color-gold-light);
}

.lecture-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lecture-number {
  color: var(--color-gold-dark);
}

.lecture-date {
  color: var(--color-text-light);
}

.lecture-chapter {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lecture-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-deep-navy);
  margin-top: 4px;
}

/* Locked/Upcoming lecture titles styling (default: visible/normal) */
.lecture-title--locked {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lecture-title__blur {
  display: block;
  width: 100%;
  filter: none;
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.lecture-title__lock-label {
  display: none; /* hidden by default */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.lecture-card--special-dark .lecture-title__lock-label {
  color: var(--color-gold-light);
  background: rgba(13, 27, 46, 0.9);
  border-color: rgba(201, 162, 39, 0.4);
}

/* ==========================================================================
   EASY TOGGLE SWITCH FOR BLURB LOCK
   To TURN ON the blur: Add class "lectures-grid--blur-upcoming" to .lectures-grid
   To TURN OFF the blur: Remove the class "lectures-grid--blur-upcoming"
   ========================================================================== */
.lectures-grid--blur-upcoming .lecture-card--upcoming .lecture-title__blur,
.lectures-grid--blur-upcoming .lecture-card--upcoming .lecture-date,
.lectures-grid--blur-upcoming .lecture-card--upcoming .lecture-time {
  filter: blur(5px);
  opacity: 0.3;
  user-select: none;
  pointer-events: none;
}

.lectures-grid--blur-upcoming .lecture-card--upcoming .lecture-title__lock-label {
  display: flex;
}



.lecture-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-icon {
  font-size: 14px;
}

.time-label-special {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-gold-dark);
  background: rgba(201,162,39,0.1);
  padding: 1px 8px;
  border-radius: 10px;
  margin-left: auto;
}
.lecture-card--special-dark .time-label-special {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.08);
}



/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .description-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .description-block__icon {
    margin: 0 auto;
  }
  .description-body--en {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(201,162,39,0.3);
    padding-top: 16px;
  }
  .description-cta {
    justify-content: center;
  }
  .logistics-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(24px, 8.5vw, 44px);
    letter-spacing: 0.02em;
  }
  .free-banner {
    flex-direction: column;
    gap: 4px;
    padding: 14px 24px;
  }
  .free-banner__divider { display: none; }
  .footer-links { flex-direction: column; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .hero__title {
    font-size: clamp(40px, 7vw, 68px);
  }
}

/* Mobile & Tablet Overrides (width < 1025px) - Needs switcher top clearance */
@media (max-width: 1024px) {
  .hero__content {
    gap: clamp(14px, 2.2vh, 26px);
    padding-top: clamp(120px, 12vh, 150px);
    padding-bottom: clamp(60px, 8vh, 100px);
  }
}

/* Short widescreen viewports override - compress vertical spacing to fit height */
@media (max-height: 850px) and (min-width: 1025px) {
  .hero__content {
    gap: 12px;
    padding-top: 55px;
    padding-bottom: 35px;
  }
  .hero__title-sub {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .speaker-card,
  .amenity,
  .description-content,
  .logistics-image-wrap,
  .footer-link,
  .lecture-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .speaker-card.visible,
  .amenity.visible,
  .description-content.visible,
  .logistics-image-wrap.visible,
  .footer-link.visible,
  .lecture-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   WHAT TO EXPECT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.expect-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,162,39,0.2);
  text-align: center;
}

.expect-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.expect-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.expect-card__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.expect-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-deep-navy);
}

.expect-card__text {
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   RSVP / REGISTRATION FORM
   ═══════════════════════════════════════════════════════════════════════ */
.rsvp-section {
  position: relative;
  background: linear-gradient(160deg, var(--color-cosmic) 0%, var(--color-deep-navy) 100%);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}

.rsvp-container {
  max-width: 680px;
  margin: 0 auto;
}

.rsvp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.rsvp-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-deep), 0 0 30px rgba(201,162,39,0.1);
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form input[type="tel"],
.rsvp-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  transition: all var(--transition);
}

.rsvp-form textarea {
  resize: vertical;
  min-height: 80px;
}

.rsvp-form input:focus,
.rsvp-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.checkbox-group {
  margin-top: 4px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: none !important;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  transition: all var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 162, 39, 0.5);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-gold);
  border-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid var(--color-deep-navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 28px;
  margin-top: 10px;
}

/* RSVP Success State */
.rsvp-success {
  text-align: center;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold);
  color: var(--color-deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.4);
}

.success-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.success-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 13px;
  color: var(--color-gold-light);
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ ACCORDION SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.faq-accordion-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-trigger span:first-child {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-deep-navy);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.faq-icon-symbol {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon-symbol::before,
.faq-icon-symbol::after {
  content: "";
  position: absolute;
  background-color: var(--color-gold-dark);
  transition: transform var(--transition);
}

/* Horizontal line */
.faq-icon-symbol::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon-symbol::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon-symbol::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon-symbol::before {
  transform: rotate(180deg);
  background-color: var(--color-gold);
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content-inner {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-content-inner p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
.mobile-sticky-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--color-gold), #e8c84a);
  color: var(--color-deep-navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4), var(--shadow-glow);
  z-index: 990;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: scale(0.9) translateY(12px);
  pointer-events: none;
}

.mobile-sticky-btn.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.mobile-sticky-btn:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .mobile-sticky-btn {
    display: inline-flex;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   BILINGUAL SUPPORT (IS/EN)
   Default is Icelandic (IS).
═══════════════════════════════════════════════════════════════════════ */
html[lang="is"] .lang-en { display: none !important; }
html[lang="en"] .lang-is { display: none !important; }

/* Language Switcher Pill */
.lang-switcher {
  position: absolute;
  top: 50px;
  right: clamp(20px, 5vw, 60px);
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .lang-switcher {
    top: 55px;
    right: 16px;
    padding: 4px 10px;
    gap: 6px;
  }
  .lang-switcher__icon {
    width: 14px;
    height: 14px;
  }
  .lang-btn {
    font-size: 11px;
    padding: 1px 3px;
  }
}
.lang-switcher__icon {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 4px;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  transition: var(--transition);
}
.lang-btn:hover {
  color: var(--color-white);
  text-decoration: none;
}
.lang-btn.active {
  color: var(--color-gold);
  font-weight: 700;
  cursor: default;
}
.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  user-select: none;
}

/* ──────────────────────────────────────────
   HERO HEADING NOWRAP LINES
   ────────────────────────────────────────── */
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title-sub-line {
  display: block;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   TOP NAVIGATION MENU BAR
   ═══════════════════════════════════════════════════════════════════════ */
.top-nav {
  position: absolute;
  top: 50px;
  left: clamp(20px, 5vw, 60px);
  z-index: 110;
}

.top-nav__container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 6px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.top-nav__link:hover {
  color: var(--color-gold);
}

.top-nav__link.active {
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.top-nav__link.inactive,
.top-nav__link.inactive *,
.top-nav__link.disabled,
.top-nav__link.disabled * {
  text-decoration: line-through !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  color: rgba(255, 255, 255, 0.4) !important;
  pointer-events: none !important;
}

.top-nav__separator {
  color: rgba(255, 255, 255, 0.25);
  font-weight: bold;
  user-select: none;
}

/* Mobile styling for top navigation and language switcher */
@media (max-width: 900px) {
  .top-nav {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 95%;
  }
  
  .top-nav__container {
    padding: 6px 14px;
    gap: 8px;
  }
  
  .top-nav__link {
    font-size: 11px;
  }
  
  .lang-switcher {
    top: 65px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Coming Soon / Væntanlegt Blurred State */
.coming-soon-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.speaker-card.coming-soon-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.coming-soon-blurred {
  filter: blur(8px);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.speaker-card.coming-soon-wrapper .coming-soon-blurred {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(10, 8, 30, 0.55);
  backdrop-filter: blur(4px);
  padding: 16px;
}

.coming-soon-badge {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(15, 12, 41, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(201, 162, 39, 0.35);
  text-align: center;
  max-width: calc(100% - 20px);
  box-sizing: border-box;
  white-space: nowrap;
}
