/* ===== GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --cream: #FAF5ED;
  --warm-white: #F5EDE0;
  --terracotta: #C4622D;
  --rust: #A04E22;
  --gold: #C9A84C;
  --gold-light: #E2C67A;
  --brown-deep: #2C1810;
  --brown-mid: #6B3A28;
  --blush: #E8C4A8;
  --sand: #E0CAA8;
  --sage: #8C9E82;
  --text-dark: #2C1810;
  --text-mid: #6B3A28;
  --text-light: #A07858;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(250, 245, 237, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

/* Logo */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: normal;
  color: white;
  text-decoration: none;
  transition: color 0.4s ease;
  line-height: 1;
}

nav.scrolled .nav-logo {
  color: var(--terracotta);
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: white;
  transition: width 0.3s ease, background 0.3s ease;
}

nav.scrolled .nav-links a::after {
  background: var(--terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: white;
}

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

.nav-cta {
  background: white !important;
  color: var(--brown-deep) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease !important;
}

nav.scrolled .nav-cta {
  background: var(--terracotta) !important;
  color: white !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  display: block;
}

nav.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
  nav {
    padding: 0.85rem 1.4rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* Mobile menu overlay — body-level, outside nav stacking context */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--brown-deep);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

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

.mobile-menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: white;
}

.mobile-cta {
  margin-top: 0.5rem;
  background: var(--terracotta) !important;
  color: white !important;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem !important;
}

.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: white;
}

