:root {
  --paper: #fbf4ea;
  --paper-soft: #f5eadc;
  --cream: #fffaf2;
  --ink: #24211f;
  --muted: #69615a;
  --line: rgba(36, 33, 31, 0.14);
  --music: #b77b20;
  --therapy: #2f8584;
  --espresso: #2b1f1a;
  --shadow: 0 24px 64px rgba(43, 31, 26, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote { margin-top: 0; }
h1, h2, h3, .brand, .tagline, .path-title, blockquote { font-family: Georgia, "Times New Roman", serif; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #176b9b; outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(22px, 5vw, 64px);
  border-bottom: 1px solid rgba(36, 33, 31, 0.08);
  background: rgba(251, 244, 234, 0.9);
  backdrop-filter: blur(18px);
}
.brand { font-size: 24px; font-weight: 700; }
.desktop-nav { display: flex; gap: clamp(18px, 3vw, 34px); }
.desktop-nav a, .mobile-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"], .mobile-nav a[aria-current="page"] { color: var(--ink); }
.desktop-nav a[aria-current="page"]::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--music);
  content: "";
}
.therapy-page .desktop-nav a[aria-current="page"]::after { background: var(--therapy); }
.mobile-nav { display: none; }

.hero { min-height: 100svh; padding-top: 72px; }
.hero-image {
  min-height: clamp(300px, 50vw, 560px);
  background: linear-gradient(180deg, rgba(43,31,26,.03), rgba(43,31,26,.2)), url("assets/hero-personal.png") center 30% / cover;
}
.hero-body {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: clamp(-58px, -5vw, -34px) auto 0;
  padding: clamp(34px, 6vw, 72px) clamp(22px, 6vw, 74px) clamp(38px, 5vw, 64px);
  border-radius: 32px 32px 0 0;
  background: radial-gradient(circle at 50% 0%, rgba(214,168,79,.12), transparent 32%), var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}
.kicker, .section-kicker, .path-kicker {
  margin-bottom: 10px;
  color: var(--music);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 { margin-bottom: 18px; font-size: clamp(58px, 11vw, 128px); font-weight: 500; line-height: .92; }
.hero-body > .kicker { margin-bottom: clamp(20px, 2.2vw, 30px); }
.hero-body h1 {
  margin: 0 0 22px;
  font-size: clamp(52px, 8.2vw, 98px);
  line-height: .96;
  letter-spacing: -.025em;
}
.rule { width: 76px; height: 1px; margin: 0 auto 22px; background: linear-gradient(90deg, transparent, var(--music), transparent); }
.tagline { margin-bottom: 0; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.08; }
.lead { width: min(650px, 100%); margin: 24px auto 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.hero-statement { width: min(620px, 100%); margin: 18px auto 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 2vw, 22px); }
.path-list { display: grid; margin-top: clamp(36px, 6vw, 62px); border-top: 1px solid var(--line); }
.path-item {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr) 34px;
  gap: clamp(14px, 3vw, 28px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: transform 180ms ease;
}
.path-item:hover, .path-item:focus-visible { transform: translateX(5px); }
.path-mark { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: rgba(194,138,46,.11); color: var(--music); font-weight: 800; }
.path-item--therapy .path-mark { background: rgba(47,133,132,.12); color: var(--therapy); }
.path-copy { display: grid; gap: 3px; }
.path-item--therapy .path-kicker { color: var(--therapy); }
.path-title { font-size: clamp(36px, 7vw, 66px); font-weight: 700; line-height: 1; }
.path-text { color: var(--muted); font-size: clamp(15px, 2vw, 18px); }
.path-arrow { color: var(--music); font-family: Georgia, serif; font-size: 32px; }
.path-item--therapy .path-arrow { color: var(--therapy); }
.welcome-note { width: min(420px, 100%); margin: 34px auto 0; color: var(--muted); font-family: Georgia, serif; font-size: clamp(21px, 3vw, 29px); }

.section { padding: clamp(72px, 10vw, 124px) 0; }
.section-inner { width: min(1120px, calc(100% - 38px)); margin: 0 auto; }
h2 { margin-bottom: 22px; font-size: clamp(36px, 5.6vw, 64px); line-height: 1.04; }
h3 { margin-bottom: 10px; font-size: 26px; line-height: 1.12; }
.intro-grid, .service-intro, .contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.9fr); gap: clamp(30px, 7vw, 88px); align-items: start; }
.prose p, .intro-grid p { color: var(--muted); font-size: 18px; }
.section--intro { background: var(--paper); }
.about-home { background: var(--espresso); color: var(--cream); }
.about-home-grid { display: grid; grid-template-columns: minmax(260px,.75fr) minmax(0,1fr); gap: clamp(32px, 7vw, 88px); align-items: center; }
.about-home img { width: 100%; max-height: 610px; border-radius: 160px 160px 18px 18px; object-fit: cover; box-shadow: var(--shadow); }
.about-home p:not(.section-kicker) { color: rgba(255,250,242,.78); font-size: 18px; }

