/* =============================================
   HOMEROOM TATTOO — Demo Site Stylesheet
   Palette: pink blush (#fce4ec), deep navy (#1a1a2e),
            hot pink (#e91e8c), charcoal (#2d2d3a), cream (#fff8f9)
   Fonts: Playfair Display (display), Nunito (body)
   ============================================= */

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

:root {
  --pink-light: #fce4ec;
  --pink-mid:   #f8bbd0;
  --pink-hot:   #e91e8c;
  --pink-deep:  #c2185b;
  --navy:       #1a1a2e;
  --navy-mid:   #16213e;
  --charcoal:   #2d2d3a;
  --cream:      #fff8f9;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a5a;
  --text-light: #f0e6ee;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(26,26,46,0.12);
  --shadow-lg:  0 12px 48px rgba(26,26,46,0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary {
  background: var(--pink-hot);
  color: #fff;
  border-color: var(--pink-hot);
}
.btn-primary:hover { background: var(--pink-deep); border-color: var(--pink-deep); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--navy); }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  background: var(--pink-hot);
  color: #fff;
  border-color: var(--pink-hot);
}
.btn-sm:hover { background: var(--pink-deep); }

.full-width { width: 100%; justify-content: center; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-header.light h2 { color: var(--cream); }
.section-header.light .section-label { color: var(--pink-mid); }
.section-header.light .section-sub { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 249, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-mid);
  box-shadow: 0 2px 16px rgba(233,30,140,0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 60px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--pink-light); color: var(--pink-deep); }
.main-nav a.nav-cta {
  background: var(--pink-hot);
  color: #fff;
  padding: 8px 20px;
}
.main-nav a.nav-cta:hover { background: var(--pink-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-mid) 40%, #f48fb1 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
}

.hero-text { padding-bottom: 80px; }

.hero-eyebrow {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-accent {
  color: var(--pink-hot);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-actions .btn-ghost { color: var(--navy); border-color: var(--navy); }
.hero-actions .btn-ghost:hover { background: var(--navy); color: var(--cream); }

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 600;
}
.hero-phone { color: var(--pink-deep); font-weight: 700; }
.hero-phone:hover { text-decoration: underline; }

.hero-photo {
  position: relative;
  align-self: flex-end;
}

.hero-photo img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--pink-hot);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
  padding: 10px 14px;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.hero-wave {
  line-height: 0;
  margin-top: -2px;
}
.hero-wave svg { width: 100%; display: block; }

/* =============================================
   STYLE STRIP
   ============================================= */
.style-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  /* Prevent any content from leaking out horizontally */
  width: 100%;
}

/*
  The track holds two identical copies of the items.
  We animate it from 0 to -50% — at -50% the second copy
  is exactly where the first started, so the loop is seamless
  with no gap and no jitter.
*/
.style-strip-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  /* width is determined by content — two copies side by side */
  width: max-content;
  animation: ticker 22s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.style-tag {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-mid);
  flex-shrink: 0;
}

.style-dot {
  color: var(--pink-hot);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =============================================
   ARTISTS
   ============================================= */
.artists-section {
  background: var(--cream);
  padding: 100px 0;
}

/* Group photo banner */
.artists-group-photo {
  position: relative;
  margin-bottom: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}

.artists-group-photo img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artists-group-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.75));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  padding: 32px 28px 20px;
  text-align: center;
}

/* Grid: 4 columns on desktop, wraps naturally */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Bio card spans full row (2 cols photo + 2 cols info) */
.artist-card--bio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

.artist-card--bio .artist-photo-wrap {
  aspect-ratio: auto;
  min-height: 320px;
}

.artist-card--bio .artist-info {
  padding: 32px 36px;
  justify-content: flex-start;
  gap: 12px;
}

.artist-card--bio .artist-name {
  font-size: 2rem;
  margin-bottom: 4px;
}

/* Standard card */
.artist-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.artist-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.artist-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-photo-wrap img {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.artist-card:hover .artist-overlay { opacity: 1; }

.artist-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-role {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-hot);
}

