/* Lyrical Life Therapy — calm forest greens with warm clay accent */
:root {
  --navy: #2f4538;
  --navy-deep: #24352b;
  --coral: #a66b52;
  --coral-hover: #8f5a44;
  --ink: #1c2620;
  --muted: #5c665f;
  --cream: #f3f5f1;
  --white: #ffffff;
  --line: rgba(28, 38, 32, 0.12);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Pontano Sans", "Segoe UI", sans-serif;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 245, 241, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--coral);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle:hover {
  color: var(--coral);
}

.nav-caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 15rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(36, 53, 43, 0.12);
  padding: 0.5rem 0;
  margin-top: 0.65rem;
  z-index: 120;
}

/* Invisible bridge so the menu stays open while moving from the label into the list */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.65rem;
  height: 0.65rem;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1.1rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--coral);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: block;
  border-top: 2px solid var(--coral);
  background: var(--cream);
  padding: 1.5rem 1.25rem 1.35rem;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(36, 53, 43, 0.1);
  color: inherit;
}

.service-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.service-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--coral);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-callouts {
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.stat-callout {
  margin: 0;
  border-left: 3px solid var(--coral);
  padding: 0.55rem 0 0.55rem 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.stat-callout strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.faq-block {
  margin-top: 2.5rem;
}

.faq-block h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.5rem;
}

.faq-block ul {
  margin: 0.5rem 0 0;
}

.faq-block li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.faq-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.3;
  color: var(--navy);
  padding: 0.85rem 2rem 0.85rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  color: var(--coral-hover);
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--white) !important;
  padding: 0.75rem 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
  width: 2.75rem;
  height: 2.75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.menu-toggle-bar {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--white);
  padding: 0.95rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 53, 43, 0.55) 0%, rgba(36, 53, 43, 0.72) 55%, rgba(36, 53, 43, 0.85) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  /* Bias upward so faces/heads stay in frame under cover crop */
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}

.hero-slide--scene {
  background-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: calc(var(--header-h) + 2rem) var(--pad) 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 0.15s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 0 auto 1.1rem;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: var(--white);
  max-width: 18ch;
  margin: 0 auto 1rem;
  text-align: center;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 40ch;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
  margin: 0 auto 2rem;
  text-align: center;
  justify-items: center;
}

.hero-points li {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  padding-left: 0;
  position: relative;
}

.hero-points li::before {
  display: none;
}

.hero--page {
  min-height: min(58vh, 620px);
}

/* Native 2:3 portraits, width-capped so they stay complete without dominating */
.page-intensives .split {
  grid-template-columns: minmax(0, 18.5rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.page-intensives .split.split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 18.5rem);
}

.page-intensives .split-copy > :first-child {
  margin-top: 0;
}

.page-intensives .split-photo {
  overflow: hidden;
  max-width: 18.5rem;
  width: 100%;
}

.page-intensives .split-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-intensives .split-photo--portrait-top img {
  object-position: center top;
}

.page-intensives .mood-strip-item {
  aspect-ratio: 16 / 9;
}

.page-intensives .section:has(.split) {
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.page-intensives .mood-strip {
  padding-top: 0;
  padding-bottom: 0;
}

/* About: keep full stage portrait (subject + theater) without heavy crop */
.page-about .about-stage-photo {
  background: #e8ebe6;
  margin: 0;
}

.page-about .about-stage-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.page-about .photo-caption {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
  font-style: italic;
}

.hero--page .hero-content {
  padding: calc(var(--header-h) + 1.5rem) var(--pad) 3rem;
}

.hero--page h1 {
  max-width: 20ch;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
}

.section-head p {
  color: var(--muted);
}

.band-navy {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--pad);
}

.band-navy h2,
.band-navy h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 16ch;
  margin: 0 auto 1.5rem;
}

.band-navy h2.cta-stack {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  line-height: 1.05;
}

.band-navy h2.cta-stack span {
  display: block;
}

.band-photo {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background-color: #24352b;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.band-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 53, 43, 0.55), rgba(36, 53, 43, 0.78));
  z-index: 0;
}

.band-photo > * {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: var(--pad);
}

.band-photo h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
}

/* Quotes / pain points */
.quotes {
  background: var(--cream);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  padding: 0.25rem 0.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quote.is-visible {
  opacity: 1;
  transform: none;
}

.quote::before {
  content: "“";
  color: var(--coral);
  margin-right: 0.1rem;
}

.quote::after {
  content: "”";
  color: var(--coral);
}

.center-cta {
  text-align: center;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .split-photo {
  order: 2;
}

.split--reverse .split-copy {
  order: 1;
}

.split-photo {
  position: relative;
}

.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.mood-strip {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.mood-strip-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.mood-strip-item {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  min-height: 0;
}

.mood-strip-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.mood-strip-item:hover img {
  transform: scale(1.06);
}

.band-photo--mid {
  min-height: 48vh;
}

.band-photo--mid p {
  color: rgba(255, 255, 255, 0.92);
}

.split-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.split-copy p {
  color: var(--ink);
  font-size: 1.125rem;
}

/* Specialty strip */
.specialty-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin: 2rem 0 0;
}

.specialty-list li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.specialty-list h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.specialty-list h3 a:hover {
  color: var(--coral);
}

.specialty-list p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

/* Insurance */
.insurance {
  text-align: center;
  border-top: 1px solid var(--line);
}

.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.25rem;
  margin-top: 1.5rem;
}

.insurance-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.9;
}

