:root {
  --bg-dark: #111217;
  --bg-light: #F5F0E8;
  --text-main: #1F2228;
  --text-muted: #3C4450;
  --accent-gold: #C9A15A;
  --accent-gold-dark: #A8843F;
  --accent-burgundy: #7C3A3A;
  --border-subtle: #D4C9B8;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Cavilenny";
  src: url("/../assets/fonts/CavilennyRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 18, 23, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo a,
.footer-logo {
  font-family: "Cavilenny", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .logo {
    font-size: 1.3rem;      /* smaller logo */
    padding: 0.4rem 0;      /* more breathing room */
    letter-spacing: 0.04em; /* slightly tighter tracking */
	  width: 300px;
	  padding-left: 20px;
  }
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  margin-right: 0.4rem;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: #dcdcdc;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 180ms ease-out;
}

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

.nav-contact {
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.header-phone {
  color: #f0f0f0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.btn-gold {
  background: var(--accent-gold);
  color: #111217;
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-gold:hover {
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #111217;
  border-color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #111217;
}

.btn-services {
  background: transparent;
  color: white;
  border-color: var(--accent-gold);
}

.btn-services:hover {
	color: #111217;
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 0.9rem 2.2rem;
}

/* ----------------------------------------------------
   HERO BASE STYLING
---------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  color: #fff;

  /* fallback background if image fails */
  background: radial-gradient(circle at top left, #2a2b33 0, #111217 55%, #050509 100%);
}

.hero-inner {
  position: relative;
  z-index: 3; /* ensures text is above all overlays */
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9c9c9;
}

.hero-trust span {
  padding-left: 1.1rem;
  position: relative;
}

.hero-trust span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* ----------------------------------------------------
   BACKGROUND PIANO IMAGE + FADE MASK
---------------------------------------------------- */

.hero.hero-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image: url("/../assets/images/piano-hero.jpg"); /* update path */
  background-size: cover;
  background-position: center right;
  opacity: 0.55;

  /* fade-out mask (image fades as it approaches text) */
  mask-image: linear-gradient(
    to left,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.4) 35%,
    rgba(0,0,0,0.8) 65%,
    rgba(0,0,0,1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.4) 35%,
    rgba(0,0,0,0.8) 65%,
    rgba(0,0,0,1) 100%
  );
}

/* subtle dark overlay for readability */
.hero.hero-with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to left,
    rgba(17,18,23,0.1) 0%,
    rgba(17,18,23,0.5) 40%,
    rgba(17,18,23,0.9) 100%
  );
}



/* Piano keys visual */

.hero-visual {
  text-align: center;
}

.piano-keys {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 2px;
  background: #000;
  padding: 0.4rem;
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.piano-key {
  background: linear-gradient(to bottom, #fdfdfd, #dcdcdc);
  border-radius: 0.25rem;
  height: 4.5rem;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
}

.piano-key:hover,
.piano-key.active {
  transform: translateY(1px);
  box-shadow: 0 0 0 1px var(--accent-gold);
  background: linear-gradient(to bottom, #ffffff, #f0e4cf);
}

.hero-visual-note {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  color: #c0c0c0;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-top: 0;
}

.card-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-dark);
}

/* Two-column layout */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

/* Image placeholders */

.image-placeholder {
  border-radius: 0.75rem;
  border: 1px dashed var(--border-subtle);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: #faf6ef;
}

.image-placeholder img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.image-piano-inner {
  padding: 4rem 1rem;
}

.image-portrait {
  padding: 4rem 1rem;
}

/* Benefits list */

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

/* Areas */

.areas-preview,
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-list li {
  padding: 0.4rem 0;
  cursor: pointer;
  position: relative;
}

.areas-list li::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-gold);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 150ms ease-out;
}

.areas-list li:hover::before,
.areas-list li.active::before {
  opacity: 1;
}

.map-placeholder {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: #fdfaf5;
}

.map-large {
  padding: 4rem 1rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Testimonials */

.testimonial-carousel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1rem;
  font-style: italic;
}

