/* ============================================================
   SECOND SPRING GATHERING — HERA Her Community
   Main Stylesheet
   ============================================================ */

/* ── GOOGLE FONTS (loaded via index.html link tag) ── */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --plum:      #3D1230;
  --plum-lt:   #5a1e48;
  --rose:      #C8366B;
  --rose-dk:   #9B1F4E;
  --gold:      #D4A843;
  --gold-lt:   #F0C96A;
  --cream:     #FFFEF5;
  --blush:     #F9D0DC;
  --mint:      #C8ECD8;
  --lavender:  #DDD0F0;
  --butter:    #FDF3C0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', Arial, sans-serif;

  --radius-sm: 2px;
  --shadow-card: 0 8px 36px rgba(61,18,48,0.14);
  --shadow-float: 0 6px 28px rgba(212,168,67,0.38);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--plum);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(61,18,48,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,168,67,0.22);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav__links a {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--gold-lt);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--plum) !important;
  padding: 7px 18px !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: var(--gold-lt) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 99;
  background: rgba(61,18,48,0.98);
  padding: 16px 28px 24px;
  flex-direction: column;
  gap: 0;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav__mobile a:hover {
  color: var(--gold-lt);
}

.nav__mobile a:last-child {
  border-bottom: none;
  color: var(--gold);
  margin-top: 8px;
  font-size: 11px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.section-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,54,107,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  font-style: italic;
  color: var(--plum);
  margin-bottom: 6px;
  line-height: 1.1;
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--rose-dk);
  margin-bottom: 36px;
}

.gold-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 40px;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid var(--plum);
  background: var(--plum);
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--plum);
}

.btn--gold {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--plum);
}

.gem  { color: var(--gold); }
.dot  { color: var(--rose); font-size: 5px; }

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible,
.reveal--left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #fff8dc 0%, #fde8f0 30%, #f0ebff 62%, #e8f7ed 88%, #fff8dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 90px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

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

.hero__logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 36px rgba(61,18,48,0.35);
  margin: 0 auto 20px;
}

.hero__logo-wrap img {
  width: 105%;
  height: 105%;
  object-fit: cover;
}

.hero__presents {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__presents::before,
.hero__presents::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose);
  opacity: 0.4;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  color: var(--rose);
  text-shadow: 3px 3px 0 rgba(200,54,107,0.1);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero__sub1 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--rose-dk);
  margin-bottom: 5px;
}

.hero__sub2 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--plum);
  font-weight: 300;
  margin-bottom: 24px;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  border: 1.5px solid var(--rose);
  padding: 7px 24px;
  gap: 10px;
  background: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.hero__tagline span {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose-dk);
  text-transform: uppercase;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.pill--gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--plum);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll-hint span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(155,31,78,0.45);
  text-transform: uppercase;
}

.hero__scroll-hint .arrow {
  font-size: 16px;
  color: var(--rose);
  opacity: 0.4;
}

/* ============================================================
   PROGRAM
   ============================================================ */
#program {
  background: var(--cream);
  padding: 72px 24px;
}

.prog__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid rgba(200,54,107,0.12);
  padding: 24px 0;
}

.prog__item:last-child { border-bottom: none; }

.prog__tag-col {
  padding-right: 20px;
  padding-top: 3px;
}

.prog__tag {
  display: inline-block;
  background: var(--plum);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  white-space: nowrap;
}

.prog__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 3px;
  line-height: 1.2;
}

.prog__role {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--rose-dk);
  margin-bottom: 5px;
}

.prog__desc {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-style: italic;
  color: #6b4458;
  line-height: 1.65;
}

.prog__panelists {
  font-size: 10px;
  color: #7a5068;
  line-height: 1.7;
  margin-top: 7px;
}

.prog__panelists strong { color: var(--plum); font-weight: 700; }

/* ============================================================
   SPEAKERS
   ============================================================ */
#speakers {
  background: var(--plum);
  padding: 64px 24px;
}

#speakers .section-label { color: var(--gold-lt); }
#speakers .section-label::after { background: rgba(212,168,67,0.2); }
#speakers .section-title { color: #fff; }
#speakers .section-sub  { color: rgba(255,255,255,0.5); }

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.speaker-card {
  border: 1px solid rgba(212,168,67,0.2);
  padding: 18px 14px;
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition);
}

