/* ============================================================
   Matt Rosenfeld Guitar Studio — Shared Stylesheet
   styles.css · All pages link to this file
   ============================================================ */

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

:root {
  --cream: #f5f0e8;
  --dark: #1a1510;
  --dark-mid: #2a2018;
  --gold: #c8922a;
  --gold-light: #d4a84b;
  --text-dark: #1a1510;
  --text-mid: #4a3f2f;
  --text-light: #8a7a6a;
  --border-dark: rgba(200,146,42,0.2);
  --border-light: rgba(26,21,16,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* Active page highlight — each page sets its own link gold via inline style or class */
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta a {
  background: var(--text-dark);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
}

.nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

/* Contact page: CTA button gold to indicate active */
.nav-links .nav-cta a.active {
  background: var(--gold);
  color: var(--dark) !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
}

/* ============================================================
   HERO (index.html only)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 60px); /* FIX: was min-height, now fixed height */
  max-height: 900px;          /* FIX: cap so tall screens don't over-stretch */
}

.hero-left {
  padding: 4rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--border-light);
  overflow-y: auto;
}

.hero-geo {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-hero-primary:hover { background: var(--gold); color: var(--dark); }

.btn-hero-secondary {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-hero-secondary:hover { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}

.hero-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.95) 0%, transparent 100%);
  padding: 3rem 2.5rem 2.5rem;
}

.hero-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,240,232,0.9);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.hero-quote cite {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
}

/* ============================================================
   REVIEW BAR
   ============================================================ */
.review-bar {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.review-bar-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.review-bar-link {
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.2s, color 0.2s;
}

.review-bar-link:hover { border-color: var(--gold); color: var(--gold); }
.review-bar-link .stars { color: var(--gold); font-size: 0.7rem; }

/* ============================================================
   PILLARS (index.html)
   ============================================================ */
.pillars { background: var(--dark); padding: 5rem 2.5rem; }

.pillars-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: 2rem;
  border-right: 1px solid var(--border-dark);
}

.pillar:last-child { border-right: none; }

.pillar-icon {
  font-size: 1.3rem;
  color: rgba(245,240,232,0.3);
  margin-bottom: 1.2rem;
  display: block;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pillar-body {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 5rem 2.5rem 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.page-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.divider { width: 100%; height: 1px; background: var(--border-light); }

.section-light { background: var(--cream); padding: 5rem 2.5rem; }
.section-dark { background: var(--dark); padding: 5rem 2.5rem; }
.section-inner { max-width: 860px; margin: 0 auto; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.section-dark .section-heading { color: #fff; }
.section-light .section-heading { color: var(--text-dark); }
.section-heading em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-dark .section-intro { color: rgba(245,240,232,0.65); }
.section-light .section-intro { color: var(--text-mid); }

/* ============================================================
   PROSE
   ============================================================ */
.prose { font-size: 1rem; color: var(--text-mid); line-height: 1.85; max-width: 680px; }
.prose p { margin-bottom: 1.4rem; }
.prose strong { color: var(--text-dark); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; margin-top: 2rem; }
.prose blockquote { border-left: 3px solid var(--gold); padding: 0.8rem 1.2rem; margin: 1.5rem 0; font-style: italic; color: var(--text-mid); }
.prose blockquote.pullquote-dark { background: none; border: none; border-left: 3px solid var(--gold); padding: 0.4rem 0 0.4rem 1.4rem; margin: 2.2rem 0; font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2vw, 1.25rem); font-style: italic; font-weight: 700; color: var(--dark); line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--dark-mid); padding: 6rem 2.5rem; text-align: center; }
.cta-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-section h2 em { font-style: italic; color: var(--gold); }

.cta-section p {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  background: var(--cream);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover { background: var(--gold); color: var(--dark); }

.btn-primary {
  display: inline-block;
  background: var(--cream);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(245,240,232,0.5);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border-dark);
}

footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.8);
 } 
  .footer-contact a {
  color: var(--gold-light);
}

/* ============================================================
   CREDENTIALS (background.html)
   ============================================================ */
.credentials { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }

