/* =========================================================
   Straka Music — Shared Stylesheet
   Used by every page. Edit here to update site-wide.
   ========================================================= */

:root {
  /* Warm, classical palette */
  --ivory: #f7f1e6;
  --ivory-deep: #efe6d3;
  --cream: #faf6ed;
  --burgundy: #6b1d2c;
  --burgundy-deep: #4a1320;
  --gold: #b8893d;
  --gold-soft: #d4a85a;
  --espresso: #2c1f15;
  --espresso-soft: #4a3826;
  --rule: #c9b890;

  --display: 'Cormorant Garamond', 'Garamond', serif;
  --body: 'Lora', 'Georgia', serif;
}

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

body {
  font-family: var(--body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 137, 61, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 29, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--burgundy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--espresso);
}

/* ============== NAVIGATION ============== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 184, 144, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .ornament { color: var(--gold); font-size: 18px; }
.nav-logo a { color: var(--burgundy); }

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

.nav-links a {
  font-family: var(--display);
  font-size: 17px;
  color: var(--espresso);
  letter-spacing: 0.04em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
  font-size: 15px !important;
}
.nav-cta:hover { background: var(--burgundy-deep); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--burgundy);
  font-size: 24px;
  cursor: pointer;
}

/* Dropdown for "Learn More" */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--rule);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(74, 19, 32, 0.1);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 16px;
  color: var(--espresso);
  white-space: nowrap;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--ivory-deep); color: var(--burgundy); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 29, 44, 0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn-secondary:hover { background: var(--burgundy); color: var(--cream); }

/* ============== HERO (HOMEPAGE) ============== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 140px 80px 80px;
  position: relative;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 80px; right: 60px;
  width: 220px; height: 220px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px; left: 40px;
  width: 140px; height: 140px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  transform: rotate(45deg);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }

.hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--espresso);
}
.hero h1 em { font-style: italic; color: var(--burgundy); font-weight: 400; }

.hero-subtitle {
  font-size: 19px;
  color: var(--espresso-soft);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============== PORTRAIT FRAME ============== */
.portrait-frame {
  position: relative;
  width: 380px;
  aspect-ratio: 4/5;
  background: var(--ivory-deep);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Landscape variant for in-action photos */
.landscape-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 5/4;
  background: var(--ivory-deep);
}
.landscape-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.landscape-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.landscape-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============== SECTION SHARED ============== */
section { position: relative; z-index: 2; }

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--burgundy); }

.section-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--espresso-soft);
  font-size: 18px;
}

/* ============== ABOUT (HOMEPAGE) ============== */
.about {
  padding: 120px 80px;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image { position: relative; display: flex; justify-content: center; }
.about-image .portrait-frame { width: 100%; max-width: 420px; }
.about-image .landscape-frame { width: 100%; max-width: 520px; }

.about-text h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; color: var(--burgundy); }

.about-text p {
  margin-bottom: 18px;
  color: var(--espresso-soft);
}

.credentials {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credential-icon {
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-text {
  font-size: 15px;
  color: var(--espresso);
  line-height: 1.5;
}

.credential-text strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  display: block;
  margin-bottom: 2px;
}

/* ============== LESSONS (HOMEPAGE) ============== */
.lessons {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}

.lesson-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.lesson-cards--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  gap: 32px;
}

.lesson-card {
  background: var(--cream);
  padding: 56px 44px;
  position: relative;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74, 19, 32, 0.12);
}
.lesson-card::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}

.lesson-card h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--burgundy);
  position: relative;
  padding-top: 22px;
}

.lesson-card h3::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.lesson-card .lesson-tag {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 22px;
}

.lesson-card p {
  color: var(--espresso-soft);
  margin-bottom: 18px;
  text-align: center;
  font-size: 16px;
}