.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
}

.artist-ig {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
  transition: color var(--transition);
}
.artist-ig:hover { color: var(--pink-hot); }

/* Bio text inside Linh's card */
.artist-bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Style chips */
.artist-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.style-chip {
  background: var(--pink-light);
  color: var(--pink-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--pink-mid);
}

/* Social links row inside bio card */
.artist-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.artist-social-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: color var(--transition);
}
.artist-social-link:hover { color: var(--pink-hot); }

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  background: var(--pink-light);
  padding: 100px 0;
}

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

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--charcoal);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(26,26,46,0.07);
}

.pillar-icon { font-size: 1.8rem; flex-shrink: 0; }

.pillar strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pillar p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

.about-photo-stack { position: relative; }

.about-photo-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-quote-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =============================================
   EVENTS
   ============================================= */
.events-section {
  background: var(--navy);
  padding: 100px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.event-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.event-card:hover {
  background: rgba(233,30,140,0.15);
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.4);
}

.event-icon { font-size: 2.4rem; margin-bottom: 16px; }

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.event-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.events-cta { text-align: center; }

/* =============================================
   INFO / FAQ
   ============================================= */
.info-section {
  background: var(--cream);
  padding: 100px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-col h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 32px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--pink-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--pink-hot);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-q[aria-expanded="true"] { background: var(--pink-light); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-a p { font-size: 0.92rem; color: var(--text-mid); }

/* Care cards */
.care-col { display: flex; flex-direction: column; gap: 24px; }

.care-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-mid);
}

.care-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.care-card ol, .care-card ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-card li { font-size: 0.92rem; color: var(--text-mid); }

.care-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.care-tab {
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid var(--pink-mid);
  background: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.care-tab.active {
  background: var(--pink-hot);
  border-color: var(--pink-hot);
  color: #fff;
}

.care-content { display: block; }
.care-content.hidden { display: none; }

.care-warnings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--pink-mid);
  font-size: 0.88rem;
  color: var(--text-mid);
}

.care-donts {
  margin-top: 8px;
  font-weight: 700;
  color: var(--pink-deep);
}

/* =============================================
   BOOKING FORM
   ============================================= */
.book-section {
  background: var(--navy-mid);
  padding: 100px 0;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

.book-text .section-label { color: var(--pink-mid); }
.book-text h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.book-text > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1rem; }

.book-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--pink-mid); }
.contact-icon { font-size: 1.2rem; }

.book-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.book-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 2px solid var(--pink-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--pink-hot);
}

/* =============================================
   LOCATION
   ============================================= */
.location-section {
  background: var(--pink-light);
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.location-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.location-text > p {
  color: var(--charcoal);
  margin-bottom: 32px;
  font-size: 1rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon { font-size: 1.4rem; flex-shrink: 0; }

.loc-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 4px;
}

.loc-item p, .loc-item a {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.loc-item a:hover { color: var(--pink-hot); text-decoration: underline; }

.location-map iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 16px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--pink-mid); }

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--pink-mid); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  /* Bio card stays full-width but collapses to stacked layout */
  .artist-card--bio { grid-template-columns: 240px 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 2px solid var(--pink-mid);
    box-shadow: var(--shadow);
    gap: 4px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 16px; border-radius: var(--radius-sm); }

  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { padding-bottom: 0; }
  .hero-photo img { border-radius: var(--radius); }
  .hero-badge { top: 12px; right: 12px; width: 60px; height: 60px; font-size: 0.65rem; }

  /* Artist grid: 2 cols, bio card stacks vertically */
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-card--bio {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .artist-card--bio .artist-photo-wrap {
    min-height: 280px;
    aspect-ratio: 4/3;
  }
  .artist-card--bio .artist-info { padding: 24px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-quote-card { position: static; margin-top: 16px; max-width: 100%; }

  .info-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .artists-group-photo { max-height: 240px; }
}