.credential-item { border-top: 1px solid var(--border-dark); padding-top: 1.5rem; }
.credential-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.credential-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.credential-sub { font-size: 0.82rem; color: rgba(245,240,232,0.5); margin-bottom: 0.8rem; }
.credential-desc { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.8; max-width: 620px; }

.photo-caption { font-size: 0.8rem; color: var(--text-light); margin-top: 0.6rem; font-style: italic; }
img { max-width: 100%; height: auto; display: block; border-radius: 2px; }

/* ============================================================
   APPROACH PAGE
   ============================================================ */
.method-list { display: flex; flex-direction: column; gap: 0; }
.method-item { border-top: 1px solid var(--border-dark); padding: 2rem 0; display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; }
.method-item:last-child { border-bottom: 1px solid var(--border-dark); }
.method-number { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); opacity: 0.7; padding-top: 0.15rem; }
.method-content h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.method-content p { font-size: 0.92rem; color: rgba(245,240,232,0.7); line-height: 1.8; }
.method-content .example { font-size: 0.85rem; color: rgba(200,146,42,0.7); margin-top: 0.6rem; font-style: italic; }

.pullquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 2.5rem 0; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(245,240,232,0.8); max-width: 600px; }

.pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pick-card { border: 1px solid var(--border-dark); border-radius: 3px; padding: 1.5rem; }
.pick-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.pick-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.pick-card p { font-size: 0.85rem; color: rgba(245,240,232,0.65); line-height: 1.7; }
.pick-card .example { font-size: 0.78rem; color: rgba(245,240,232,0.35); margin-top: 0.5rem; font-style: italic; }

.aside-card { background: rgba(200,146,42,0.07); border-left: 3px solid var(--gold); padding: 1.2rem 1.5rem; margin: 2rem 0; max-width: 640px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-style: italic; }

/* ============================================================
   REVIEWS (testimonials.html)
   ============================================================ */
.pullquote-hero { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic; color: #fff; line-height: 1.4; margin-bottom: 0.6rem; }
.pullquote-attr { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 3rem; }

.review-list { display: flex; flex-direction: column; }
.review-item { border-top: 1px solid var(--border-dark); padding: 2.5rem 0; }
.review-item:last-child { border-bottom: 1px solid var(--border-dark); }
.review-text { font-size: 0.95rem; color: rgba(245,240,232,0.75); line-height: 1.85; max-width: 660px; margin-bottom: 1rem; }
.review-attr { font-size: 0.8rem; }
.review-attr strong { color: var(--gold); font-weight: 600; display: block; }
.review-attr span { color: rgba(245,240,232,0.4); }

.review-list-light .review-item { border-top-color: var(--border-light); border-bottom-color: var(--border-light); }
.review-list-light .review-text { color: var(--text-mid); }
.review-list-light .review-attr strong { color: var(--gold); }
.review-list-light .review-attr span { color: var(--text-light); }

.review-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }
.review-badge { border: 1px solid var(--border-dark); border-radius: 3px; padding: 0.7rem 1.2rem; font-size: 0.8rem; color: rgba(245,240,232,0.65); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s, color 0.2s; }
.review-badge:hover { border-color: var(--gold); color: var(--gold); }
.review-badge .stars { color: var(--gold); }

/* ============================================================
   RATES PAGE
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.pricing-card { border: 1px solid var(--border-light); border-radius: 3px; padding: 2rem 1.5rem; text-align: center; }
.pricing-card.featured { border-color: var(--gold); background: rgba(200,146,42,0.04); }
.pricing-duration { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.pricing-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 1.2rem; }
.pricing-featured-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2rem; font-weight: 700; color: var(--text-dark); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border-dark); padding: 1.8rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border-dark); }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.faq-a { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.8; max-width: 620px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.info-value { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.info-value a { color: var(--text-dark); text-decoration: none; }
.info-value a:hover { color: var(--gold); }

.review-links { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.5rem; }
.review-link { border: 1px solid var(--border-light); border-radius: 3px; padding: 0.5rem 0.9rem; font-size: 0.75rem; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: border-color 0.2s, color 0.2s; }
.review-link:hover { border-color: var(--gold); color: var(--gold); }
.review-link .stars { color: var(--gold); font-size: 0.7rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none; }
.btn-submit { background: var(--dark); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; padding: 0.95rem 2rem; border-radius: 2px; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.btn-submit:hover { background: var(--gold); color: var(--dark); }
.form-success { display: none; padding: 1.5rem; background: rgba(200,146,42,0.08); border-left: 3px solid var(--gold); font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

.service-section { background: var(--dark); padding: 4rem 2.5rem; }
.service-section .section-inner p { font-size: 0.95rem; color: rgba(245,240,232,0.65); line-height: 1.85; max-width: 680px; }
.service-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.service-section h2 em { font-style: italic; color: var(--gold); }

/* ============================================================
   RESOURCES / TAB PAGE
   ============================================================ */
