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

:root {
  --navy:       #ffae3b;
  --navy-dk:    #16142C;
  --deep-purple: #060b37;
  --plum:       #8060B0;
  --plum-pale:  #d1dbeb;
  --terra:      #7050A0;
  --terra-pale: #d1dbeb;
  --avocado:    #6848A8;
  --avo-pale:   #d1dbeb;
  --mustard:    #ffae3b;
  --cream:      #d1dbeb;
  --charcoal:   #100E24;
  --white:      #F8F9F0;
  --muted:      #9080B8;
  --font-display: 'Playfair Display', serif;
  --font-script:  'Abril Fatface', serif;
  --font-body:    'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ──────────────────────────────────────────
   CHECKER STRIPE
────────────────────────────────────────── */
.checker-stripe {
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent 0%, var(--mustard) 20%, var(--mustard) 80%, transparent 100%);
  opacity: 0.4;
}

/* ──────────────────────────────────────────
   NAV
────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 100px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img,
.nav-logo svg {
  height: 62px;
  width: auto;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover        { color: var(--mustard); font-weight: 700; }
.nav-links a.active       { color: var(--mustard); font-weight: 700; border-bottom: 2px solid var(--mustard); padding-bottom: 2px; }

/* Donate nav link — stands out as a CTA */
.nav-links a[href="donate.html"] {
  color: var(--mustard);
  border: 1px solid rgba(207,168,92,0.45);
  border-radius: 3px;
  padding: 0.3rem 0.75rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-links a[href="donate.html"]:hover,
.nav-links a[href="donate.html"].active {
  background: var(--mustard);
  color: var(--charcoal);
  border-color: var(--mustard);
  border-bottom: none;
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16,14,36,0.15); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-primary      { background: var(--navy);    color: var(--white);    border-color: var(--navy); }
.btn-mustard      { background: var(--mustard); color: var(--charcoal); border-color: var(--mustard); }
.btn-outline-mustard { background: transparent; color: var(--mustard);  border-color: var(--mustard); }
.btn-outline-navy { background: transparent;    color: var(--navy-dk);  border-color: var(--navy-dk); }

/* ──────────────────────────────────────────
   SECTION BASE
────────────────────────────────────────── */
.page-section { padding: 5rem 2rem; }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: #060b37 !important;
  color: var(--mustard) !important;
  padding: 0.2rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 2rem;
}

/* ──────────────────────────────────────────
   IMAGE PLACEHOLDER
────────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--terra-pale) 100%);
  border-radius: 6px;
  border: 1px solid rgba(128,96,176,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  gap: 0.5rem;
}
.img-placeholder svg { opacity: 0.5; }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
#about-page { background: #F8F9F0; }

#about-page .section-title,
#team-section .section-title,
#team-section .team-name {
  font-family: var(--font-display);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-wrapper::before {
  display: none;
}

.about-image-wrapper .img-placeholder,
.about-image-wrapper img {
  position: relative;
  z-index: 1;
}

.about-stacked {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-photo-full {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.about-text p {
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.4rem;
  font-size: 1.12rem;
  font-weight: 600;
}
.about-text p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────────
   TEAM SECTION
────────────────────────────────────────── */
#team-section {
  background: var(--cream);
  border-top: 1px solid rgba(128,96,176,0.18);
}

.team-intro {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team-member {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Flip: photo on right */
.team-member-flip {
  grid-template-columns: 1fr 260px;
}
.team-member-flip .team-photo-wrap { order: 2; }
.team-member-flip .team-bio-wrap   { order: 1; }

.team-photo-wrap {
  position: relative;
}

.team-photo-wrap::before {
  display: none;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(128,96,176,0.2);
  position: relative;
  z-index: 1;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--mustard) !important;
  background: #060b37;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.team-bio-wrap p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.9rem;
}
.team-bio-wrap p:last-child { margin-bottom: 0; }

.team-bio-wrap a {
  color: #060b37;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.team-bio-wrap a:hover { color: #060b37; opacity: 0.7; }

@media (max-width: 720px) {
  .team-member,
  .team-member-flip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-member-flip .team-photo-wrap,
  .team-member-flip .team-bio-wrap { order: unset; }
  .team-photo-wrap::before { display: none; }
  .team-photo { aspect-ratio: 1/1; object-position: center top; }
}

/* ──────────────────────────────────────────
   SHOWS PAGE
────────────────────────────────────────── */
#shows-page {
  background: #F8F9F0;
  position: relative;
  overflow: hidden;
}


.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}

.show-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(128,96,176,0.18);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(16,14,36,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(16,14,36,0.13);
}

.show-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--terra-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.show-card-body   { padding: 1.5rem; }
.show-card-footer { padding: 0 1.5rem 1.5rem; }

