/* ---- FONTS (self-hosted, latin subset) ----
   Google serves one variable file per family+style, so a single file covers
   the whole weight range. Keep these in sync with the weights actually used;
   see DEPLOY.md before adding a new weight or style. */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-var-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/outfit-var.woff2') format('woff2');
}

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

:root {
  --blush: #e8a0b4;
  --blush-light: #f5d5df;
  --blush-pale: #fdf0f4;
  --rose: #c4677e;
  --rose-deep: #9e4a60;
  --champagne: #f7ede2;
  --charcoal: #2a2a2a;
  --charcoal-light: #3d3d3d;
  --off-white: #faf8f6;
  --warm-gray: #8a8380;
  --gold: #c9a96e;
  --gold-light: #e2d1a8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --section-pad: clamp(80px, 12vw, 160px);
  --side-pad: clamp(24px, 6vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITY ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- HERO ---- */
.hero {
  position: relative;
  /* svh accounts for mobile browser chrome; vh is the fallback. */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--side-pad);
  padding-bottom: clamp(60px, 10vw, 140px);
  background: var(--charcoal);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(232,160,180,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 60%),
    linear-gradient(175deg, #1a1a1a 0%, #2a2a2a 50%, #1f1f1f 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 10vw, 140px);
  line-height: 0.9;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero__name em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}

.btn--primary {
  background: var(--blush);
  color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,180,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--blush);
  color: var(--blush);
  transform: translateY(-2px);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: rgba(42,42,42,0.95);
  backdrop-filter: blur(12px);
  padding: 14px var(--side-pad);
  box-shadow: 0 1px 0 rgba(232,160,180,0.15);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ---- SECTION SHARED ---- */
.section {
  padding: var(--section-pad) var(--side-pad);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section__heading em {
  font-style: italic;
  color: var(--rose-deep);
}

/* ---- ABOUT ---- */
.about {
  background: var(--off-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.about__image-col {
  position: relative;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--champagne) 100%);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232,160,180,0.2);
  border-radius: 6px;
  pointer-events: none;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__credit {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--warm-gray);
  text-align: right;
}

.about__credit a {
  color: var(--rose);
  text-decoration: none;
}

.about__credit a:hover { text-decoration: underline; }

/* ---- ACCOMPLISHMENTS ---- */
.accomplishments {
  background: var(--charcoal);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.accomplishments::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,180,0.06) 0%, transparent 70%);
}

.accomplishments .section__eyebrow { color: var(--blush); }
.accomplishments .section__heading { color: var(--off-white); }
.accomplishments .section__heading em { color: var(--blush-light); }

.accomplishments__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.accolades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.accolade {
  position: relative;
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: all 0.4s ease;
}

.accolade:hover {
  background: rgba(232,160,180,0.06);
  border-color: rgba(232,160,180,0.15);
  transform: translateY(-4px);
}

/* Clickable cards use an invisible <button> stretched over the card rather than
   wrapping the card in one. A <button> only permits phrasing content, so
   wrapping would flatten the inner <h3>/<ul> into a single run-on accessible
   name and drop the list semantics. This keeps the markup intact and still
   gives keyboard users a real, focusable, Enter/Space-operable control. */
.card-action {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.card-action:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

.accomplishments .card-action:focus-visible { outline-color: var(--blush); }

.accolade--expandable .accolade__title::after {
  content: ' +';
  font-weight: 300;
  font-size: 16px;
  color: var(--gold);
}

.accolade__details { display: none; }

/* ---- FOCUS ---- */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 3px;
}

.accomplishments :focus-visible,
.hero :focus-visible,
.contact :focus-visible,
.nav :focus-visible,
.accolade-modal :focus-visible {
  outline-color: var(--blush);
}

/* ---- ACCOLADE MODAL ---- */
.accolade-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.accolade-modal-overlay--open {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

.accolade-modal {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  max-width: 560px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.accolade-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  padding: 4px;
  transition: color 0.2s;
}

.accolade-modal__close:hover { color: var(--off-white); }

.accolade-modal__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}

.accolade-modal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--off-white);
  margin-bottom: 8px;
}

.accolade-modal__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 28px;
}

.accolade-modal__list {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.accolade-modal__item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: baseline;
}

.accolade-modal__event {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.accolade-modal__category {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--gold-light);
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .accolade-modal {
    padding: 36px 24px;
  }
  .accolade-modal__item {
    flex-direction: column;
    gap: 4px;
  }
  .accolade-modal__category {
    text-align: left;
  }
}

.accolade__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}

.accolade__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--off-white);
}

.accolade__detail {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---- SPONSORS ---- */
.sponsors {
  background: var(--champagne);
  position: relative;
}

.sponsors__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.sponsors__diamond-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--rose-deep);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-align: center;
}

.sponsors__more {
  margin-top: 32px;
}

.sponsors__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 12px 0;
  transition: color 0.3s ease;
}

.sponsors__toggle:hover { color: var(--rose-deep); }

.sponsors__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s ease;
}

.sponsors__toggle--open svg {
  transform: rotate(180deg);
}

.sponsors__tiers-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.sponsors__tiers-collapsible--open {
  max-height: 2000px;
}

.sponsors__tier-group {
  padding: 24px 0;
  border-top: 1px solid rgba(196,103,126,0.12);
}

/* Closes the accordion stack. Previously set as an inline style from JS. */
.sponsors__tier-group:last-child {
  border-bottom: 1px solid rgba(196,103,126,0.12);
}