.resource-list { display: flex; flex-direction: column; }
.resource-item { border-top: 1px solid var(--border-dark); padding: 2rem 0; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.resource-item:last-child { border-bottom: 1px solid var(--border-dark); }
.resource-level { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.resource-artist { font-size: 0.75rem; color: rgba(245,240,232,0.4); margin-bottom: 0.2rem; }
.resource-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.resource-desc { font-size: 0.88rem; color: rgba(245,240,232,0.65); line-height: 1.75; max-width: 520px; }
.resource-meta { font-size: 0.75rem; color: rgba(245,240,232,0.3); margin-top: 0.5rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.resource-actions { display: flex; flex-direction: column; gap: 0.5rem; min-width: 100px; align-items: flex-end; }
.resource-btn { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 0.5rem 1rem; border-radius: 2px; transition: all 0.2s; white-space: nowrap; }
.btn-view { background: transparent; border: 1px solid var(--border-dark); color: rgba(245,240,232,0.6); }
.btn-view:hover { border-color: var(--gold); color: var(--gold); }
.btn-download { background: var(--gold); color: var(--dark); border: 1px solid var(--gold); }
.btn-download:hover { background: var(--gold-light); }

.resource-list-light .resource-item { border-top-color: var(--border-light); border-bottom-color: var(--border-light); }
.resource-list-light .resource-level { color: var(--gold); }
.resource-list-light .resource-artist { color: var(--text-light); }
.resource-list-light .resource-title { color: var(--text-dark); }
.resource-list-light .resource-desc { color: var(--text-mid); }
.resource-list-light .resource-meta { color: var(--text-light); }
.resource-list-light .btn-view { border-color: var(--border-light); color: var(--text-mid); }
.resource-list-light .btn-view:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   MUSIC PAGE — AUDIO PLAYER
   ============================================================ */
.track-list { display: flex; flex-direction: column; }
.track-card { border-top: 1px solid var(--border-dark); padding: 2.5rem 0; }
.track-card:last-child { border-bottom: 1px solid var(--border-dark); }
.track-band { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.track-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; line-height: 1.2; }
.track-desc { font-size: 0.92rem; line-height: 1.8; color: rgba(245,240,232,0.7); max-width: 600px; margin-bottom: 1.5rem; }
.track-credits { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.credit-line { font-size: 0.75rem; line-height: 1.6; color: rgba(245,240,232,0.38); letter-spacing: 0.02em; }
.credit-line strong { color: rgba(245,240,232,0.55); font-weight: 500; }

.audio-player { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: 3px; padding: 0.75rem 1rem; max-width: 500px; }
.play-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.play-btn:hover { background: var(--gold-light); }
.play-btn svg { width: 18px; height: 18px; fill: var(--dark); }
.play-btn .icon-pause { display: none; }
.play-btn.playing .icon-play { display: none; }
.play-btn.playing .icon-pause { display: block; }
.player-controls { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.progress-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; cursor: pointer; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.player-time { display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(245,240,232,0.4); font-variant-numeric: tabular-nums; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-sticky-cta { display: none; }

/* ============================================================
   PHOTOS — GALLERY & LIGHTBOX
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--dark);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.4s;
}

.gallery-item:hover img { opacity: 0.75; transform: scale(1.02); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, transparent 100%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26,21,16,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-inner .gallery-caption {
  position: static;
  opacity: 1;
  transform: none;
  background: none;
  padding: 0;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: none;
  border: none;
  color: rgba(245,240,232,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; height: auto; max-height: none; display: flex; flex-direction: column; }
  .hero-right { order: 1; height: 56vw; min-height: 220px; max-height: 320px; }
  .hero-right img { object-position: 80% 25%; }
  .hero-left { order: 2; padding: 2rem 1.5rem 2.5rem; border-right: none; justify-content: flex-start; overflow-y: visible; }
  .hero-geo { display: none; }
  .hero-h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 1rem; }
  .hero-body { font-size: 0.95rem; margin-bottom: 1.8rem; }
  .hero-actions { margin-bottom: 2rem; gap: 1rem; }
  .btn-hero-primary { padding: 0.85rem 1.5rem; font-size: 0.76rem; }
  .hero-stats { padding-top: 1.8rem; gap: 2rem; }

  /* Pillars */
  .pillars-inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 2rem 1.5rem; }
  .pillar:last-child { border-bottom: none; }

  /* General sections */
  .review-bar { padding: 1rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .section-light, .section-dark { padding: 3.5rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }

  /* Rates */
  .pricing-grid { grid-template-columns: 1fr; max-width: 280px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Resources */
  .resource-item { grid-template-columns: 1fr; }
  .resource-actions { flex-direction: row; align-items: flex-start; }

  /* Approach */
  .pick-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { columns: 2; }
  .gallery-caption { opacity: 1; transform: translateY(0); }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  /* Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--dark);
    border-top: 1px solid var(--border-dark);
    padding: 0.9rem 1.5rem;
  }
  .mobile-sticky-cta a {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: 2px;
  }
  body { padding-bottom: 70px; }
}

/* ============================================================
   NAV DROPDOWNS (desktop)
   ============================================================ */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--gold); }

.nav-caret {
  font-size: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(26,21,16,0.1);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 200;
  white-space: nowrap;
}

.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* Small arrow pointing up */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: var(--cream);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(200,146,42,0.05);
}

.nav-dropdown-menu li a.active { color: var(--gold); }

/* "Coming Soon" badge in nav */
.nav-badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 1px 4px;
  line-height: 1.4;
  opacity: 0.7;
}

/* Mobile: dropdowns become flat list items */
@media (max-width: 768px) {
  .nav-dropdown-toggle {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 0;
  }
  .nav-dropdown-menu {
    display: flex !important;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border-light);
    border-radius: 0;
    padding: 0.3rem 0 0.3rem 1rem;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0;
    background: transparent;
    min-width: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu li a {
    font-size: 0.8rem;
    padding: 0.3rem 0;
    letter-spacing: 0.06em;
  }
  .nav-caret { display: none; }
}

/* ============================================================
   PAGE HERO SUBTITLE (booking, blog, video)
   ============================================================ */
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 0.5rem;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section { padding: 4rem 2.5rem 5rem; }

.booking-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.booking-context-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.booking-steps { display: flex; flex-direction: column; gap: 1.8rem; margin-bottom: 2.5rem; }

.booking-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.booking-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.booking-step-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.booking-step-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  background: rgba(200,146,42,0.03);
}

.booking-detail-item {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.booking-detail-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.booking-detail-item strong { color: var(--text-dark); }

.booking-quote {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1.2rem;
  margin: 0;
}

.booking-quote cite {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: normal;
  margin-top: 0.5rem;
}

.booking-calendar {
  position: sticky;
  top: 80px;
}

/* Calendly placeholder — shown until Calendly embed is added */
.calendly-placeholder {
  border: 1px solid var(--border-light);
  border-radius: 3px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.calendly-placeholder-inner {
  text-align: center;
  padding: 3rem 2rem;
}

.calendly-placeholder-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.2rem;
}

.calendly-placeholder-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.calendly-placeholder-inner p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto 1.8rem;
}

.section-label-light {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking-layout { grid-template-columns: 1fr; gap: 3rem; }
  .booking-calendar { position: static; }
  .booking-section { padding: 3rem 1.5rem; }
}

/* ============================================================
   BLOG / VIDEO COMING SOON PAGES
   ============================================================ */
.coming-soon-block { margin-bottom: 3rem; }
.coming-soon-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.coming-soon-body {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.blog-preview-list { display: flex; flex-direction: column; gap: 0; }

.blog-preview-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border-top: 1px solid var(--border-light);
  padding: 1.8rem 0;
}

.blog-preview-item:last-child { border-bottom: 1px solid var(--border-light); }

.blog-preview-item-dark {
  border-top-color: var(--border-dark);
}
.blog-preview-item-dark:last-child { border-bottom-color: var(--border-dark); }

.blog-preview-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 3px;
  opacity: 0.7;
}

.blog-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.blog-preview-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.coming-soon-cta { padding-top: 3rem; }

.coming-soon-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.coming-soon-cta h2 em { font-style: italic; color: var(--gold); }

.coming-soon-cta p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* btn-primary on light bg */
.section-light .btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.section-light .btn-primary:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   BOOKING PAGE — RATES BLOCK
   ============================================================ */
.booking-rates { margin-bottom: 2.5rem; }

.booking-rates-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.booking-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.booking-rate-card {
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 1rem 0.75rem;
  text-align: center;
  position: relative;
}

.booking-rate-featured {
  border-color: var(--gold);
  background: rgba(200,146,42,0.04);
}

.booking-rate-popular {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.booking-rate-duration {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.booking-rate-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin: 0.25rem 0 0.6rem;
}

.booking-rate-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.booking-rates-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-light);
}