.testimonial-meta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.testimonial-controls button {
  background: transparent;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

/* Final CTA */

.section-cta-final {
  background: radial-gradient(circle at top, #2a2b33 0, #111217 55%, #050509 100%);
  color: #fff;
  text-align: center;
}

.section-cta-final h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

/* Page hero */

.page-hero {
  background: #111217;
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Service blocks */

.service-block {
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.service-block h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
}

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pillar {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  background: #fff;
}

/* FAQs */

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease-out;
}

.faq-answer p {
  margin: 0 0 1rem;
}

/* Testimonials page */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  background: #fff;
}

/* Contact */

.contact-layout {
  align-items: flex-start;
}

.contact-form {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  background: #fff;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #c9c1b2;
  font-family: inherit;
  font-size: 0.9rem;
}

.field-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-row-conditional {
  display: none;
}

.form-confirmation {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent-burgundy);
}

/* Footer */

.site-footer {
  background: #111217;
  color: #dcdcdc;
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #b0b0b0;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid #2a2b33;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .areas-preview,
  .areas-layout,
  .footer-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    width: auto;
  }
}

/* Refined shared design */
:root {
  --bg-light: #f6f3ed;
  --text-main: #252c2a;
  --text-muted: #58605c;
  --accent-gold: #d6b875;
  --accent-gold-dark: #785a26;
  --border-subtle: #e0ded4;
  --font-serif: Georgia, "Times New Roman", serif;
}
html { scroll-padding-top: 120px; }
body { background: #fffefa; }
[hidden] { display: none !important; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #b88835; outline-offset: 5px; }
.container { max-width: 1200px; padding-inline: 28px; }
.site-header { background: #fffefa; color: #252c2a; border-bottom: 1px solid var(--border-subtle); backdrop-filter: none; }
.header-inner { min-height: 100px; padding-block: 18px; gap: 24px; }
.brand { flex-shrink: 0; display: grid; gap: 6px; max-width: 100%; }
.brand-name { font: 25px/1.1 var(--font-serif); letter-spacing: -.6px; }
.brand-name img {
  display: block;
  width: auto;
  max-width: 260px;
  height: auto;
  max-height: 48px;
}
.brand-name span { display: block; }
.brand-tagline { font-size: 9px; text-transform: uppercase; letter-spacing: 2.5px; color: #756444; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.site-nav a { display: flex; align-items: center; min-height: 44px; }
.nav-link { border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link[aria-current="page"] { color: #785a26; border-bottom-color: #b99855; }
.nav-booking { background: #253c34; color: white; padding: 12px 20px; border-radius: 5px; }
.nav-booking:hover, .nav-booking[aria-current="page"] { background: #385448; }
.menu-toggle { align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 10px 14px; border: 1px solid #c9cbbf; border-radius: 5px; background: transparent; color: #253c34; font: inherit; cursor: pointer; }
.menu-icon { width: 18px; height: 12px; border-block: 2px solid currentColor; }
.menu-toggle[aria-expanded="true"] .menu-icon { height: 2px; border-bottom: 0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 200; padding: 12px 20px; background: white; color: #253c34; }
.skip-link:focus { top: 12px; }
.hero { padding: 90px 0 80px; background: #182a23; }
.hero-inner { grid-template-columns: minmax(0, 680px); }
.hero h1 { font-size: clamp(2.7rem, 4.8vw, 4.4rem); line-height: 1.08; letter-spacing: -2px; text-transform: none; font-weight: 400; margin: 0 0 24px; text-wrap: balance; }
.hero p { color: #e1e5dd; font-size: 18px; line-height: 1.8; max-width: 520px; }
.hero .eyebrow { color: #e0c38c; text-transform: uppercase; font-size: 11px; letter-spacing: 2.4px; margin: 0 0 24px; }
.hero.hero-with-image::before { opacity: .75; mask-image: none; -webkit-mask-image: none; background-position: center right; }
.hero.hero-with-image::after { background: linear-gradient(90deg,rgba(15,31,24,.97),rgba(15,31,24,.83) 43%,rgba(15,31,24,.15)); }
.hero-ctas { flex-wrap: wrap; margin: 30px 0; gap: 12px; }
.btn { border-radius: 5px; min-height: 48px; padding: 12px 23px; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 600; box-shadow: none; }
.btn-gold:hover { background: #e6cb93; border-color: #e6cb93; }
.btn-services { border-color: #aaa997; }
.btn-services:hover { background: #fffefa; border-color: #fffefa; color: #253c34; }
.hero-trust { font-size: 11px; text-transform: none; letter-spacing: .2px; gap: 10px 20px; color: #e3e3d8; }
.section { padding-block: 76px; }
h2 { font: 400 clamp(1.8rem, 3vw, 2.6rem)/1.2 var(--font-serif); letter-spacing: -.7px; }
.section-header { max-width: 600px; margin-bottom: 38px; }
.section-header h2, .section-cta-final h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; text-transform: none; letter-spacing: -.7px; }
.section-header p { color: var(--text-muted); }
.card { padding: 30px; border-radius: 8px; display: flex; flex-direction: column; border-top: 3px solid #bda56b; box-shadow: none; }
.card h3 { font-size: 23px; font-weight: 400; line-height: 1.3; }
.card p { color: var(--text-muted); margin-top: 0; }
.card-link { margin-top: auto; padding-top: 14px; letter-spacing: 0; text-transform: none; font-weight: 600; }
.card-link::after { content: " →"; margin-left: 10px; }
.two-column { gap: 50px; align-items: center; }
.benefits-list li { padding: 14px 0; border-bottom: 1px solid var(--border-subtle); }
.piano-detail { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; }
.areas-list li { padding: 10px 16px; border: 1px solid #d8d8cb; background: #fffefa; border-radius: 5px; cursor: default; }
.coverage-note { padding: 30px; background: #e9ede4; border-radius: 8px; }
.coverage-note h3 { margin-top: 0; font: 400 26px var(--font-serif); }
.coverage-note p { color: #49574b; }
.testimonial p { font: italic 26px/1.5 var(--font-serif); }
.testimonial-controls button { width: 44px; height: 44px; color: #725721; }
.section-cta-final { background: #253c34; }
.page-hero { background: #253c34; padding: 60px 0; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); text-transform: none; letter-spacing: -1px; font-weight: 400; margin-top: 0; }
.page-hero p { max-width: 650px; color: #e0e6db; }
.service-block h2 { text-transform: none; letter-spacing: -.5px; font-size: 28px; }
.contact-layout { align-items: start; }
.form-row input, .form-row select, .form-row textarea { font-size: 16px; padding: 12px; background: #fffefa; }
.faq-question { padding: 22px 28px 22px 0; font-size: 17px; line-height: 1.5; color: var(--text-main); }
.site-footer { margin-top: 0; background: #192b23; padding-top: 50px; }
.footer-col { min-width: 0; overflow-wrap: anywhere; }
.footer-col li a { display: inline-block; padding-block: 5px; }
.footer-bottom { border-color: #38483d; margin-top: 22px; }
.footer-logo { width: auto; padding: 0; }
@media (max-width: 1000px) {
  .header-inner { display: flex; flex-wrap: wrap; justify-content: space-between; min-height: 88px; }
  .brand { max-width: calc(100% - 90px); }
  .brand-name img { max-width: 200px; max-height: 40px; }
  .menu-toggle:not([hidden]) { display: flex; }
  .site-nav { flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 4px; padding-top: 12px; border-top: 1px solid var(--border-subtle); max-height: calc(100dvh - 110px); overflow-y: auto; }
  .site-nav a { padding: 10px 14px; }
  .site-nav .nav-booking { justify-content: center; margin-top: 8px; }
}
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .brand { max-width: calc(100% - 76px); }
  .brand-name img { max-width: 168px; max-height: 36px; }
  .brand-name { font-size: 22px; }
  .header-inner { padding-block: 14px; gap: 12px; }
  .brand-tagline { font-size: 8px; letter-spacing: 2px; }
  .hero { padding: 55px 0; }
  .hero h1 { letter-spacing: -1px; }
  .hero p { font-size: 16px; }
  .hero.hero-with-image::after { background: rgba(15,31,24,.82); }
  .hero-ctas .btn { flex: 1 1 140px; }
  .section { padding-block: 48px; }
  .two-column { gap: 28px; }
  .card-grid, .pillars, .testimonials-grid { grid-template-columns: minmax(0,1fr); }
  .service-block, .contact-form { padding: 22px; }
  .page-hero { padding: 40px 0; }
  .contact-layout a { overflow-wrap: anywhere; }
  .piano-detail { height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