.sponsors__tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
}

.sponsors__tier-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
}

.sponsors__tier-header svg {
  width: 14px;
  height: 14px;
  color: var(--warm-gray);
  transition: transform 0.3s ease;
}

.sponsors__tier-header--open svg {
  transform: rotate(180deg);
}

.sponsors__tier-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sponsors__tier-list--open {
  max-height: 600px;
}

.sponsors__tier-list-inner {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sponsors__tier-name-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal-light);
  padding: 8px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(196,103,126,0.1);
  border-radius: 4px;
}

.sponsors__tier-empty {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  color: var(--warm-gray);
  padding-top: 16px;
}

.sponsor-slot {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.7);
  border: 2px dashed rgba(196,103,126,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sponsor-slot:hover {
  border-color: var(--blush);
  background: rgba(255,255,255,0.9);
}

.sponsor-slot__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--rose);
  opacity: 0.5;
}

/* When real sponsors exist, use .sponsor-logo */
.sponsor-logo {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(232,160,180,0.1);
  aspect-ratio: 16/9;
}

.sponsor-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.sponsor-logo:hover img {
  transform: scale(1.03);
}

.sponsor-name-card {
  aspect-ratio: 16/9;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(232,160,180,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  transition: all 0.3s ease;
}

.sponsor-name-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.sponsor-name-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.sponsor-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sponsors__cta {
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.sponsors__cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.sponsors__cta p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

/* ---- SPONSORSHIP TIERS ---- */
.tiers {
  background: var(--off-white);
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin-top: 48px;
}

.tier {
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  background: white;
  position: relative;
  transition: all 0.35s ease;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* ---- SPONSOR MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay--open {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

.modal {
  background: white;
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-gray);
  padding: 4px;
  transition: color 0.2s;
}

.modal__close:hover { color: var(--charcoal); }

.modal__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--rose);
}

.modal__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.modal__tier-name {
  color: var(--rose-deep);
  font-style: italic;
}

.modal__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal__actions .btn {
  font-size: 13px;
  padding: 12px 28px;
}

.btn--secondary {
  background: transparent;
  color: var(--warm-gray);
  border: 1.5px solid rgba(0,0,0,0.12);
}

.btn--secondary:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tier--diamond {
  border-color: var(--blush);
  background: linear-gradient(170deg, #fff 60%, var(--blush-pale) 100%);
}

.tier__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}

.tier__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 16px;
}

.tier__perks {
  list-style: none;
}

.tier__perks li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--charcoal-light);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.tier__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

/* ---- UPCOMING APPEARANCES ---- */
.appearances {
  background: white;
}

.appearances__intro {
  max-width: 640px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 44px;
}

.appearances__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1120px;
}

.appearance-card {
  position: relative;
  padding: 30px;
  min-height: 240px;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.appearance-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.appearance-card__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.appearance-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.appearance-card__location {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--warm-gray);
}

.appearance-card__location svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold);
}

.appearance-card__note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.appearance-card__note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--gold);
}

/* Separates Upcoming from Recent Highlights. Groups are visible by default so
   the no-JS view still reads correctly (cards are authored into the right
   group); app.js re-buckets by date and hides whichever group ends up empty. */
.appearances__group--empty { display: none; }

.appearances__group + .appearances__group:not(.appearances__group--empty) {
  margin-top: clamp(48px, 6vw, 72px);
}

.appearances__group-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,103,126,0.15);
}

.appearance-card--past { opacity: 0.82; }

.appearance-card--past::before {
  background: linear-gradient(90deg, var(--warm-gray), var(--gold-light));
}

/* ---- IN THE NEWS ---- */
.news {
  background: var(--off-white);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin-top: 48px;
}

.news-card {
  display: block;
  padding: 32px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--blush);
}

.news-card__source {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.news-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.news-card__excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.accolade__music-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.accolade__music-link:hover { color: var(--gold-light); }

.tiers__footnote {
  margin-top: 32px;
  font-size: 14px;
  color: var(--warm-gray);
  font-style: italic;
}

.tiers__footnote a { color: var(--rose); }

/* ---- CONTACT ---- */
.contact {
  background: var(--charcoal);
  color: var(--off-white);
  text-align: center;
}

.contact .section__heading { color: var(--off-white); }
.contact .section__heading em { color: var(--blush-light); }
.contact .section__eyebrow { color: var(--blush); }

.contact__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__social {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact__social a:hover {
  border-color: var(--blush);
  color: var(--blush);
  transform: translateY(-3px);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 24px var(--side-pad);
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll-reveal.
   Deliberately scoped to .js: the hidden state only ever applies when the
   inline <head> snippet has confirmed scripting is live. If JS is disabled,
   blocked, or throws before app.js runs, every .reveal element stays visible
   instead of the page rendering blank. Do not un-scope this. */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Honour the OS "reduce motion" setting: show everything immediately,
   drop the entrance animations, the floating scroll cue, and smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal,
  .js .reveal--visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__eyebrow,
  .hero__name,
  .hero__subtitle,
  .hero__actions {
    opacity: 1;
    animation: none;
  }

  .hero__scroll-cue { animation: none; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image-col {
    order: -1;
    max-width: 400px;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: block; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(42,42,42,0.98);
    backdrop-filter: blur(12px);
    padding: 24px var(--side-pad);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .tiers__grid {
    grid-template-columns: 1fr;
  }
}