/* ============================================================
   BOOKING PAGE — SKIP LINK & LESSONS PAGE EXTRAS
   ============================================================ */
.booking-skip-link {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

.booking-skip-link a {
  color: var(--gold);
  text-decoration: none;
}

.booking-skip-link a:hover { text-decoration: underline; }

.booking-consult-nudge {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-light);
}

.booking-consult-nudge a {
  color: var(--gold);
  text-decoration: none;
}

.booking-consult-nudge a:hover { text-decoration: underline; }

.lessons-current-students {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  background: rgba(200,146,42,0.03);
}

.lessons-current-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lessons-current-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.lessons-current-body a {
  color: var(--gold);
  text-decoration: none;
}

.lessons-current-body a:hover { text-decoration: underline; }

/* ============================================================
   BOOKING PAGE HERO ACTIONS
   ============================================================ */
.hero-booking-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-lesson-link {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-lesson-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .hero-booking-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* Extended sessions note */
.booking-rates-extended {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  font-style: italic;
}

/* Studio policies block */
.lessons-policies {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 3px;
}

/* Pick icon SVG fix */
.pick-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.pick-icon { font-size: inherit; margin-bottom: 0; }

/* ============================================================
   CONTRAST FIXES — light text on cream backgrounds
   ============================================================ */

/* Method numbers — darker gold on cream, full opacity */
.method-number {
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* Example text in method items on cream — darker gold */
.method-content .example {
  color: #9a6e1a !important;
}

/* Strumming breakdown example text on cream */
.strum-level-example {
  color: #9a6e1a;
}

/* Booking rate label on cream */
.booking-rate-label {
  color: var(--text-mid) !important;
}

/* Booking rates note/extended on cream */
.booking-rates-note,
.booking-rates-extended {
  color: var(--text-mid) !important;
}

/* Lessons current body links and text on cream */
.lessons-current-body {
  color: var(--text-mid);
}

/* Booking consult nudge on cream */
.booking-consult-nudge p {
  color: var(--text-mid);
}

/* ============================================================
   MOBILE FLAT NAV
   ============================================================ */

/* Hidden on desktop — mobile only */
.nav-links-mobile {
  display: none;
  list-style: none;
}

@media (max-width: 768px) {
  /* Hide the desktop dropdown nav on mobile */
  .nav-links { display: none !important; }

  /* Show flat mobile nav when open */
  .nav-links-mobile {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .nav-links-mobile.open { display: flex; }

  .nav-links-mobile li a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
  }

  .nav-links-mobile li a:hover,
  .nav-links-mobile li a.active { color: var(--gold); }

  .nav-links-mobile .nav-cta a {
    background: var(--text-dark);
    color: var(--cream) !important;
    padding: 0.75rem 1.1rem;
    border-radius: 2px;
    display: block;
    text-align: center;
  }

  .nav-links-mobile .nav-cta a:hover {
    background: var(--gold);
    color: var(--dark) !important;
  }

  .nav-links-mobile .nav-badge {
    font-size: 0.58rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    padding: 1px 4px;
    color: var(--gold);
    opacity: 0.7;
    margin-left: 4px;
  }
}
