:root {
  /* Base palette */
  --cream:      #FFFEF5;
  --cream-alt:  #FFF5E4;
  --white:      #FFFFFF;
  --ink:        #2A2A2A;
  --ink-mid:    #5C5C5C;
  --ink-light:  #9C9C9C;
  --border:     #E8E0D5;

  /* Brand accent */
  --coral:      #FF6B6B;
  --coral-lt:   #FFF0F0;
  --coral-dark: #E55555;
  --golden:     #FFD93D;
  --golden-lt:  #FFFAE6;
  --mint:       #6BCB77;
  --mint-lt:    #EDFAEF;

  /* UI */
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow-xs:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 10px 48px rgba(0,0,0,0.13);
  --transition: 0.25s ease;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;
  --font-accent:  'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
h4, h5, h6  { font-family: var(--font-body); font-weight: 700; }
em { font-style: italic; }

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.logo-note { font-size: 1.7rem; color: var(--coral); line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.logo-text .logo-accent { color: var(--coral); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--coral) !important;
  color: white !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink) !important; color: white !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* ─── HERO ─── */
.hero {
  padding: 9rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #FFF8EE 0%, #FFF0F5 45%, #F0F5FF 100%);
}

/* Floating note decorations */
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-deco span {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.11;
  color: var(--coral);
  animation: floatNote linear infinite;
}
.hero-deco span:nth-child(1)  { top: 10%; left:  8%; animation-duration: 7s;  animation-delay: 0s;    font-size: 2.2rem; }
.hero-deco span:nth-child(2)  { top: 20%; left: 78%; animation-duration: 9s;  animation-delay: -2s;   color: #FFD93D; }
.hero-deco span:nth-child(3)  { top: 60%; left:  5%; animation-duration: 11s; animation-delay: -4s;   color: #6BCB77; font-size: 1.4rem; }
.hero-deco span:nth-child(4)  { top: 70%; left: 90%; animation-duration: 8s;  animation-delay: -1s;   font-size: 2.5rem; }
.hero-deco span:nth-child(5)  { top: 40%; left: 92%; animation-duration: 10s; animation-delay: -6s;   color: #B69CF5; font-size: 1.3rem; }
.hero-deco span:nth-child(6)  { top: 85%; left: 30%; animation-duration: 13s; animation-delay: -3s;   color: #FFD93D; font-size: 2rem; }
.hero-deco span:nth-child(7)  { top: 15%; left: 45%; animation-duration: 6s;  animation-delay: -5s;   color: #4D96FF; font-size: 1.2rem; }
.hero-deco span:nth-child(8)  { top: 55%; left: 55%; animation-duration: 12s; animation-delay: -8s;   font-size: 1.6rem; }

@keyframes floatNote {
  0%   { transform: translateY(0)    rotate(0deg); }
  33%  { transform: translateY(-16px) rotate(6deg); }
  66%  { transform: translateY(-8px)  rotate(-4deg); }
  100% { transform: translateY(0)    rotate(0deg); }
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--coral);
  display: block;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.hero h1 em { color: var(--coral); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.75;
}
.hero-ifyouknow {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
  display: block;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── WAVE DIVIDER ─── */
.wave { margin-top: -2px; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer; border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 6px 24px rgba(255,107,107,0.35); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--ink); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral); color: white; transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-alt { background: linear-gradient(145deg, #FFF8EE 0%, #F5F0FF 100%); }
.section-alt > .section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--coral);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.section-desc { color: var(--ink-mid); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── GENRE TILE GRID ─── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.genre-tile {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid transparent;
}
.genre-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.genre-tile-icon { font-size: 2.5rem; line-height: 1; }
.genre-tile-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.genre-tile-count { font-size: 0.8rem; color: var(--ink-light); font-weight: 700; }
.genre-tile-desc { font-size: 0.8rem; color: var(--ink-light); line-height: 1.5; }

/* ─── GENRE FILTER TABS ─── */
.genre-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.genre-tabs::-webkit-scrollbar { display: none; }

.genre-tab {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--border);
  background: white; color: var(--ink-mid);
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.genre-tab:hover { border-color: var(--coral); color: var(--coral); }
.genre-tab.active { background: var(--coral); color: white; border-color: var(--coral); }

.tab-icon  { font-size: 1rem; }
.tab-count {
  background: rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 0.1em 0.5em;
  font-size: 0.75em;
  min-width: 1.4em;
  text-align: center;
}
.genre-tab.active .tab-count { background: rgba(255,255,255,0.25); }

/* ─── PRODUCT GRID ─── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.product-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-genre {
  position: absolute; top: 12px; left: 12px;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem; font-weight: 700;
  background: white;
  box-shadow: var(--shadow-sm);
}

.product-card-body { padding: 1.25rem 1.25rem 0.75rem; }
.product-card-lyric {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-meta {
  font-size: 0.8rem;
  color: var(--ink-light);
  display: flex; align-items: center; gap: 0.4rem;
  flex-wrap: wrap;
}
.product-card-meta strong { color: var(--ink-mid); font-weight: 700; }
.product-card-meta em { font-style: normal; }
.meta-sep { opacity: 0.4; }

.product-card-actions { display: flex; gap: 0.5rem; padding: 0.75rem 1.25rem 1.25rem; }
.product-card-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: var(--transition);
  font-family: var(--font-body);
  display: block;
}
.btn-shopify { background: #F0FFF4; color: #276749; border: 1.5px solid #A8D5B5; }
.btn-shopify:hover { background: #276749; color: white; }
.btn-etsy    { background: #FFF5EE; color: #B35300; border: 1.5px solid #F5C29A; }
.btn-etsy:hover { background: #B35300; color: white; }

/* Genre section (catalog page) */
.genre-section { margin-bottom: 4rem; }
.genre-section.hidden { display: none; }
.genre-section-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}
.genre-section-icon { font-size: 1.75rem; }
.genre-section-info {}
.genre-section-name { font-size: 1.4rem; font-family: var(--font-display); line-height: 1.2; }
.genre-section-desc { font-size: 0.82rem; color: var(--ink-light); margin-top: 0.2rem; }
.genre-section-count {
  margin-left: auto;
  font-size: 0.78rem; font-weight: 700;
  color: var(--ink-light);
  background: var(--cream-alt);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

/* Empty state */
.collection-empty { text-align: center; padding: 4rem 2rem; color: var(--ink-light); grid-column: 1/-1; }
.collection-empty .empty-note { font-size: 3rem; display: block; margin-bottom: 1rem; }
.collection-empty code { font-family: monospace; color: var(--coral); background: var(--coral-lt); padding: 0.1em 0.4em; border-radius: 4px; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(42,42,42,0.72);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 840px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  animation: modalIn 0.28s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.93); } to { opacity:1; transform: scale(1); } }

.modal-img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.modal-body { padding: 2.5rem; display: flex; flex-direction: column; }

.modal-close {
  align-self: flex-end;
  background: var(--cream); border: none;
  color: var(--ink-mid); font-size: 1.05rem;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  margin-bottom: 1.5rem;
}
.modal-close:hover { background: var(--coral); color: white; }

.modal-genre-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.9rem; font-weight: 700;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.modal-lyric {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 0.75rem;
  position: relative;
}
.modal-lyric::before { content: '\201C'; color: var(--coral); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.modal-lyric::after  { content: '\201D'; color: var(--coral); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; margin-left: 0.1em; }

.modal-attribution { font-size: 0.875rem; color: var(--ink-mid); margin-bottom: 0.5rem; }
.modal-attribution strong { color: var(--ink); font-weight: 700; }

.modal-desc { color: var(--ink-mid); font-size: 0.9rem; line-height: 1.75; flex: 1; margin: 1rem 0 2rem; }

.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-btn-shopify {
  display: block; padding: 0.9rem 1.5rem;
  background: var(--coral); color: white;
  border-radius: 50px; text-align: center;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition);
}
.modal-btn-shopify:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,107,0.3); }
.modal-btn-etsy {
  display: block; padding: 0.9rem 1.5rem;
  background: white; color: #B35300;
  border-radius: 50px; text-align: center;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  border: 2px solid #F5C29A;
  transition: var(--transition);
}
.modal-btn-etsy:hover { background: #B35300; color: white; border-color: #B35300; }
.modal-coming-soon {
  text-align: center; padding: 1.1rem;
  color: var(--ink-light); font-size: 0.875rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 1rem;
}

/* ─── HOMEPAGE: FEATURED BAND ─── */
.featured-band {
  background: linear-gradient(135deg, #FFF8EE 0%, #F5EEFF 50%, #EEFAF5 100%);
  padding: 5rem 2rem;
}
.featured-band-inner { max-width: 1200px; margin: 0 auto; }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--ink-mid); margin-bottom: 1rem; line-height: 1.8; }
.about-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--coral);
  border-left: 4px solid var(--coral);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.6;
}

.fair-use-box {
  background: var(--golden-lt);
  border: 2px solid var(--golden);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.fair-use-box h4 { font-size: 0.95rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.fair-use-box p { font-size: 0.85rem; color: var(--ink-mid); margin: 0; line-height: 1.75; }

.values-list { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 1rem; align-items: flex-start;
}
.value-icon { font-size: 1.75rem; flex-shrink: 0; }
.value-card h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.value-card p { color: var(--ink-light); font-size: 0.875rem; margin: 0; line-height: 1.6; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1rem; }
.contact-info p { color: var(--ink-mid); line-height: 1.8; margin-bottom: 1rem; }
.contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.contact-row strong { color: var(--coral); min-width: 55px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-row a { color: var(--coral); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,107,107,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: white; }

.form-submit {
  width: 100%; padding: 1rem;
  background: var(--coral); color: white;
  border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,107,0.3); }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: var(--mint-lt); border: 2px solid #A8E6A8; color: #1A6B1A; }
.alert-error   { background: #FFEEEE;      border: 2px solid #FFB3B3; color: #CC0000; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 5rem 2rem 3rem; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero p { color: var(--ink-mid); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-logo .logo-accent { color: var(--coral); }
.footer-tagline { font-family: var(--font-accent); font-size: 1.1rem; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; font-weight: 700; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-fairuse { font-size: 0.72rem; color: rgba(255,255,255,0.22); max-width: 640px; margin: 0.75rem auto 0; line-height: 1.65; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .modal { grid-template-columns: 1fr; }
  .modal-img { min-height: 240px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .genre-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .section { padding: 3.5rem 1.25rem; }
}
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}