.lesson-features {
  list-style: none;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.lesson-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--espresso);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lesson-features li::before {
  content: '♪';
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

/* ============== RATES ============== */
.rates {
  padding: 120px 80px;
  background: var(--cream);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.rate-card {
  background: var(--ivory);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rate-card::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74, 19, 32, 0.12);
}

.rate-card--featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.rate-card--featured::before { border-color: var(--gold-soft); opacity: 0.5; }
.rate-card--featured .rate-label { color: var(--gold-soft); }
.rate-card--featured .rate-price { color: var(--cream); }
.rate-card--featured .rate-price .currency { color: var(--gold-soft); }
.rate-card--featured .rate-meta { color: rgba(247, 241, 230, 0.75); }
.rate-card--featured .rate-desc { color: rgba(247, 241, 230, 0.85); }

.rate-label {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.rate-price {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.rate-price .currency {
  font-size: 42px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--gold);
  font-style: italic;
}

.rate-meta {
  font-family: var(--display);
  font-style: italic;
  color: var(--espresso-soft);
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.rate-desc {
  color: var(--espresso-soft);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

.scheduling-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0 0;
  border-top: 1px solid var(--rule);
}

.scheduling-item {
  text-align: left;
}

.scheduling-item h4 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--burgundy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scheduling-item h4::before {
  content: '❦';
  color: var(--gold);
  font-size: 18px;
}

.scheduling-item p {
  color: var(--espresso-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============== APPROACH ============== */
.approach {
  padding: 120px 80px;
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  opacity: 0.15;
}
.approach::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  opacity: 0.15;
}
.approach .section-title { color: var(--cream); }
.approach .section-title em { color: var(--gold-soft); }
.approach .section-eyebrow { color: var(--gold-soft); }
.approach .section-eyebrow::before, .approach .section-eyebrow::after { background: var(--gold-soft); }
.approach .section-intro { color: rgba(247, 241, 230, 0.85); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.approach-item {
  text-align: center;
  padding: 30px 20px;
}
.approach-number {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 14px;
}
.approach-item h3 {
  color: var(--cream);
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 500;
}
.approach-item p {
  color: rgba(247, 241, 230, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

/* Learn-more callout strip on homepage */
.learn-more-strip {
  padding: 80px 80px;
  background: var(--cream);
  text-align: center;
}
.learn-more-strip h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.learn-more-strip h2 em { font-style: italic; color: var(--burgundy); }
.learn-more-strip > p {
  color: var(--espresso-soft);
  max-width: 560px;
  margin: 0 auto 40px;
}

.learn-more-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.learn-card {
  display: block;
  padding: 36px 30px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  text-align: left;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--espresso);
}
.learn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 19, 32, 0.12);
  color: var(--espresso);
}
.learn-card .learn-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.learn-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--burgundy);
}
.learn-card p {
  color: var(--espresso-soft);
  font-size: 15px;
  margin-bottom: 14px;
}
.learn-card .read-more {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
}

/* ============== CONTACT ============== */
.contact {
  padding: 120px 80px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-info h2 em { font-style: italic; color: var(--burgundy); }

.contact-info > p {
  color: var(--espresso-soft);
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-method:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-deep);
  border: 1px solid var(--gold);
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact-method-label {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-method-value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--espresso);
  font-weight: 500;
}
.contact-method-value a { color: var(--espresso); }
.contact-method-value a:hover { color: var(--burgundy); }

.contact-form {
  background: var(--ivory);
  padding: 44px 38px;
  position: relative;
  border: 1px solid var(--rule);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--burgundy);
}
.contact-form .form-subtitle {
  font-family: var(--display);
  font-style: italic;
  color: var(--espresso-soft);
  margin-bottom: 28px;
  font-size: 17px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  color: var(--espresso);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 15px;
  color: var(--espresso);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============== SUB-PAGE LAYOUT ============== */
.subpage-hero {
  padding: 160px 80px 80px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  text-align: center;
  position: relative;
}
.subpage-hero::after {
  content: '❦';
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 24px;
}

.subpage-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.subpage-hero h1 em { font-style: italic; color: var(--burgundy); }

.subpage-hero .lede {
  font-size: 20px;
  color: var(--espresso-soft);
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--display);
  font-style: italic;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 30px 100px;
}

.article-body h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 50px 0 18px;
  color: var(--espresso);
}
.article-body h2 em { font-style: italic; color: var(--burgundy); }
.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-size: 24px;
  margin: 36px 0 14px;
  color: var(--burgundy);
}