.speaker-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,67,0.4);
}

.speaker-card__gem  { color: var(--gold); font-size: 9px; margin-bottom: 7px; display: block; }
.speaker-card__name { font-family: var(--font-serif); font-size: 14px; font-style: italic; font-weight: 700; color: var(--gold-lt); margin-bottom: 3px; line-height: 1.3; }
.speaker-card__cred { font-size: 8px; color: rgba(255,255,255,0.48); line-height: 1.55; }
.speaker-card__role { font-size: 8.5px; font-weight: 600; color: var(--rose); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   AGENDA
   ============================================================ */
#agenda {
  background: linear-gradient(180deg, #fffde8 0%, #fffef8 100%);
  padding: 72px 24px;
}

.agenda__table {
  width: 100%;
  border-collapse: collapse;
}

.agenda__table tr {
  border-bottom: 1px solid rgba(200,54,107,0.1);
}

.agenda__table td {
  padding: 16px 10px;
  vertical-align: top;
}

.agenda__time {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
  padding-right: 20px;
  width: 88px;
  letter-spacing: 0.04em;
}

.agenda__tag-cell { width: 86px; }

.agenda__tag {
  display: inline-block;
  background: var(--plum);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
}

.agenda__content {
  font-size: 12.5px;
  color: var(--plum);
  line-height: 1.6;
}

.agenda__content strong {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   BRUNCH FEATURE
   ============================================================ */
#brunch {
  background: linear-gradient(145deg, var(--plum) 0%, #5a1e48 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#brunch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,168,67,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(200,54,107,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.brunch__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.brunch__icon {
  font-size: 52px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.brunch__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 14px;
  line-height: 1.1;
}

.brunch__sub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}

.brunch__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.brunch__tag {
  border: 1px solid rgba(212,168,67,0.35);
  padding: 7px 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(255,255,255,0.04);
}

/* ============================================================
   TICKETS
   ============================================================ */
#tickets {
  background: var(--plum);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

#tickets::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(212,168,67,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(200,54,107,0.05) 0%, transparent 55%);
  pointer-events: none;
}

#tickets .section-label { color: var(--gold); position: relative; z-index: 1; }
#tickets .section-label::after { background: rgba(212,168,67,0.2); }
#tickets .section-title { color: #fff; position: relative; z-index: 1; }

.tickets__sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.52);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.ticket-card {
  border: 1.5px solid rgba(212,168,67,0.25);
  padding: 26px 20px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  transition: transform var(--transition), background var(--transition);
}

.ticket-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.ticket-card--featured {
  background: linear-gradient(145deg, var(--gold-lt), var(--gold));
  border: none;
}

.ticket-card--featured:hover {
  background: linear-gradient(145deg, #f8d870, #e0b030);
}

.ticket-card__badge {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 12px;
  background: rgba(212,168,67,0.15);
  color: var(--gold-lt);
}

.ticket-card--featured .ticket-card__badge {
  background: #fff;
  color: var(--plum);
}

.ticket-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 5px;
}

.ticket-card--featured .ticket-card__price { color: var(--plum); }

.ticket-card__name {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-card--featured .ticket-card__name { color: var(--plum); }

.ticket-card__desc {
  font-size: 9.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}

.ticket-card--featured .ticket-card__desc { color: rgba(61,18,48,0.68); }

.ticket-card__cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--plum);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 20px;
  text-decoration: none;
  transition: background var(--transition);
}

.ticket-card__cta:hover { background: var(--plum-lt); }

/* ============================================================
   VENUE
   ============================================================ */
#venue {
  background: var(--cream);
  padding: 72px 24px;
}

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

.venue__label {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.venue__name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 12px;
  line-height: 1.3;
}

.venue__addr {
  font-size: 12px;
  color: #7a5068;
  line-height: 1.8;
}

.dress-box {
  border: 1.5px solid rgba(200,54,107,0.18);
  padding: 20px;
  background: rgba(249,208,220,0.1);
  margin-top: 22px;
}

