:root {
  --ink: #1c1715;
  --muted: #655d57;
  --paper: #fbf8f2;
  --ivory: #fffdf8;
  --line: #ddd5ca;
  --rose: #a0444f;
  --green: #1f6f67;
  --blue: #274b73;
  --gold: #b98c42;
  --shadow: 0 18px 50px rgba(42, 33, 26, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(221, 213, 202, 0.85);
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
}

.nav a,
.header-action,
.service a,
.footer a,
.text-button {
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.header-action {
  padding: 10px 16px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-color: #fff5e8;
  background-blend-mode: screen;
  background-image: url("piano-keys-hero.jpg");
  background-position: right 58%;
  background-repeat: no-repeat;
  background-size: min(70vw, 980px) auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(54vw, 780px);
  background: #f8ded8;
  opacity: 0.46;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--rose), var(--green), var(--gold));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 720px;
  max-width: 690px;
  padding: clamp(48px, 8vh, 76px) clamp(18px, 7vw, 96px) 54px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ivory);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span,
.proof-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip span:nth-child(1) {
  border-color: rgba(160, 68, 79, 0.32);
}

.trust-strip span:nth-child(2) {
  border-color: rgba(31, 111, 103, 0.34);
}

.trust-strip span:nth-child(3) {
  border-color: rgba(185, 140, 66, 0.38);
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr) minmax(170px, 240px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.intro > p,
.repertoire-heading p,
.booking-copy > p,
.music-heading p,
.album-card p,
.video-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-portrait {
  margin: 0;
}

.intro-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.intro-portrait figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.services {
  background: #f4f8f7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service {
  min-height: 310px;
  padding: 24px;
  border: 1px solid #cadfdb;
  border-radius: var(--radius);
  background: var(--ivory);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--ivory);
  background: var(--green);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

.service p {
  color: var(--muted);
}

.service a {
  color: var(--green);
}

.packages {
  background: var(--ivory);
}

.package-list {
  border-top: 1px solid var(--line);
}

.package-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.package-row strong {
  color: var(--blue);
  font-size: 1.06rem;
}

.package-row span {
  color: var(--muted);
}

.repertoire {
  background: #f8f0ef;
}

.repertoire-heading {
  align-items: start;
}

.repertoire-heading p {
  max-width: 620px;
}

.repertoire-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 12px;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8c9c7;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
}

textarea {
  resize: vertical;
}

.repertoire-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  color: var(--muted);
}

.text-button {
  border: 0;
  color: var(--rose);
  background: transparent;
  cursor: pointer;
}

.song-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.song {
  display: grid;
  gap: 10px;
  min-height: 126px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid #dfcfce;
  border-radius: var(--radius);
  background: var(--ivory);
}

.song strong {
  line-height: 1.25;
}

.song-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.song button {
  border: 0;
  color: var(--rose);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.listen {
  background: #eef3f8;
}

.music-heading {
  align-items: start;
}

.music-heading h2 {
  line-height: 1.12;
  padding-bottom: 0.08em;
}

.music-heading p {
  max-width: 600px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.album-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  padding: 24px;
  border: 1px solid #cbd9e4;
  border-radius: var(--radius);
  background: var(--ivory);
}

.album-card h3 {
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.album-year {
  margin-bottom: 10px;
  color: var(--rose) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.album-actions,
.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.album-actions {
  margin-top: auto;
}

.album-actions .button,
.artist-links .button {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.artist-links {
  margin-bottom: clamp(34px, 5vw, 60px);
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.video-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.availability {
  background: var(--paper);
}

.availability .section-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.calendar-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.calendar-top {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-top h3 {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.calendar-nav {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  min-height: 86px;
  align-content: start;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.calendar-day.outside {
  color: #a89f98;
  background: #f4efe8;
}

.calendar-day.has-event {
  border-color: #d0a0a6;
  background: #fff5f5;
}

.calendar-day button {
  width: max-content;
  border: 0;
  padding: 0;
  color: var(--rose);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.date-number {
  font-weight: 800;
}

.booking-label {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
}

.same-day-note {
  color: var(--muted);
  font-size: 0.72rem;
}

.calendar-legend {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.calendar-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.calendar-legend i {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.legend-open {
  background: var(--ivory);
}

.legend-booked {
  background: #fff5f5;
  border-color: #d0a0a6 !important;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: 30px;
  align-items: center;
  background: var(--ivory);
}

.quote {
  margin-bottom: 10px;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.quote-source {
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  background: #f4f8f7;
}

.booking-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #cadfdb;
}

.contact-note span {
  color: var(--muted);
}

.contact-note a {
  color: var(--green);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid #cadfdb;
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-help {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--ivory);
  background: var(--ink);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer span {
  color: rgba(255, 253, 248, 0.72);
}

.footer-links {
  align-content: start;
  justify-items: end;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(28px, 7vw, 90px);
  background-color: rgba(255, 253, 248, 0.82);
  background-image: url("piano-keys-hero.jpg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: min(84vw, 1100px) auto;
  background-blend-mode: screen;
}

.thank-you section {
  max-width: 720px;
  justify-self: start;
}

.thank-you p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .video-panel,
  .proof,
  .booking {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .album-grid,
  .song-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-copy {
    position: static;
  }

  .calendar-day {
    min-height: 70px;
    padding: 8px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-action {
    display: none;
  }

  .hero {
    background-position: right bottom;
    background-size: 1120px auto;
  }

  .hero-copy {
    min-height: calc(100vh - 68px);
    max-width: 620px;
  }

  .section-heading,
  .repertoire-summary,
  .footer {
    align-items: start;
    flex-direction: column;
  }

  .service-grid,
  .album-grid,
  .song-list,
  .repertoire-toolbar,
  .package-row,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: auto;
  }
}