.show-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.show-badge.upcoming {
  background: var(--mustard);
  color: var(--charcoal);
}

.show-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.show-dates {
  display: inline-block;
  background: #060b37;
  color: var(--mustard) !important;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.show-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

/* ──────────────────────────────────────────
   EVENTS PAGE
────────────────────────────────────────── */
#events-page {
  background: var(--avo-pale);
  position: relative;
  overflow: hidden;
}


.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(122,80,96,0.2);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(16,14,36,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,14,36,0.11);
}

.event-date-block {
  text-align: center;
  background: #060b37;
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  line-height: 1.1;
  border: none;
  flex-shrink: 0;
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--mustard);
  display: block;
}

.event-date-month {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mustard);
}

.event-info { min-width: 0; }

.event-tag {
  display: inline-block;
  background: #060b37;
  color: var(--mustard);
  border: none;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.event-meta {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.event-date-meta {
  display: inline-block;
  background: #060b37;
  color: var(--mustard) !important;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.event-action { flex-shrink: 0; }

/* Events with photos — date + image on left, text + button on right */
.event-row-with-img {
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.event-left-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.event-left-col img {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

.event-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .event-row-with-img {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
#contact-page {
  background: var(--plum-pale);
  position: relative;
  overflow: hidden;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-dk);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-detail svg {
  flex-shrink: 0;
  background: var(--plum);
  border-radius: 50%;
  padding: 6px;
  width: 36px;
  height: 36px;
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid rgba(128,96,176,0.18);
  box-shadow: 0 4px 24px rgba(16,14,36,0.09);
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(128,96,176,0.25);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(207,168,92,0.15);
}

textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(16,14,36,0.15);
}

.form-submit:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16,14,36,0.2);
}

/* ──────────────────────────────────────────
   NEWSLETTER
────────────────────────────────────────── */
.newsletter-section {
  background: var(--navy-dk);
  padding: 2.5rem 2rem;
  text-align: center;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(128,96,176,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--mustard); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
footer {
  background: var(--deep-purple);
  color: var(--muted);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-logo-img {
  width: 260px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(128,96,176,0.5));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--plum);
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  border: 2px solid rgba(255,255,255,0.15);
  transition: background 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: var(--navy);
  border-color: var(--plum);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* ──────────────────────────────────────────
   DONATE PAGE
────────────────────────────────────────── */
.donate-hero {
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.donate-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(200,168,78,0.06) 28px, rgba(200,168,78,0.06) 29px
  );
  pointer-events: none;
}

.donate-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.donate-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.donate-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--plum);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.donate-hero-btn {
  font-size: 1rem;
  padding: 1rem 2.8rem;
  letter-spacing: 0.1em;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
}
.donate-hero-btn:hover {
  box-shadow: 8px 8px 0 rgba(0,0,0,0.25);
}

.donate-hero-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin-top: 1rem;
}

/* Impact section */
#donate-impact {
  background: var(--terra-pale);
  position: relative;
  overflow: hidden;
}

#donate-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,128,106,0.2) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

.donate-intro {
  color: #666;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 640px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  position: relative;
}

.impact-card {
  background: var(--white);
  border: 1px solid rgba(160,64,74,0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 14px rgba(16,14,36,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16,14,36,0.11);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.impact-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-dk);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.impact-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* Personal note section */
.donate-note-section {
  background: var(--plum-pale);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.donate-note-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(128,96,176,0.12) 20px, rgba(128,96,176,0.12) 21px
  );
  pointer-events: none;
}

.donate-note-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.donate-note-quote {
  font-family: var(--font-script);
  font-size: 6rem;
  color: var(--plum);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.donate-note-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.85;
  color: #444;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.donate-note-sig {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}

/* Bottom CTA */
.donate-cta-section {
  background: var(--navy-dk);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent, transparent 40px,
    rgba(200,168,78,0.04) 40px, rgba(200,168,78,0.04) 41px
  ),
  repeating-linear-gradient(
    0deg,
    transparent, transparent 40px,
    rgba(200,168,78,0.04) 40px, rgba(200,168,78,0.04) 41px
  );
  pointer-events: none;
}

.donate-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.donate-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.donate-cta-sub {
  font-size: 1rem;
  color: var(--plum);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.donate-tax-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  margin-top: 1.25rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   HAMBURGER MENU
────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* X animation when open */
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 720px) {
  .about-grid,
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrapper { order: -1; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--deep-purple);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    z-index: 99;
    border-top: 2px solid rgba(200,168,78,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
  }
  .nav-links a:last-child { border-bottom: none; }

  .event-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  .event-action { grid-column: 2; grid-row: 2; }
}