.dress-box__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 3px;
}

.dress-box__sub {
  font-size: 10.5px;
  color: #8a5070;
  font-style: italic;
  margin-bottom: 10px;
}

.swatches {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 5px rgba(61,18,48,0.14);
}

.qr-rsvp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.qr-rsvp__img {
  width: 140px;
  height: 140px;
  border: 2px solid rgba(200,54,107,0.18);
  padding: 5px;
  background: #fff;
}

.qr-rsvp__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
}

.qr-rsvp__url {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--rose);
}

/* ============================================================
   ORGANIZERS
   ============================================================ */
#organizers {
  background: linear-gradient(180deg, #fffde8 0%, #fffef8 100%);
  padding: 60px 24px;
  text-align: center;
}

#organizers .section-label { justify-content: center; }
#organizers .section-title { text-align: center; }

.organizers__grid {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.organizer__name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.organizer__name::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
}

.organizer__org {
  font-size: 10.5px;
  color: #8a5070;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--plum);
  border-top: 3px solid var(--gold);
  padding: 36px 24px 24px;
  text-align: center;
}

.footer__logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(212,168,67,0.5);
  margin: 0 auto 10px;
}

.footer__logo-wrap img {
  width: 105%;
  height: 105%;
  object-fit: cover;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.footer__tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer__links a {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-lt); }

.footer__copy {
  font-size: 8.5px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   FLOATING RSVP BUTTON
   ============================================================ */
.floating-rsvp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 98;
}

.floating-rsvp__link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--plum);
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  box-shadow: var(--shadow-float);
  transition: background var(--transition), transform var(--transition);
}

.floating-rsvp__link:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — TABLET  (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .tickets__grid { grid-template-columns: 1fr 1fr; }
  .speakers__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ============================================================
   RESPONSIVE — MOBILE  (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .nav__logo-name { font-size: 13px; }

  /* Hero */
  .hero { padding: 80px 18px 70px; }
  .hero__logo-wrap { width: 80px; height: 80px; }
  .hero__presents { font-size: 7.5px; gap: 8px; }
  .hero__presents::before, .hero__presents::after { width: 24px; }
  .hero__tagline { padding: 6px 16px; gap: 7px; }
  .hero__tagline span { font-size: 7.5px; }
  .hero__pills { gap: 6px; }
  .pill { font-size: 8px; padding: 7px 13px; }
  .btn { font-size: 8.5px; padding: 13px 30px; }

  /* Sections */
  section { padding: 56px 18px; }
  .section-sub { font-size: 15px; margin-bottom: 28px; }

  /* Program — stack tag above content */
  .prog__item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .prog__tag-col { padding-right: 0; padding-top: 0; }
  .prog__name { font-size: 18px; }

  /* Speakers */
  .speakers__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .speaker-card { padding: 14px 12px; }
  .speaker-card__name { font-size: 13px; }

  /* Agenda — hide tag column, tighten */
  .agenda__tag-cell { display: none; }
  .agenda__time { width: 70px; font-size: 8.5px; padding-right: 12px; }
  .agenda__table td { padding: 13px 6px; }
  .agenda__content { font-size: 11.5px; }
  .agenda__content strong { font-size: 14px; }

  /* Brunch */
  .brunch__icon { font-size: 42px; }
  .brunch__sub { font-size: 15px; }
  .brunch__tags { gap: 8px; }
  .brunch__tag { font-size: 8px; padding: 6px 14px; }

  /* Tickets */
  .tickets__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  /* Venue */
  .venue__grid { grid-template-columns: 1fr; gap: 32px; }
  .qr-rsvp { margin-top: 0; }
  .qr-rsvp__img { width: 120px; height: 120px; }

  /* Organizers */
  .organizers__grid { gap: 32px; }

  /* Footer */
  .footer__links { gap: 14px; }

  /* Floating RSVP */
  .floating-rsvp { bottom: 14px; right: 14px; }
  .floating-rsvp__link { padding: 10px 16px; font-size: 8px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero__title { letter-spacing: -1px; }
  .speakers__grid { grid-template-columns: 1fr; }
  .pill { font-size: 7.5px; padding: 6px 11px; }
}