.hamburger.active span {
  background: white !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2C1810 0%, #4A2418 30%, #6B3A28 60%, #8B4A2F 100%);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 98, 45, 0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(232, 196, 168, 0.1) 0%, transparent 40%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1.2s ease;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  font-style: normal;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--blush);
  margin: 1.5rem 0 2.5rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-tags {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-tag {
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0 0.4rem;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.hero-cta.outline {
  background: transparent;
  border: 1.5px solid rgba(250, 245, 237, 0.5);
  color: var(--cream);
}

.hero-cta.outline:hover {
  background: rgba(250, 245, 237, 0.1);
  border-color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 245, 237, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

/* ===== SECTION BASE ===== */
section {
  padding: 7rem 2rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: normal;
  color: var(--terracotta);
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
  overflow: hidden;
}

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

.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 3/4;
  border-radius: 12px 60px 12px 60px;
  overflow: hidden;
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #6B3A28, #C4622D, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dancing Script', cursive;
  font-size: 6rem;
  color: rgba(250, 245, 237, 0.3);
}

.about-text {
  padding: 2rem 0;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown-mid);
  line-height: 1.6;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.about-body {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.about-milestone {
  display: inline-block;
  background: var(--warm-white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0.2rem 0.3rem 0.2rem 0;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-frame {
    aspect-ratio: 4/5;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px 40px 8px 40px;
  }
}

/* ===== MUSIC ===== */
.music {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.music-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.music-inner .section-subtitle {
  margin: 0 auto 3rem;
}

.music-heading-alt {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: -0.5rem auto 3rem;
  line-height: 1.6;
}

.spotify-container {
  background: #1C1C1C;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.25);
  position: relative;
}

.spotify-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
  z-index: 1;
}

.spotify-container iframe {
  display: block;
  border-radius: 20px;
}

/* ===== FEATURED SERVICES (homepage) ===== */
.featured-services {
  background: var(--cream);
  overflow: hidden;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-inner .section-subtitle {
  margin: 0 auto 4rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196, 98, 45, 0.1);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.1);
}

.featured-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-card:hover::after {
  opacity: 1;
}

.featured-popular {
  border-color: var(--terracotta);
}

.popular-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

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

.featured-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-deep);
  margin-bottom: 0.8rem;
}

.featured-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.featured-card .card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-card .card-price span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.card-link {
  display: inline-block;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.card-link:hover {
  text-decoration: none;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===== CONNECT / NEWSLETTER ===== */
.connect {
  background: linear-gradient(135deg, #2C1810 0%, #4A2418 50%, #6B3A28 100%);
  position: relative;
  overflow: hidden;
}

.connect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.connect-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.connect .section-label {
  color: var(--gold);
}

.connect .section-title {
  color: var(--cream);
}

.connect .section-title em {
  color: var(--gold);
}

.connect-subtitle {
  color: rgba(250, 245, 237, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 2rem;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  background: rgba(250, 245, 237, 0.95);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form button {
  padding: 1rem 1.8rem;
  background: var(--gold);
  border: none;
  color: var(--brown-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 245, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-3px);
}

@media (max-width: 560px) {
  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-form input {
    border-radius: 0;
  }

  .newsletter-form button {
    border-radius: 0;
    padding: 1rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #1A0F0A;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: rgba(250, 245, 237, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 245, 237, 0.25);
}

/* ===== SERVICES PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #2C1810 0%, #4A2418 50%, #6B3A28 100%);
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.page-hero-content {
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.page-hero .section-label {
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.page-hero p {
  font-size: 1.05rem;
  color: rgba(250, 245, 237, 0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Coaching Program */
.program {
  background: var(--cream);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.program-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.program-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.program-result {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2.5rem;
  border-left: 4px solid var(--terracotta);
}

.program-result h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brown-deep);
  margin-bottom: 1rem;
}

.program-result p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.program-result .result-highlight {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1rem;
}

.program-target {
  background: var(--terracotta);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  font-weight: 500;
}

.lesson-structure {
  margin-top: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.lesson-structure h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 1.2rem;
  text-align: center;
}

.lesson-steps {
  list-style: none;
  counter-reset: lesson-step;
}

.lesson-steps li {
  counter-increment: lesson-step;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196, 98, 45, 0.08);
}

.lesson-steps li::before {
  content: counter(lesson-step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  flex-shrink: 0;
}

.approach-note {
  background: linear-gradient(135deg, var(--warm-white), var(--cream));
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  border: 1px solid rgba(196, 98, 45, 0.1);
}

.approach-note strong {
  color: var(--brown-deep);
}

/* Pricing card */
.pricing-section {
  background: var(--warm-white);
  padding: 7rem 2rem;
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3.5rem auto 0;
  }
}

.pricing-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid rgba(196, 98, 45, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #2C1810, #4A2418);
  border-color: var(--gold);
  color: var(--cream);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(196, 98, 45, 0.3);
}

.pricing-name {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
}

.pricing-card.featured .pricing-name {
  color: var(--gold);
  margin-top: 0.8rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1;
}

.pricing-card.featured .pricing-price {
  color: var(--cream);
}

.pricing-price sup {
  font-size: 1.1rem;
  font-weight: 400;
  vertical-align: super;
}

.pricing-price sub {
  font-size: 0.9rem;
  font-weight: 400;
  vertical-align: baseline;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.8rem 0 1.2rem;
  line-height: 1.6;
}

.pricing-card.featured .pricing-desc {
  color: rgba(250, 245, 237, 0.7);
}

.scarcity-badge {
  display: inline-block;
  background: rgba(196, 98, 45, 0.1);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.pricing-card.featured .scarcity-badge {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.8rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(196, 98, 45, 0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card.featured .pricing-features li {
  color: rgba(250, 245, 237, 0.8);
  border-bottom-color: rgba(250, 245, 237, 0.08);
}

.pricing-features li::before {
  content: '\2713';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--gold);
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 98, 45, 0.35);
}

.pricing-card.featured .btn-primary {
  background: var(--gold);
  color: var(--brown-deep);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--gold-light);
}

/* ===== SHOP ===== */
.shop {
  background: var(--cream);
  padding: 7rem 2rem;
}

.shop-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-header {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-header .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196, 98, 45, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.12);
}

.product-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blush), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-deep);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-deep);
  font-weight: 700;
}

.product-price span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.btn-add {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.btn-add:hover {
  background: var(--rust);
  transform: scale(1.05);
}

.btn-add-disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-add-disabled:hover {
  background: #ccc;
  transform: none;
}

/* Cart */
.cart-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--terracotta);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(196, 98, 45, 0.4);
  z-index: 50;
  transition: transform 0.3s ease;
  font-size: 1.4rem;
  border: none;
  line-height: 1;
}

