  :root{
    --sand:#FCF8F1;        /* soft warm off-white - brighter, cleaner */
    --card:#FFFFFF;        /* crisp white cards + sections */
    --cream:#FBEFD6;       /* light text on dark */
    --navy:#16283C;        /* dark sections + headings - harbor navy */
    --navy-deep:#0F1E2C;   /* footer */
    --orange:#E85D2A;      /* sunset orange - primary accent + CTAs */
    --orange-deep:#C24E1A; /* deeper orange - small labels + links on light */
    --gold:#F5B335;        /* golden hour - highlights */
    --teal:#1C8CBE;        /* sky blue - matches the bright skies in the photos */
    --text:#2A2019;        /* body text */
    --text-soft:#6B4A2E;   /* soft brown - subtext */
    --tan:#E4CDA3;         /* borders on light */
    --tan-dark:#C9A87C;    /* labels on dark */
    --radius:10px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text); background: var(--sand);
    line-height: 1.6; font-size: 16px;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
  a:hover { color: var(--orange); }
  section[id] { scroll-margin-top: 96px; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  /* ============ HEADER / NAV ============ */
  .site-header {
    background: var(--card);
    border-bottom: 2px solid var(--orange);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 6px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .nav-brand-container { display: flex; align-items: center; gap: 12px; }
  .nav-logo {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--orange); background: var(--card);
  }
  .nav-logo-full { height: 66px; width: auto; display: block; }
  .nav-brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px; font-weight: 700; color: var(--navy);
    letter-spacing: 0.3px; line-height: 1.1;
  }
  .nav-brand-sub {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 8.5px; font-weight: 500; color: var(--text-soft);
    letter-spacing: 2px; text-transform: uppercase; margin-top: 3px;
  }
  .nav-menu { display: flex; align-items: center; gap: 24px; list-style: none; }
  .nav-menu a { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: 0.3px; }
  .nav-menu a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: #FFF7EC !important;
    padding: 9px 18px; border-radius: var(--radius);
    font-weight: 600; font-size: 13px; letter-spacing: 0.5px;
    transition: background 0.2s; border: 2px solid var(--orange);
  }
  .nav-cta:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #FFF7EC !important; }
  .nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    color: var(--navy); font-size: 28px; line-height: 1; padding: 4px;
  }
  .nav-actions { display: none; align-items: center; gap: 10px; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 86vh;
    min-height: calc(100dvh - 80px);
    display: flex; align-items: center; align-items: safe center; justify-content: center;
    text-align: center; color: var(--cream);
    padding: 24px 24px 40px;
    background:
      linear-gradient(180deg, rgba(13,22,34,.80) 0%, rgba(13,22,34,.46) 32%, rgba(13,22,34,.52) 62%, rgba(13,22,34,.88) 100%),
      url('hero.jpg') center 42% / cover no-repeat;
    background-color: var(--navy); /* fallback if hero.jpg is missing */
  }
  .hero-content { position: relative; max-width: 880px; margin: 0 auto; }
  .hero-eyebrow {
    font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px; font-weight: 600;
  }
  .hero-fourth {
    font-family: 'Playfair Display', serif;
    font-size: 19px; color: var(--cream);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 8px; font-weight: 600;
  }
  .hero-cassandras {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 700; color: var(--gold);
    font-size: clamp(30px, 5vw, 44px); line-height: 1; margin-bottom: 4px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.45);
  }
  .hero h1 {
    font-family: 'Rye', 'Playfair Display', Georgia, serif;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.02; font-weight: 400; margin-bottom: 6px;
    color: #FFFFFF; letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
  }
  .hero-ribbon {
    display: inline-block; background: var(--orange); color: #FFF7EC;
    padding: 7px 34px; margin-top: 6px;
    font-family: 'Rye', 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 24px); font-weight: 400; letter-spacing: 4px;
    text-transform: uppercase; border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }
  .hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2.3vw, 23px); font-style: italic;
    color: #FFFFFF; margin: 16px 0 6px; text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  }
  .hero-sub { font-size: 14.5px; color: var(--cream); margin-bottom: 8px; letter-spacing: 0.5px; }

  .hero-date-strip {
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(245,179,53,0.35);
    border-radius: var(--radius);
    padding: 12px 26px; margin: 14px auto 0;
    display: inline-flex; gap: 40px; flex-wrap: wrap;
    justify-content: center; align-items: center;
  }
  .hero-date-item { color: var(--cream); font-size: 13.5px; letter-spacing: 0.5px; }
  .hero-date-item strong {
    color: #FFFFFF; display: block;
    font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 2px;
  }

  /* countdown */
  .countdown { display: flex; gap: 10px; justify-content: center; margin: 16px 0 4px; flex-wrap: wrap; }
  .cd-unit {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius); padding: 12px 14px; min-width: 76px;
  }
  .cd-num { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: #FFFFFF; line-height: 1; }
  .cd-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 7px; }

  .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
  .btn-primary {
    background: var(--orange); color: #FFF7EC !important;
    padding: 15px 36px; border-radius: var(--radius);
    font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.2s; display: inline-block; border: 2px solid var(--orange);
    box-shadow: 0 6px 18px rgba(232,93,42,0.45);
  }
  .btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #FFF7EC !important; transform: translateY(-2px); }
  .btn-secondary {
    background: transparent; color: #FFFFFF !important;
    padding: 15px 36px; border: 2px solid #FFFFFF; border-radius: var(--radius);
    font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.2s; display: inline-block;
  }
  .btn-secondary:hover { background: #FFFFFF; color: var(--navy) !important; }

  /* ============ HIGHLIGHTS STRIP ============ */
  .highlights { background: var(--card); border-bottom: 1px solid var(--tan); padding: 30px 24px; }
  .highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; }
  @media (min-width: 760px) { .highlights-grid { grid-template-columns: repeat(4, 1fr); } }
  .hl { text-align: center; }
  .hl i { font-size: 30px; color: var(--orange); }
  .hl-num { display: block; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 6px; line-height: 1.1; }
  .hl-cap { display: block; font-size: 12.5px; color: var(--text-soft); margin-top: 2px; }

  /* ============ SCRIPTURE ============ */
  .scripture-bar {
    background: var(--sand); padding: 34px 24px; text-align: center;
    border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
  }
  .scripture-quote {
    font-family: 'Playfair Display', Georgia, serif; font-style: italic;
    font-size: 21px; color: var(--navy); line-height: 1.5; max-width: 720px; margin: 0 auto 8px;
  }
  .scripture-cite { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; }

  /* ============ SECTIONS ============ */
  section { padding: 80px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; text-align: center; margin-bottom: 14px; }
  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 4.5vw, 44px); color: var(--navy); font-weight: 700;
    text-align: center; line-height: 1.1; margin-bottom: 20px; text-wrap: balance;
  }
  .section-intro { text-align: center; max-width: 720px; margin: 0 auto 40px; font-size: 17px; color: var(--text-soft); line-height: 1.7; }
  .divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px auto; max-width: 360px; }
  .divider .line { flex: 1; height: 6px; border-radius: 3px; background: repeating-linear-gradient(45deg, #C9A87C 0 5px, #A5865B 5px 10px); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04); }
  .divider .dstar { display: inline-flex; gap: 9px; line-height: 1; }
  .divider .wstar { width: 18px; height: 18px; }

  /* ============ ABOUT ============ */
  .about { background: var(--sand); }
  .about-story { max-width: 780px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--text); }
  .about-story p { margin-bottom: 16px; }
  .pull-quote {
    background: var(--card); border-left: 5px solid var(--orange);
    padding: 30px 34px; margin: 30px auto; max-width: 780px;
    font-family: 'Playfair Display', Georgia, serif; font-style: normal; font-weight: 600;
    font-size: 22px; color: var(--navy); line-height: 1.7; border-radius: 0 var(--radius) var(--radius) 0;
  }
  .pillars { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
  @media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
  .pillar {
    background: var(--card); border-top: 4px solid var(--orange);
    padding: 30px 24px; text-align: center; border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
  }
  .pillar:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(22,40,60,0.12); }
  .pillar-icon { margin: 0 auto 8px; line-height: 1; }
  .pillar-icon .wstar { width: 46px; height: 46px; }
  .pillar h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
  .pillar-sub { font-style: italic; color: var(--teal); font-size: 14px; margin-bottom: 12px; }
  .pillar p { color: var(--text); font-size: 14.5px; line-height: 1.6; }

  /* ============ EVENT ============ */
  .event-section { background: var(--navy); color: var(--cream); }
  .event-section .section-title { color: #FFFFFF; }
  .event-section .section-eyebrow { color: var(--gold); }
  .event-section .section-intro { color: var(--cream); }
  .event-header-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
  @media (min-width: 768px) { .event-header-grid { grid-template-columns: repeat(3, 1fr); } }
  .event-header-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
    padding: 24px 20px; border-radius: var(--radius); text-align: center;
  }
  .event-header-card i { font-size: 26px; color: var(--gold); }
  .event-header-card i.loc-pin { font-size: 36px; }
  .map-directions-row { text-align: center; margin: -26px 0 40px; }
  .map-directions-row a { color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }
  .map-directions-row a:hover { color: var(--orange); }
  .event-header-card .event-label { font-size: 10.5px; color: var(--tan-dark); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin: 10px 0 8px; }
  .event-header-card .event-value { font-family: 'Playfair Display', serif; font-size: 20px; color: #FFFFFF; font-weight: 700; line-height: 1.3; }
  .event-header-card .event-value-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--cream); font-weight: 400; margin-top: 4px; }

  .event-map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.16); margin-bottom: 40px; }
  .event-map iframe { display: block; width: 100%; height: 300px; border: 0; filter: saturate(0.9); }
  .map-facade { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 300px; padding: 20px; text-align: center; background: linear-gradient(135deg, #1E3A5A 0%, var(--navy) 100%); }
  .map-facade i { font-size: 42px; color: var(--gold); }
  .map-facade-addr { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; color: #fff; }
  .map-facade-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .map-load-btn { background: var(--orange); color: #FFF7EC; border: 0; padding: 11px 22px; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
  .map-load-btn:hover { background: var(--orange-deep); }
  .map-dir-btn { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,0.6); padding: 9px 20px; border-radius: var(--radius); font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; transition: all .2s; }
  .map-dir-btn:hover { background: #fff; color: var(--navy) !important; }

  .event-features-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin-bottom: 40px; }
  @media (min-width: 768px) { .event-features-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  .event-column h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: #FFFFFF; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
  .wstar { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; flex-shrink: 0; }
  .feature-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
  .feature-chips li { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: var(--cream); font-size: 14.5px; font-weight: 500; transition: background .2s, border-color .2s; }
  .feature-chips li:hover { background: rgba(255,255,255,0.12); border-color: rgba(245,179,53,0.55); }
  .feature-chips li.highlight { background: rgba(245,179,53,0.18); border-color: var(--gold); color: #fff; font-weight: 600; }
  .feature-chips .wstar { width: 15px; height: 15px; }

  .admission-callout {
    background: var(--orange); color: #FFF7EC;
    padding: 36px 28px; text-align: center; border-radius: var(--radius); margin-top: 10px;
    box-shadow: 0 10px 28px rgba(232,93,42,0.3);
  }
  .admission-callout h3 { font-family: 'Rye', 'Playfair Display', serif; font-size: 24px; color: #FFFFFF; margin-bottom: 4px; font-weight: 400; letter-spacing: 2px; }
  .admission-price { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 800; line-height: 1; color: #FFFFFF; margin: 8px 0 4px; text-shadow: 2px 2px 4px rgba(0,0,0,0.18); }
  .admission-per { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
  .admission-note { font-size: 14px; color: #FFF7EC; line-height: 1.6; margin-top: 10px; }

  /* ============ TICKETS ============ */
  .tickets { background: var(--sand); }
  .ticket-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
  @media (min-width: 768px) { .ticket-info-grid { grid-template-columns: 1fr 1fr; } }
  .ticket-card { background: var(--card); padding: 32px 28px; border-radius: var(--radius); border-top: 5px solid var(--orange); box-shadow: 0 3px 12px rgba(0,0,0,0.05); }
  .ticket-card .tc-icon i { font-size: 30px; color: var(--orange); }
  .ticket-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin: 10px 0 14px; font-weight: 700; }
  .ticket-card p { margin-bottom: 12px; font-size: 15px; }
  .ticket-card .tc-contact { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 18px; font-weight: 700; margin-top: 14px; }
  .ticket-btn { background: var(--orange); color: #FFF7EC !important; padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-block; text-align: center; margin-top: 14px; transition: background 0.2s; }
  .ticket-btn:hover { background: var(--orange-deep); color: #FFF7EC !important; }
  .payment-note { background: var(--navy); color: var(--cream); padding: 18px 22px; border-radius: var(--radius); margin-top: 26px; font-size: 13px; text-align: center; }
  .payment-note strong { display: block; font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 6px; color: #FFFFFF; letter-spacing: 0.5px; }

  /* ============ SPONSORSHIP ============ */
  .sponsor { background: var(--card); }
  .impact-boxes { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 20px 0 40px; }
  @media (min-width: 768px) { .impact-boxes { grid-template-columns: repeat(3, 1fr); } }
  .impact-box { background: var(--sand); border-top: 3px solid var(--teal); padding: 24px 20px; border-radius: var(--radius); text-align: center; }
  .impact-box-number { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--teal); font-weight: 800; line-height: 1; margin-bottom: 8px; }
  .impact-box-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
  .impact-box-body { font-size: 13.5px; color: var(--text); line-height: 1.5; }
  .tier-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 40px 0; }
  @media (min-width: 600px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .tier-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
  .tier { background: var(--sand); border: 1.5px solid var(--tan); padding: 28px 18px 22px; text-align: center; border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s; position: relative; }
  .tier:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(22,40,60,0.15); }
  .tier.featured { border: 2px solid var(--orange); background: #FFF6E9; }
  .tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #FFF7EC; font-size: 9px; padding: 4px 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; border-radius: 20px; white-space: nowrap; }
  .tier-name { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
  .tier-price { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; color: var(--orange-deep); font-weight: 800; margin-bottom: 10px; }
  .tier-tagline { font-style: italic; color: var(--text-soft); font-size: 12.5px; line-height: 1.4; min-height: 36px; }
  .sponsor-cta-box { background: var(--navy); color: var(--cream); padding: 44px 30px; border-radius: var(--radius); text-align: center; margin-top: 40px; }
  .sponsor-cta-box h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; margin-bottom: 12px; color: #FFFFFF; }
  .sponsor-cta-box p { color: var(--cream); margin-bottom: 24px; font-size: 15.5px; }

  /* ============ INVOLVED ============ */
  .involved { background: var(--sand); }
  .involve-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
  @media (min-width: 768px) { .involve-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .involve-grid { grid-template-columns: repeat(4, 1fr); } }
  .involve-card { background: var(--card); padding: 28px 22px; border-radius: var(--radius); text-align: center; border-bottom: 4px solid var(--teal); transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
  .involve-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(22,40,60,0.12); }
  .involve-icon { margin: 0 auto 8px; line-height: 1; }
  .involve-icon i { font-size: 36px; color: var(--teal); }
  .involve-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
  .involve-card p { font-size: 14px; color: var(--text); line-height: 1.6; }

  /* ============ CONTACT ============ */
  .contact { background: var(--card); }
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin-top: 20px; }
  @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  .contact-info { background: var(--sand); padding: 34px 30px; border-radius: var(--radius); border-top: 5px solid var(--orange); }
  .contact-info h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 18px; }
  .contact-item { margin-bottom: 20px; }
  .contact-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; margin-bottom: 4px; }
  .contact-value { font-size: 15.5px; color: var(--text); line-height: 1.5; }
  .contact-value a { color: var(--teal); font-weight: 500; }
  .contact-form { background: var(--sand); padding: 34px 30px; border-radius: var(--radius); border-top: 5px solid var(--teal); }
  .contact-form h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 18px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 5px; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 12px; border: 1px solid var(--tan); background: var(--card); font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--text); border-radius: var(--radius); transition: border-color 0.2s; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .submit-btn { background: var(--orange); color: #FFF7EC; border: none; padding: 14px 28px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); transition: background 0.2s; width: 100%; }
  .submit-btn:hover { background: var(--orange-deep); }
  .submit-btn:disabled { opacity: 0.7; cursor: default; }
  .form-status { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.4; min-height: 1.2em; }
  .form-status.ok { color: #1F7A4D; }
  .form-status.err { color: var(--orange-deep); }

  /* ============ SHOPPING CART ============ */
  .cart-fab {
    position: fixed; bottom: 22px; right: 22px; z-index: 900;
    display: none; align-items: center; gap: 8px;
    background: var(--orange); color: #FFF7EC; border: 0; cursor: pointer;
    padding: 13px 18px; border-radius: 999px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px; box-shadow: 0 8px 22px rgba(232,93,42,0.45);
    transition: background .2s, transform .2s;
  }
  .cart-fab:hover { background: var(--orange-deep); transform: translateY(-2px); }
  .cart-fab i { font-size: 20px; line-height: 1; }
  .cart-fab-count {
    background: #FFF7EC; color: var(--orange-deep); font-weight: 800; font-size: 12px;
    min-width: 20px; height: 20px; border-radius: 999px; display: inline-flex;
    align-items: center; justify-content: center; padding: 0 5px;
  }
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(10,15,22,0.5); z-index: 998;
    opacity: 0; visibility: hidden; transition: opacity .25s;
  }
  .cart-overlay.open { opacity: 1; visibility: visible; }
  .cart-drawer {
    position: fixed; top: 0; right: 0; z-index: 999; height: 100%;
    width: 400px; max-width: 92vw; background: var(--sand);
    box-shadow: -10px 0 40px rgba(10,15,22,0.35);
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .3s ease;
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; background: var(--navy); color: #fff; flex-shrink: 0;
  }
  .cart-head h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; margin: 0; color: #fff; }
  .cart-close { background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 0 4px; }
  .cart-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
  .cart-empty { color: var(--text-soft); text-align: center; padding: 40px 0; font-style: italic; }
  .cart-row {
    display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 10px;
    padding: 14px 0; border-bottom: 1px solid var(--tan);
  }
  .cart-row-info { min-width: 0; }
  .cart-row-name { font-weight: 600; color: var(--navy); font-size: 14.5px; line-height: 1.25; }
  .cart-row-price { font-size: 12px; color: var(--text-soft); margin-top: 2px; }
  .cart-qty { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--tan); border-radius: 8px; overflow: hidden; background: #fff; }
  .cart-qty button { width: 30px; height: 32px; border: 0; background: #fff; color: var(--navy); font-size: 18px; line-height: 1; cursor: pointer; }
  .cart-qty button:hover { background: var(--sand); }
  .cart-qty-n { min-width: 26px; text-align: center; font-weight: 700; font-size: 14px; color: var(--navy); }
  .cart-row-total { font-family: 'Playfair Display', serif; font-weight: 800; color: var(--navy); font-size: 15px; min-width: 56px; text-align: right; }
  .cart-remove { background: none; border: 0; color: var(--text-soft); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 2px; }
  .cart-remove:hover { color: var(--orange-deep); }
  .cart-foot { flex-shrink: 0; padding: 18px 22px; border-top: 2px solid var(--tan); background: var(--card); }
  .cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
  .cart-subtotal span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }
  .cart-subtotal strong { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); font-weight: 800; }
  .cart-fine { font-size: 11.5px; color: var(--text-soft); line-height: 1.5; margin-bottom: 12px; }
  .cart-checkout {
    width: 100%; background: var(--orange); color: #FFF7EC; border: 0; cursor: pointer;
    padding: 15px; border-radius: var(--radius); font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: background .2s;
  }
  .cart-checkout:hover { background: var(--orange-deep); }
  .cart-checkout:disabled { opacity: 0.55; cursor: default; }
  .cart-keep { width: 100%; background: none; border: 0; color: var(--teal); font-weight: 600; font-size: 13px; cursor: pointer; padding: 12px 0 2px; }
  .cart-keep:hover { color: var(--orange); }
  .cart-msg { font-size: 13px; font-weight: 600; margin-top: 8px; min-height: 1em; text-align: center; color: var(--navy); }
  .cart-msg.err { color: var(--orange-deep); }

  /* add-to-cart button style (reused on tickets + sponsor tiers) */
  .add-cart-btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    background: var(--orange); color: #FFF7EC !important; border: 2px solid var(--orange); cursor: pointer;
    padding: 12px 22px; border-radius: var(--radius); font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; transition: all .2s;
  }
  .add-cart-btn:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #FFF7EC !important; transform: translateY(-2px); }
  .qty-input { width: 68px; padding: 10px; border: 1.5px solid var(--tan); border-radius: 8px; font-family: inherit; font-size: 16px; text-align: center; color: var(--navy); }

  @media (max-width: 540px) {
    .cart-fab { bottom: 16px; right: 16px; padding: 12px 16px; }
  }

  /* buy-tickets band (homepage) + sponsor tier add-to-cart */
  .buy-tickets-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; background: var(--card); border: 1.5px solid var(--tan); border-top: 5px solid var(--orange); border-radius: 14px; padding: 24px 26px; margin-bottom: 22px; box-shadow: 0 3px 12px rgba(0,0,0,0.05); }
  .buy-tickets-band h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin: 0 0 4px; font-weight: 700; }
  .buy-tickets-band p { margin: 0; color: var(--text); font-size: 14.5px; }
  .buy-tickets-actions { display: flex; align-items: center; gap: 12px; }
  .tier-add { margin-top: 14px; width: 100%; padding: 10px 12px; font-size: 12px; }

  /* ============ FOOTER ============ */
  .site-footer { background: var(--navy-deep); color: var(--tan-dark); padding: 50px 24px 28px; text-align: center; }
  .footer-logo { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 14px; border: 2px solid var(--orange); object-fit: cover; background: var(--card); }
  .footer-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: #FFFFFF; font-weight: 700; margin-bottom: 6px; }
  .footer-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-social { display: flex; gap: 14px; justify-content: center; margin-bottom: 22px; }
  .footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 20px; transition: all 0.2s; }
  .footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #FFFFFF; }
  .footer-divider { height: 1px; background: rgba(255,255,255,0.12); max-width: 300px; margin: 8px auto 18px; }
  .footer-disclaimer { max-width: 720px; margin: 0 auto; font-size: 11.5px; color: #8A7560; line-height: 1.6; font-style: italic; }
  .footer-copyright { margin-top: 16px; font-size: 11.5px; color: #8A7560; }
  .footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; max-width: 480px; margin: 4px auto 14px; }
  .footer-legal a { color: var(--tan-dark); font-size: 12.5px; letter-spacing: 0.3px; }
  .footer-legal a:hover { color: var(--gold); }

  /* ============ LEGAL PAGES (privacy / terms / refunds) ============ */
  .legal { max-width: 820px; }
  .legal .updated { color: var(--text-soft); font-size: 13.5px; margin-bottom: 26px; }
  .legal .lead { font-size: 16.5px; color: var(--text); line-height: 1.75; margin-bottom: 18px; }
  .legal h2 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); font-size: 22px; margin: 30px 0 10px; }
  .legal h3 { color: var(--navy); font-size: 16.5px; margin: 20px 0 6px; font-weight: 700; }
  .legal p { color: var(--text); line-height: 1.75; font-size: 15.5px; margin-bottom: 12px; }
  .legal ul { padding-left: 22px; margin: 0 0 14px; }
  .legal li { color: var(--text); line-height: 1.7; font-size: 15.5px; margin-bottom: 7px; }
  .legal a { color: var(--teal); font-weight: 500; }
  .legal strong { color: var(--navy); }

  /* ============ PHOTO PLACEHOLDERS (shared) ============ */
  .ph {
    position: absolute; inset: 0; z-index: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    background: #F3E4C6; color: var(--text-soft); text-align: center; padding: 10px;
    font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
    border: 1px dashed var(--tan);
  }
  .ph i { font-size: 30px; color: var(--orange); }

  /* ============ ABOUT PHOTO ============ */
  .about-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; max-width: 980px; margin: 0 auto; }
  @media (min-width: 820px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 44px; } }
  .about-media { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(22,40,60,0.14); }
  .about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 1; }
  .about-grid .about-story { max-width: none; margin: 0; }
  .about-lead { font-size: 17.5px; color: var(--text-soft); line-height: 1.7; margin: 0 0 22px; }
  .about-story .impact-list { gap: 18px; }

  /* ============ GALLERY ============ */
  .gallery { background: var(--sand); }
  .gallery-grid { display: flex; gap: 12px; align-items: flex-start; margin-top: 10px; }
  .gallery-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
  @media (max-width: 680px) { .gallery-grid { gap: 10px; } .gallery-col { gap: 10px; } }
  .g-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,0.08); }
  .g-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; cursor: zoom-in; }
  .g-item:hover img { transform: scale(1.04); }
  .gallery-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-soft); font-style: italic; }

  /* ============ FOUNDER PHOTO ============ */
  .founder-photo { position: relative; width: 92px; height: 92px; border-radius: 50%; overflow: hidden; margin-bottom: 18px; border: 3px solid var(--orange); }
  .founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
  .founder-photo .ph { border: none; background: rgba(232,93,42,0.12); }
  .founder-photo .ph i { font-size: 32px; }

  /* ============ PHOTO FEATURES ============ */
  .mosaic { background: var(--card); }
  .mosaic-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 175px; gap: 12px; margin-top: 10px; }
  .mosaic-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 3px 12px rgba(0,0,0,0.10); }
  .mosaic-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; cursor: zoom-in; }
  .mosaic-grid figure:hover img { transform: scale(1.05); }
  .m-big { grid-column: span 2; grid-row: span 2; }
  .m-tall { grid-row: span 2; }
  .m-mobile { display: none; }   /* extra Vibe image shown on mobile only (balances the grid) */

  .col-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.22); }

  .photo-band { position: relative; padding: 96px 24px; text-align: center; color: #fff; background-position: center; background-size: cover; background-repeat: no-repeat; }
  .photo-band .band-inner { position: relative; max-width: 820px; margin: 0 auto; }
  .photo-band .band-kicker { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
  .photo-band h2 { font-family: 'Playfair Display', Georgia, serif; color: #fff; font-size: clamp(28px, 4.4vw, 46px); line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
  .photo-band p { color: #fff; font-size: 17px; margin-bottom: 24px; text-shadow: 0 1px 10px rgba(0,0,0,.55); }

  .sponsor-intro-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; margin-bottom: 40px; }
  @media (min-width: 820px) { .sponsor-intro-grid { grid-template-columns: 0.8fr 1.2fr; gap: 44px; } }
  .sponsor-intro-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; align-self: start; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(22,40,60,0.16); }

  .lb { position: fixed; inset: 0; background: rgba(10,15,22,0.93); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
  .lb.open { display: flex; }
  .lb img { max-width: 96vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
  .lb-close { position: absolute; top: 12px; right: 22px; color: #fff; font-size: 42px; line-height: 1; background: none; border: 0; cursor: pointer; }

  @media (max-width: 700px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
    .m-big { grid-column: span 2; grid-row: span 1; }
    .m-tall { grid-row: span 1; }
    .m-mobile { display: block; }
    .photo-band { padding: 60px 20px; }
  }

  /* ============ MOBILE NAV ============ */
  @media (max-width: 820px) {
    .nav-toggle { display: block; font-size: 26px; }
    .nav-actions { display: flex; }
    .nav-menu-cta { display: none; }
    .nav-container { padding: 8px 14px; gap: 8px; flex-wrap: wrap; }
    .nav-brand-container { flex: 0 1 auto; min-width: 0; }
    .nav-cta-mobile { padding: 8px 13px; font-size: 11.5px; white-space: nowrap; }
    .nav-menu {
      display: none; width: 100%; flex-direction: column; align-items: stretch;
      gap: 2px; padding-top: 10px; margin-top: 10px; border-top: 1px solid rgba(0,0,0,0.08);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 12px 6px; }
    .hero { min-height: 86vh; min-height: calc(100dvh - 66px); padding: 14px 18px 28px; background-position: 22% center; }
    .nav-logo-full { height: 40px; }
    .hero h1 { font-size: clamp(36px, 10vw, 58px); letter-spacing: 0; }
    .hero-ribbon { letter-spacing: 2px; padding: 6px 24px; }
    .hero-tagline { margin-top: 20px; }
    .hero-sub { font-size: 13.5px; }
    .hero-date-strip { flex-direction: column; gap: 8px; padding: 14px 24px; text-align: center; }
    .countdown { gap: 8px; }
    .cd-unit { min-width: 62px; padding: 10px 8px; }
    .cd-num { font-size: 26px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; padding: 15px 24px; }
    section { padding: 56px 18px; }
    .section-title { font-size: clamp(26px, 7vw, 38px); }
    .about-media { aspect-ratio: 4 / 5; width: 100%; align-self: start; }
    .event-header-card { padding: 20px 18px; }
    .admission-price { font-size: 46px; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  }

/* ============ SUB-PAGE HEADER ============ */
.page-header { background: var(--navy); color: var(--cream); text-align: center; padding: 64px 24px 56px; }
.page-header .eyebrow { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.page-header h1 { font-family: 'Playfair Display', Georgia, serif; color: #fff; font-size: clamp(30px, 5vw, 48px); line-height: 1.1; }
.page-header p { color: var(--cream); max-width: 620px; margin: 12px auto 0; font-size: 16px; line-height: 1.6; }
.page-body { padding: 64px 24px; background: var(--sand); }

/* ============ WESTERN ACCENTS ============ */
.scripture-cite .wstar { width: 12px; height: 12px; vertical-align: middle; margin: 0 6px; }
.hero-ribbon .rstar { margin: 0 9px; color: #FFF7EC; }
.admission-stars { color: rgba(255,247,236,0.85); letter-spacing: 6px; font-size: 13px; line-height: 1; margin-bottom: 12px; }
.admission-callout .admission-stars:last-of-type { margin: 14px 0 0; }
.footer-stars { color: var(--gold); letter-spacing: 8px; font-size: 12px; margin: 14px 0; }
.sponsor-cta-box h3 { font-family: 'Rye', 'Playfair Display', Georgia, serif; letter-spacing: 1px; }

/* ============ WESTERN BACKGROUND MOTIFS ============ */
.container { position: relative; z-index: 1; }
.has-deco { position: relative; overflow: hidden; }
.deco { position: absolute; z-index: 0; pointer-events: none; color: var(--navy); opacity: 0.06; display: block; }
.deco.on-dark { color: var(--cream); opacity: 0.05; }
.deco.tilt { transform: rotate(-14deg); }
.deco.tilt-r { transform: rotate(12deg); }
@media (max-width: 700px) { .deco { opacity: 0.05; } .deco.sm-hide { display: none; } }

.tier-star { display: block; width: 46px; height: 46px; margin: 0 auto 12px; }

/* ============ TICKET STUB ============ */
.ticket { display: flex; max-width: 600px; margin: 10px auto 0; background: var(--orange); color: #FFF7EC; border-radius: 14px; box-shadow: 0 12px 30px rgba(232,93,42,0.32); position: relative; overflow: hidden; }
.ticket-main { flex: 1; padding: 34px 28px; text-align: center; }
.ticket-label { font-family: 'Rye','Playfair Display',serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 4px; }
.ticket-price { font-family: 'Playfair Display',serif; font-size: 58px; font-weight: 800; line-height: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.15); }
.ticket-per { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 6px; }
.ticket-note { font-size: 13.5px; margin-top: 12px; color: #FFF7EC; }
.ticket-stub { position: relative; width: 150px; flex-shrink: 0; padding: 20px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-left: 2px dashed rgba(255,247,236,0.7); }
.ticket-stub::before, .ticket-stub::after { content: ''; position: absolute; left: -12px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); }
.ticket-stub::before { top: -12px; }
.ticket-stub::after { bottom: -12px; }
.ticket-star { width: 40px; height: 40px; }
.ticket-admit { font-family: 'Rye','Playfair Display',serif; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
@media (max-width: 540px) {
  .ticket-stub { width: 108px; }
  .ticket-main { padding: 26px 14px; }
  .ticket-price { font-size: 44px; }
}

/* ============ MEDALLION DIVIDER ============ */
.section-break { padding: 34px 24px; text-align: center; }
.medallion-divider { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 440px; margin: 0 auto; }
.medallion-divider .md-line { flex: 1; height: 6px; border-radius: 3px; background: repeating-linear-gradient(45deg, #C9A87C 0 5px, #A5865B 5px 10px); }
.medallion-divider .md-badge { width: 58px; height: 58px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(22,40,60,0.25); }
.medallion-divider .md-icon { width: 32px; height: 32px; color: var(--gold); }

/* ============ SPONSOR IMPACT LIST ============ */
.impact-list { display: flex; flex-direction: column; gap: 20px; }
.impact-item { display: flex; gap: 14px; align-items: flex-start; }
.impact-item .n { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #FFF7EC; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; }
.impact-item h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); font-size: 17px; margin: 2px 0 3px; font-weight: 700; }
.impact-item p { color: var(--text); font-size: 14px; line-height: 1.55; margin: 0; }

/* ============ SPONSOR INTRO FILL ============ */
.sponsor-intro-grid.intro-fill { align-items: stretch; }
.intro-photo-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(22,40,60,0.16); min-height: 380px; }
.intro-photo-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

/* ============ BE PART OF IT (merch spotlight + 3-way CTAs) ============ */
.bepart { background: var(--card); }
.bepart .section-intro { margin-bottom: 34px; }

/* --- shirt spotlight (the tee is the star) --- */
.merch-spotlight {
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  background: var(--sand);
  border: 1.5px solid var(--tan); border-top: 5px solid var(--orange);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(22,40,60,0.12);
  margin-bottom: 22px;
}
@media (min-width: 860px) { .merch-spotlight { grid-template-columns: 1.05fr 1fr; } }
.merch-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 34px; min-height: 300px;
  background: radial-gradient(circle at 50% 42%, #FFFDF8 0%, #FBEFD6 55%, #EAD5AC 100%);
  border-bottom: 1.5px solid var(--tan);
}
@media (min-width: 860px) { .merch-media { border-bottom: 0; border-right: 1.5px solid var(--tan); } }
.merch-media img { width: auto; max-width: 100%; max-height: 400px; filter: drop-shadow(0 14px 24px rgba(22,40,60,0.28)); }
.merch-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #FFF7EC;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  padding: 6px 13px; border-radius: 20px; box-shadow: 0 4px 12px rgba(232,93,42,0.35);
}
.merch-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.merch-kicker { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; margin-bottom: 10px; }
.merch-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(24px, 3vw, 32px); color: var(--navy); font-weight: 700; line-height: 1.12; margin-bottom: 12px; }
.merch-body > p { color: var(--text); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }
.merch-price { display: inline-flex; align-items: center; gap: 9px; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 22px; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.merch-price .wstar { width: 20px; height: 20px; }
.merch-price .amt { color: var(--orange-deep); }
.merch-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }
.merch-body .btn-primary { align-self: flex-start; }

/* --- supporting cards: tickets + sponsor --- */
.bepart-duo { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .bepart-duo { grid-template-columns: 1fr 1fr; } }
.bepart-card {
  background: var(--sand); border-radius: 16px;
  border: 1.5px solid var(--tan); border-top: 5px solid var(--teal);
  padding: 30px 28px; display: flex; flex-direction: column;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05); transition: transform .2s, box-shadow .2s;
}
.bepart-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(22,40,60,0.13); }
.bepart-card .bp-icon i { font-size: 34px; color: var(--teal); line-height: 1; }
.bepart-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); font-weight: 700; margin: 12px 0 8px; }
.bepart-card > p { font-size: 14.5px; color: var(--text); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.bp-price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); font-size: 15.5px; margin-bottom: 18px; }
.bp-btn {
  align-self: flex-start; background: transparent;
  border: 2px solid var(--orange); color: var(--orange-deep) !important;
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; transition: all .2s;
}
.bp-btn:hover { background: var(--orange); color: #FFF7EC !important; }

@media (max-width: 540px) {
  .merch-body { padding: 30px 24px; }
  .merch-media { padding: 26px; min-height: 260px; }
  .merch-media img { max-height: 320px; }
}
