:root {
  --ink: #17211f;
  --muted: #5d6863;
  --paper: #f6f3ed;
  --white: #fffdf8;
  --green: #243d37;
  --green-2: #426b5f;
  --aubergine: #4a2c3d;
  --gold: #b68542;
  --line: rgba(23, 33, 31, 0.16);
  --shadow: 0 20px 50px rgba(23, 33, 31, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(23, 33, 31, 0.58);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--green);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand strong,
.brand span span {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand span span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
  color: rgba(255, 253, 248, 0.86);
}

nav a:hover,
nav a:focus-visible,
nav a.active {
  color: var(--white);
}

nav a.active {
  border-bottom: 2px solid var(--gold);
}

.page-header {
  position: sticky;
  color: var(--white);
  background: rgba(23, 33, 31, 0.94);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.hero img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(76vw, 1500px);
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 21, 19, 0.9), rgba(28, 51, 45, 0.78) 34%, rgba(28, 51, 45, 0.4) 58%, rgba(13, 21, 19, 0.12)),
    linear-gradient(0deg, rgba(13, 21, 19, 0.66), rgba(13, 21, 19, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 142px 0 clamp(76px, 12vh, 116px);
  margin-left: clamp(18px, 7vw, 94px);
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 8.8em;
  font-size: clamp(3.25rem, 9vw, 7.5rem);
}

h2 {
  max-width: 12em;
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.52);
  background: rgba(255, 253, 248, 0.08);
}

.button.secondary.small {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--green);
  border-color: rgba(66, 107, 95, 0.3);
  background: var(--white);
}

.button.dark {
  color: var(--white);
  background: var(--aubergine);
  box-shadow: none;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  padding: clamp(30px, 5vw, 54px) clamp(18px, 7vw, 94px);
  color: var(--white);
  background: var(--green);
}

.intro-band span {
  display: block;
  color: #d2a967;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.22;
}

.intro-band p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.05rem;
}

.page-hero {
  padding:
    clamp(116px, 15vw, 166px) clamp(18px, 7vw, 94px)
    clamp(70px, 9vw, 118px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.96), rgba(36, 61, 55, 0.86)),
    url("assets/harp-practice-room.png") right center / auto 100% no-repeat,
    var(--green);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.98), rgba(36, 61, 55, 0.94) 38%, rgba(36, 61, 55, 0.62) 58%, rgba(36, 61, 55, 0.14)),
    url("assets/web/57.jpg") right center / auto 100% no-repeat,
    var(--green);
}

.about-hero h1 {
  max-width: 8.6em;
}

.wellbeing-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.98), rgba(36, 61, 55, 0.94) 38%, rgba(36, 61, 55, 0.62) 58%, rgba(36, 61, 55, 0.14)),
    url("assets/web/21.jpg") right center / auto 100% no-repeat,
    var(--green);
}

.sessions-hero,
.booking-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.98), rgba(36, 61, 55, 0.94) 38%, rgba(36, 61, 55, 0.62) 58%, rgba(36, 61, 55, 0.14)),
    url("assets/web/41.jpg") right center / auto 100% no-repeat,
    var(--green);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.98), rgba(36, 61, 55, 0.94) 38%, rgba(36, 61, 55, 0.62) 58%, rgba(36, 61, 55, 0.14)),
    url("assets/web/Maria283.jpg") right center / auto 100% no-repeat,
    var(--green);
}

.page-hero h1 {
  max-width: 10em;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.compact-hero {
  padding-bottom: clamp(50px, 6vw, 78px);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}

.two-column,
.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.prose p,
.section-heading p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.16rem);
}

.prose p + p {
  margin-top: 18px;
}