.article-body p {
  margin-bottom: 18px;
  color: var(--espresso-soft);
  font-size: 17px;
  line-height: 1.8;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
  color: var(--espresso-soft);
}
.article-body li { margin-bottom: 10px; line-height: 1.7; }

.article-body blockquote {
  margin: 30px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: var(--espresso);
  line-height: 1.5;
}

.article-cta {
  margin-top: 60px;
  padding: 40px;
  background: var(--ivory-deep);
  text-align: center;
  position: relative;
  border: 1px solid var(--rule);
}
.article-cta::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.article-cta h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--burgundy);
}
.article-cta p {
  color: var(--espresso-soft);
  margin-bottom: 22px;
}

/* Related articles strip on sub-pages */
.related-strip {
  background: var(--ivory);
  padding: 70px 30px;
  border-top: 1px solid var(--rule);
}
.related-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.related-strip h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 32px;
  color: var(--espresso);
}
.related-strip h3 em { font-style: italic; color: var(--burgundy); }
.related-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-card {
  display: block;
  padding: 28px 26px;
  background: var(--cream);
  border: 1px solid var(--rule);
  color: var(--espresso);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 19, 32, 0.1);
  color: var(--espresso);
}
.related-card h4 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.related-card p {
  color: var(--espresso-soft);
  font-size: 15px;
}

/* ============== SEASONAL CALLOUT ============== */
.seasonal-callout {
  padding: 90px 30px;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seasonal-callout::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 61, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.seasonal-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.seasonal-ornament {
  color: var(--gold-soft);
  font-size: 18px;
  margin-bottom: 22px;
  letter-spacing: 0.4em;
}

.seasonal-callout h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 500;
}
.seasonal-callout h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.seasonal-callout p {
  color: rgba(247, 241, 230, 0.85);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.seasonal-callout .btn-secondary {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}
.seasonal-callout .btn-secondary:hover {
  background: var(--gold-soft);
  color: var(--espresso);
  border-color: var(--gold-soft);
}

/* ============== FOOTER ============== */
footer {
  background: var(--espresso);
  color: var(--ivory-deep);
  padding: 50px 80px 30px;
  text-align: center;
}

.footer-ornament {
  color: var(--gold-soft);
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: 0.4em;
}

.footer-name {
  font-family: var(--display);
  font-size: 26px;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.footer-tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-size: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 15px;
}
.footer-links a {
  color: var(--ivory-deep);
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-meta {
  font-size: 14px;
  color: rgba(247, 241, 230, 0.6);
  padding-top: 22px;
  border-top: 1px solid rgba(201, 184, 144, 0.2);
  margin-top: 22px;
}

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .lesson-cards--three {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
  }
  .lesson-card { padding: 44px 32px; }
}

@media (max-width: 960px) {
  nav { padding: 14px 24px; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links.open { max-height: 600px; padding: 16px 0; }
  .nav-links li { width: 100%; text-align: center; padding: 12px 0; }
  .menu-toggle { display: block; }

  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 6px;
  }
  .has-dropdown .dropdown a { padding: 6px 0; font-size: 15px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 50px;
    text-align: center;
  }
  .hero-buttons { justify-content: center; }
  .hero::before, .hero::after { display: none; }
  .portrait-frame { width: 280px; }

  .about, .lessons, .approach, .contact, .learn-more-strip, .rates, .seasonal-callout { padding: 80px 24px; }
  .subpage-hero { padding: 120px 24px 60px; }
  .article-body { padding: 60px 24px 80px; }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image { display: flex; justify-content: center; order: 2; margin-top: 10px; }
  .about-text { order: 1; }

  .lesson-cards { grid-template-columns: 1fr; gap: 28px; }
  .lesson-cards--three { grid-template-columns: 1fr; gap: 28px; }
  .lesson-card { padding: 40px 28px; }

  .approach-grid { grid-template-columns: 1fr; gap: 30px; }
  .learn-more-cards { grid-template-columns: 1fr; }
  .related-cards { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; gap: 28px; }
  .scheduling-strip { grid-template-columns: 1fr; gap: 36px; padding-top: 36px; }

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

  footer { padding: 40px 24px 24px; }
}