/* Intensives page */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) var(--pad) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
}

.page-hero p {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.columns-3 h3 {
  font-size: 1.7rem;
  color: var(--navy);
}

.columns-3 li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.columns-3 li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.types--four {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.type {
  background: var(--cream);
  color: var(--ink);
  padding: 1.75rem 1.25rem;
  text-align: left;
}

.type strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.type span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.specialty-feature {
  background: var(--navy);
  color: var(--white);
}

.specialty-feature-inner {
  max-width: 46rem;
  text-align: center;
}

.specialty-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.specialty-feature h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.specialty-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
}

.specialty-feature p {
  color: rgba(255, 255, 255, 0.9);
}

.specialty-feature .check-list {
  text-align: left;
  max-width: 34rem;
  margin: 1.5rem auto 2rem;
}

.specialty-feature .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.specialty-feature .btn {
  background: var(--coral);
}

.specialty-feature .btn:hover {
  background: var(--coral-hover);
}

.prose-block {
  max-width: 720px;
}

.prose-block h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
}

.location-lines {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
}

.band-photo h2.location-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.band-photo h2.location-heading span {
  display: block;
  text-align: center;
}

.location-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.45;
}

.location-address {
  text-align: center;
  white-space: nowrap;
}

.location-offerings {
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .location-address,
  .location-offerings {
    white-space: normal;
  }
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 920px;
  margin: 0 auto;
}

.resource-item {
  text-align: center;
}

.resource-item h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin: 1rem 0 0.5rem;
}

.resource-item p {
  color: var(--muted);
  margin: 0 auto 1.25rem;
  max-width: 28rem;
}

.resource-preview {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(36, 53, 43, 0.12);
}

.resource-preview img {
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: contain;
  margin: 0 auto;
}

.hero h1,
.hero-lead,
.hero-brand-wordmark,
.section-head h2,
.section-head p,
.specialty-feature h2,
.band-photo h2 {
  text-wrap: balance;
}

.intensive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.flyer-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.flyer-wrap img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(36, 53, 43, 0.18);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-details h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.contact-details a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details a:hover {
  color: var(--coral);
}

.detail-block {
  margin: 1.5rem 0;
}

.detail-block h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfcfcf;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(240, 78, 55, 0.35);
  border-color: var(--coral);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #eef7ef;
  border: 1px solid #b7d7b9;
}

.form-error {
  display: none;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fdecec;
  border: 1px solid #e2b6b6;
}

.form-error:not([hidden]) {
  display: block;
}

.form.is-sent .form-success {
  display: block;
}

.form.is-sent .form-fields {
  display: none;
}

.form.is-sending [data-form-submit] {
  opacity: 0.7;
  pointer-events: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem var(--pad);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-meta {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem var(--pad);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem var(--pad);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: var(--cream);
    padding: 0.25rem 0 0.5rem;
  }

  .nav-dropdown-menu a {
    padding: 0.7rem var(--pad) 0.7rem calc(var(--pad) + 0.75rem);
  }

  .nav-cta {
    margin: 0.5rem var(--pad) 0;
  }

  .quote-grid,
  .columns-3,
  .types,
  .types--four,
  .specialty-list,
  .split,
  .contact-grid,
  .service-card-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-photo,
  .split--reverse .split-copy {
    order: initial;
  }

  .mood-strip-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mood-strip-item {
    aspect-ratio: 4 / 3;
  }

  .page-intensives .hero--page {
    min-height: 38vh;
    max-height: 18rem;
  }

  /* Full portraits on phone too; center and cap width so they aren't oversized */
  .page-intensives .split,
  .page-intensives .split.split--reverse {
    grid-template-columns: 1fr;
  }

  .page-intensives .split-photo {
    height: auto;
    max-width: min(18.5rem, 100%);
    width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }

  .page-intensives .split-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .page-intensives .split-photo--portrait-top img {
    object-position: center top;
  }

  .page-intensives .mood-strip-item {
    aspect-ratio: 16 / 9;
  }

  .page-intensives .band-photo--mid {
    min-height: 34vh;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 3rem;
  }

  .hero-points {
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: min(100%, 22rem);
  }

  .split-photo img {
    aspect-ratio: 1 / 1;
  }

  .page-about .about-stage-photo img {
    aspect-ratio: 3 / 4;
    object-position: center 45%;
  }

  .page-intensives .split-photo img {
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
  }

  .intensive-split {
    grid-template-columns: 1fr;
  }
}