.feature-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 790px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.image-panel {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel.wide img {
  aspect-ratio: 16 / 9;
}

.section-photo {
  margin-top: 34px;
}

.prose-photo,
.side-photo,
.panel-photo {
  margin-top: 26px;
}

.prose-photo img,
.side-photo img {
  aspect-ratio: 4 / 5;
}

.panel-photo img {
  aspect-ratio: 5 / 4;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.session-card {
  min-height: 280px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.session-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--green-2);
  font-weight: 900;
}

.session-card h3 {
  max-width: 10em;
}

.session-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.page-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(66, 107, 95, 0.45);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.email-link {
  color: var(--aubergine);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.admin-options {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.helper-text,
.status-text {
  margin: 14px 0 0;
  color: var(--muted);
}

.slot-list,
.session-option-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.slot-button,
.admin-slot-row,
.session-option-row {
  width: 100%;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
}

.slot-button {
  cursor: pointer;
}

.slot-button:hover,
.slot-button:focus-visible,
.slot-button.selected {
  border-color: rgba(66, 107, 95, 0.55);
  box-shadow: var(--shadow);
}

.slot-button strong,
.slot-button span,
.slot-button small,
.admin-slot-row strong,
.admin-slot-row span {
  display: block;
}

.slot-button strong,
.admin-slot-row strong {
  font-size: 1.08rem;
}

.slot-button span,
.admin-slot-row span {
  margin-top: 4px;
  color: var(--muted);
}

.slot-button small {
  margin-top: 10px;
  color: var(--green-2);
  font-size: 0.92rem;
  font-weight: 900;
}

.session-option-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(96px, 0.55fr) minmax(130px, 0.8fr) auto auto;
  gap: 14px;
  align-items: end;
}

.session-option-row label {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compact-form {
  gap: 14px;
  padding: 22px;
}

.form-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.booking-form label,
.booking-form legend {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.session-option-row input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid rgba(23, 33, 31, 0.22);
  border-radius: 6px;
  font: inherit;
}

.booking-form select {
  appearance: auto;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fbfaf5;
  border: 1px solid rgba(23, 33, 31, 0.14);
  border-radius: 6px;
}

.choice input {
  width: auto;
  margin: 0;
}

.compact-choice {
  margin-top: 0;
}

.inline-choice {
  min-height: 46px;
}

.price-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-top: 6px;
  color: var(--green);
  background: #fbfaf5;
  border: 1px solid rgba(23, 33, 31, 0.22);
  border-radius: 6px;
}

.price-input span {
  padding-left: 13px;
  font-weight: 900;
}

.booking-form .price-input input,
.session-option-row .price-input input {
  margin-top: 0;
  border: 0;
  background: transparent;
}

.admin-slot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 7vw, 94px);
  background: #e7eee9;
  border-top: 1px solid var(--line);
}

.contact-band h2 {
  margin-bottom: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 7vw, 94px);
  color: rgba(255, 253, 248, 0.76);
  background: var(--ink);
}

footer p {
  margin: 0;
}

footer a {
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--white);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    background: var(--ink);
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px 18px;
  }

  nav a {
    padding: 4px 0;
  }

  .hero {
    min-height: 88svh;
  }

  .hero img {
    left: auto;
    width: 100%;
    object-position: 42% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 21, 19, 0.88), rgba(13, 21, 19, 0.26) 62%),
      linear-gradient(90deg, rgba(13, 21, 19, 0.78), rgba(36, 61, 55, 0.48) 54%, rgba(13, 21, 19, 0.12));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 78px;
    padding-bottom: 56px;
  }

  .intro-band,
  .two-column,
  .split,
  .contact-band,
  .booking-layout,
  .admin-options {
    grid-template-columns: 1fr;
  }

  .session-option-row {
    grid-template-columns: 1fr;
  }

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

  .session-card {
    min-height: 220px;
  }

  .page-hero {
    padding-top: 58px;
  }

  .about-hero,
  .wellbeing-hero,
  .sessions-hero,
  .booking-hero,
  .contact-hero {
    background-position:
      left top,
      right center;
    background-size:
      auto,
      auto 100%;
  }

  .contact-band .button {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .contact-band .button {
    font-size: 0.92rem;
  }

  footer {
    flex-direction: column;
  }
}