.subhero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
  padding-top: 72px;
  background: var(--cream);
}
.subhero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 9vw, 130px) clamp(30px, 8vw, 120px); }
.subhero h1 { margin: 4px 0 26px; font-size: clamp(64px, 9vw, 118px); }
.subhero--therapy h1 { font-size: clamp(54px, 5.8vw, 82px); }
.subhero p { max-width: 650px; color: var(--muted); font-size: 18px; }
.subhero .subhero-lead { color: var(--ink); font-family: Georgia, serif; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; }
.subhero > img { width: 100%; height: 100%; min-height: 688px; object-fit: cover; }
.subhero--therapy { background: #eaf3ef; }
.subhero--therapy .section-kicker, .therapy-page .section-kicker { color: var(--therapy); }

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); filter: brightness(.96); }
.button--music { background: var(--music); }
.button--therapy { background: var(--therapy); }
blockquote { margin: 34px 0 0; padding-left: 22px; border-left: 3px solid var(--music); color: var(--ink); font-size: clamp(22px, 3vw, 30px); line-height: 1.3; }
.therapy-page blockquote { border-color: var(--therapy); }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
.info-card { min-height: 225px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,250,242,.78); }
.info-card span { display: inline-block; margin-bottom: 28px; color: var(--music); font-weight: 800; }
.info-card p, .instruments p { margin-bottom: 0; color: var(--muted); }
.occasions .info-card:last-child { grid-column: 2 / 3; }
.section--warm { background: var(--paper-soft); }
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.photo-grid img { width: 100%; aspect-ratio: 4/5; border-radius: 12px; object-fit: cover; }
.instruments { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.instruments article { padding: 28px; background: var(--paper); }
.section--therapy-soft { background: #eaf3ef; }
.formats { grid-template-columns: repeat(4,1fr); }
.therapy-page .info-card span { color: var(--therapy); }
.photo-grid--therapy { grid-template-columns: 1.1fr .9fr; margin-top: 70px; }
.photo-grid--therapy img { aspect-ratio: 16/10; }

.facebook-section { background: var(--cream); }
.news-section-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.75fr); gap: clamp(28px,6vw,72px); align-items: end; }
.news-section-head h2 { margin-bottom: 0; font-size: clamp(38px,5vw,60px); }
.news-section-head > p { margin-bottom: 4px; color: var(--muted); font-size: 18px; }
.social-news-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; margin-top: 50px; }
.social-news-card { display: grid; grid-template-columns: 190px minmax(0,1fr); min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 16px 44px rgba(43,31,26,.09); }
.social-news-card > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.social-news-body { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; padding: 28px 26px; }
.social-news-body h3 { font-size: clamp(24px,2.3vw,31px); }
.social-news-body > p:not(.news-meta) { color: var(--muted); }
.news-meta { margin-bottom: 12px; color: var(--music); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.therapy-page .news-meta { color: var(--therapy); }
.news-link { margin-top: auto; padding-top: 16px; color: var(--music); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.therapy-page .news-link { color: var(--therapy); }
.news-facts { margin: 0 0 14px; padding-left: 18px; color: var(--muted); font-size: 14px; }
.news-facts li + li { margin-top: 5px; }
.news-source { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.news-source p { margin: 0; color: var(--muted); font-size: 13px; }
.news-source .button { flex: 0 0 auto; margin-top: 0; }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a { width: fit-content; border-bottom: 1px solid currentColor; color: var(--music); font-weight: 700; }
.therapy-page .contact-links a { color: var(--therapy); }
.contact-section { background: var(--paper-soft); }
.therapy-page .contact-section { background: #dfeee9; }
.crosslink { padding: clamp(42px, 6vw, 72px) 20px; text-align: center; }
.crosslink p { margin-bottom: 8px; color: var(--muted); }
.crosslink a { font-family: Georgia, serif; font-size: clamp(24px, 3vw, 34px); font-weight: 700; }
.crosslink--therapy { background: #eaf3ef; }
.crosslink--therapy a { color: var(--therapy); }
.crosslink--music { background: var(--espresso); color: var(--cream); }
.crosslink--music p { color: rgba(255,250,242,.65); }
.crosslink--music a { color: #e1b25d; }
.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 34px clamp(22px,5vw,64px); background: var(--ink); color: var(--cream); }
.site-footer p { margin: 0; color: rgba(255,250,242,.62); }

@media (max-width: 900px) {
  .subhero { grid-template-columns: 1fr; }
  .subhero-copy { padding-top: 100px; }
  .subhero > img { min-height: 480px; max-height: 620px; }
  .card-grid, .formats { grid-template-columns: repeat(2,1fr); }
  .occasions .info-card:last-child { grid-column: auto; }
  .instruments { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .site-header { position: sticky; min-height: 68px; padding: 14px 20px; }
  .desktop-nav { display: none; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav summary { cursor: pointer; color: var(--muted); font-size: 13px; font-weight: 800; list-style: none; text-transform: uppercase; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary::after { content: " +"; }
  .mobile-nav[open] summary::after { content: " −"; }
  .mobile-nav nav { position: absolute; top: 39px; right: -8px; display: grid; width: 210px; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); box-shadow: var(--shadow); }
  .mobile-nav a { padding: 13px 12px; }
  .hero, .subhero { padding-top: 0; }
  .hero-image { min-height: 330px; background-position: center top; }
  .hero-body { width: 100%; margin-top: -28px; padding: 36px 18px 40px; border-radius: 28px 28px 0 0; }
  h1 { font-size: 48px; overflow-wrap: anywhere; }
  .hero-body > .kicker { margin-bottom: 18px; }
  .hero-body h1 { font-size: clamp(44px, 14vw, 56px); }
  .tagline { font-size: 29px; }
  .tagline span { display: block; }
  .lead { font-size: 17px; }
  .path-item { grid-template-columns: 1fr 28px; gap: 12px; }
  .path-mark { display: none; }
  .path-title { font-size: clamp(38px, 12vw, 52px); }
  .intro-grid, .service-intro, .contact-grid, .about-home-grid, .news-section-head { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .about-home img { max-height: 470px; border-radius: 110px 110px 14px 14px; }
  .subhero-copy { padding: 64px 20px 56px; }
  .subhero h1 { font-size: clamp(52px, 15vw, 72px); }
  .subhero > img { min-height: 390px; max-height: 500px; }
  .card-grid, .formats, .photo-grid, .photo-grid--therapy, .instruments { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .photo-grid img, .photo-grid--therapy img { aspect-ratio: 4/3; }
  .social-news-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .social-news-card { grid-template-columns: 130px minmax(0,1fr); min-height: 300px; }
  .social-news-card > img { min-height: 300px; }
  .social-news-body { padding: 22px 18px; }
  .news-source { align-items: flex-start; flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .social-news-card { grid-template-columns: 1fr; }
  .social-news-card > img { height: 230px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