.cart-bubble svg {
  display: block;
}

.cart-bubble:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--brown-deep);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  box-shadow: -10px 0 60px rgba(44, 24, 16, 0.2);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(196, 98, 45, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-deep);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
}

.cart-close:hover {
  color: var(--terracotta);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cart-empty .cart-empty-icon {
  margin-bottom: 1rem;
  opacity: 0.35;
  display: flex;
  justify-content: center;
  color: var(--text-light);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196, 98, 45, 0.08);
  align-items: center;
}

.cart-item-img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blush), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown-deep);
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.2rem;
}

.cart-item-remove:hover {
  color: var(--terracotta);
}

.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(196, 98, 45, 0.12);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-deep);
  margin-bottom: 1.2rem;
}

.cart-total-label {
  font-family: 'Playfair Display', serif;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 0.6rem;
}

.modal p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(196, 98, 45, 0.2);
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.3s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--terracotta);
}

.modal-form textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--terracotta);
}

.modal-disclaimer {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.5;
  text-align: center;
}

/* Responsive program */
@media (max-width: 900px) {
  .program-header {
    gap: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== AESTHETIC REFINEMENTS ===== */

/* Tighten section-label tracking — less mechanical */
.section-label {
  letter-spacing: 0.28em;
}

/* Softer hero eyebrow */
.hero-eyebrow {
  letter-spacing: 0.32em;
}

/* More graceful about-quote — keep intentional italic */
.about-quote {
  border-left-color: var(--terracotta);
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Social link cursor on anchors without href */
.social-link {
  cursor: default;
}
.social-link[href] {
  cursor: pointer;
}

/* Slightly warmer card shadow on hover */
.featured-card:hover,
.product-card:hover,
.pricing-card:hover {
  box-shadow: 0 20px 48px rgba(44, 24, 16, 0.11);
}

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

  /* Hide genre tags — cleaner hero on small screens */
  .hero-tags {
    display: none;
  }

  /* Hero spacing */
  .hero-content {
    padding: 0 1.4rem;
  }

  .hero-cta {
    padding: 0.78rem 1.8rem;
    font-size: 0.78rem;
    margin: 0 0.3rem;
  }

  .hero-scroll {
    bottom: 1.8rem;
  }

  /* Section spacing — tighter on mobile */
  section {
    padding: 4.5rem 1.4rem;
  }

  .pricing-section,
  .shop {
    padding: 4.5rem 1.4rem;
  }

  /* About: tighter gap, smaller image */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .about-img-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-text {
    padding: 0;
  }

  .about-quote {
    font-size: 1.05rem;
    padding-left: 1.1rem;
  }

  /* Section title scale */
  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
    margin-bottom: 1.1rem;
  }

  /* Music inner padding */
  .music-inner {
    padding: 0;
  }

  /* Featured services: single column */
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Connect / newsletter */
  .connect-inner {
    padding: 0;
  }

  /* Footer */
  footer {
    padding: 2.5rem 1.4rem;
  }

  .footer-logo {
    font-size: 2rem;
    margin-bottom: 1.1rem;
  }

  .footer-nav {
    gap: 1.4rem;
    margin-bottom: 1.4rem;
  }

  /* Page hero (services page) */
  .page-hero {
    padding: 6.5rem 1.4rem 3.5rem;
  }

  /* Program section */
  .program-inner {
    padding: 0;
  }

  /* Pricing: single column, centered */
  .pricing-inner {
    padding: 0;
  }

  /* Shop inner */
  .shop-inner {
    padding: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin: 1rem 0 2rem;
  }

  .hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.4rem 0;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .page-hero {
    padding: 5.5rem 1.2rem 3rem;
  }

  .featured-card {
    padding: 1.8rem 1.4rem;
  }

  .pricing-card {
    padding: 2rem 1.4rem;
  }
}
