:root {
  --ink: #f7f4eb;
  --ink-strong: #fdf9f1;
  --muted: #b8b1a4;
  --bg: #050608;
  --bg-soft: #0c0f16;
  --panel: #10131d;
  --panel-soft: #151a26;
  --accent: #f3cfa4;
  --accent-strong: #f6b86e;
  --accent-dark: #c99750;
  --radius-xl: 34px;
  --radius: 18px;
  --shadow: 0 35px 80px rgba(0, 0, 0, 0.65);
  --maxw: 1400px;
  --nav-h: 84px;
  --section-y: clamp(46px, 6vw, 90px);
  --font-body: "IBM Plex Sans", "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "IBM Plex Sans", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 15%, rgba(243, 207, 164, 0.08), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(109, 130, 255, 0.12), transparent 50%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  padding-top: calc(var(--nav-h) + 8px);
  padding-bottom: 160px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports (padding: max(0px)) {
  body {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) clamp(4vw, 6vw, 60px);
}

main {
  width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-h);
  background: rgba(5, 6, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  z-index: 1000;
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px clamp(4vw, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  gap: 16px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #181a23, #0f1016);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
  color: var(--accent);
}

.brand h1 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin: 0;
}

.brand .sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-link {
  color: rgba(247, 244, 235, 0.65);
  padding-bottom: 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(247, 244, 235, 0.18);
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #120e06;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--ink-strong);
}

.btn.inline {
  padding: 10px 18px;
  letter-spacing: 0.12em;
}

.hamburger {
  display: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  background: var(--panel);
  color: var(--ink);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(480px, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 3vw, 36px) clamp(4vw, 6vw, 64px);
  min-height: calc(90vh - var(--nav-h));
  align-items: stretch;
  animation: heroLoad 1s ease-out forwards;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  perspective: 1200px;
  justify-content: center;
}

.card {
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.5vw, 28px);
}

.copy {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.5rem);
  line-height: 1.08;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
  display: inline-flex;
  gap: 8px;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts li {
  flex: 1 1 160px;
  border-radius: 16px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.hero-facts span {
  display: block;
  font-size: 1.25rem;
  color: var(--ink-strong);
  font-weight: 600;
}

.visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform-style: preserve-3d;
  animation: heroTilt 12s ease-in-out infinite alternate;
}

.piano-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(16px, 3vw, 26px) clamp(16px, 3vw, 28px) clamp(20px, 3vw, 32px);
  background: radial-gradient(circle at 30% 20%, rgba(243, 207, 164, 0.08), rgba(5, 6, 8, 0.2) 30%), linear-gradient(160deg, #161a26, #0a0c13 55%, #05070b);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.55), 0 18px 50px rgba(0, 0, 0, 0.5);
  color: var(--ink);
  overflow: hidden;
  min-height: 300px;
  display: grid;
  gap: 12px;
  align-items: center;
}

.felt {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b51f2a 0%, #f1413a 45%, #b51f2a 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  margin: 0 6px 4px;
}

.piano-banner::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto 10px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.55;
}

.keys {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 4px;
  padding-top: 20px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  transform: rotateX(180deg);
  transform-origin: center;
}

.lab-cta {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(243, 207, 164, 0.08));
  display: grid;
  gap: 6px;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.lab-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.lab-title {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 600;
}

.lab-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lab-btn {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .lab-cta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lab-btn {
    width: 100%;
    justify-content: center;
  }
}

.keys span {
  background: linear-gradient(#fefefe, #dcd2bd);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 190px;
  position: relative;
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.1);
}

.keys span.black {
  width: 70%;
  height: 150px;
  background: linear-gradient(#0a0a0a, #2d2d2d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  justify-self: end;
  margin-right: -35%;
  margin-top: -160px;
  z-index: 2;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.5);
}

.key-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.55);
  transform: rotateX(180deg);
  display: none;
}

.notes {
  width: 200px;
  margin: 0 auto 6px;
  color: rgba(255, 255, 255, 0.9);
}

.notes svg {
  display: block;
  width: 100%;
  height: auto;
}

.note {
  animation: noteFloat 6s ease-in-out infinite;
}

.note.n2 { animation-delay: 1s; }
.note.n3 { animation-delay: 2s; }

@keyframes noteFloat {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}

@keyframes keypress {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.white-anim {
  animation: keypress 3s ease-in-out infinite;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.booking-actions .btn {
  flex: 1 1 220px;
  justify-content: center;
}

.booking-note {
  margin-top: 8px;
}

.staff {
  height: 16px;
  margin: 18px 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.18) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.5;
}

/* SECTIONS */
.section-heading {
  margin-bottom: clamp(18px, 3vw, 32px);
}

.section-heading__eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.section-heading__title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.section-heading__lead {
  max-width: 640px;
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  background: var(--panel-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(160deg, #141925, #0c0f17);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  min-height: 100%;
  width: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-tag {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.45);
}

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

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 207, 164, 0.35);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

ul.musical {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

ul.musical li {
  position: relative;
  padding-left: 18px;
}

ul.musical li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-dark));
}

.specs-card {
  background: linear-gradient(160deg, #151a27, #0c0f17);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.specs-head h3 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.specs-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.spec-column {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-column h4 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.spec-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-list span {
  display: block;
  font-weight: 600;
  color: var(--ink-strong);
}

.spec-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.prestige-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 36px);
  align-items: stretch;
  animation: floatUp 1s ease-out;
}

.prestige-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  background: #090b11;
  display: flex;
  flex-direction: column;
}

.prestige-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestige-photo figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.45);
}

.stats-board {
  display: grid;
  gap: 16px;
}

.stats-board article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
  transform-origin: center;
}

.stat-badge {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.stat-body {
  margin: 4px 0 0;
  color: var(--muted);
}

.stats-board article:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 207, 164, 0.25);
  transform: translateY(-4px) rotateX(3deg);
}

.testimonial-stack {
  margin-top: clamp(18px, 4vw, 30px);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  animation: fadeSlide 1s ease-out;
}

@media (max-width: 900px) {
  .prestige-row {
    grid-template-columns: 1fr;
  }
}

.citation {
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  margin-top: clamp(18px, 3vw, 30px);
}

.links-row-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel);
  padding: 18px;
  margin-top: 20px;
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.links-row a {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-strong);
}

.process-timeline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-timeline article {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.process-timeline .step {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.process-flow {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

.process-intro {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.25));
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px;
  box-shadow: var(--shadow);
}

.process-intro h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.process-highlights {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.process-highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
}

.process-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.process-steps {
  list-style: none;
  padding: 0 0 0 48px;
  margin: 0;
  position: relative;
  display: grid;
  gap: 22px;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.process-steps li {
  position: relative;
  padding: 20px 22px 20px 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-steps li:hover {
  transform: translateX(6px);
  border-color: rgba(243, 207, 164, 0.3);
}

.process-badge {
  position: absolute;
  left: -46px;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1b1308;
  letter-spacing: 0.08em;
  border: 2px solid rgba(5, 6, 8, 0.85);
}

.process-steps h3 {
  margin: 0 0 6px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .process-steps {
    padding-left: 36px;
  }
  .process-steps::before {
    left: 14px;
  }
  .process-badge {
    left: -36px;
  }
}

/* FORMS & TABLES */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 40px);
}

.booking .pane {
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
}

.field input,
.field select,
.field textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 18, 0.9);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(243, 207, 164, 0.25);
  outline: none;
}

.field small {
  color: rgba(255, 255, 255, 0.5);
}

.error-text {
  font-size: 13px;
  color: #f08f8f;
}

.notice {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  color: var(--ink);
}

.total {
  font-size: 26px;
  color: var(--accent);
  font-weight: 600;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.price-table thead th {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.price-table tbody tr {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-table td,
.price-table th {
  padding: 14px 16px;
}

.compare {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: var(--panel-soft);
}

.compare th,
.compare td {
  padding: 12px 15px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
}

.site-footer {
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.payment-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #191d2b, #0e1118);
  padding: 20px;
  margin-top: 20px;
}

.payment-btn-revolut,
.payment-btn-paypal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: none;
  color: #1c1308;
  padding: 12px;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
}

.map {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  background: repeating-linear-gradient(45deg, #10141f, #10141f 12px, #0b0f19 12px, #0b0f19 24px);
  color: var(--muted);
  text-align: center;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  background: var(--panel-soft);
}

.white-footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.brand-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040406;
  padding: clamp(16px, 3vw, 28px) clamp(24px, 6vw, 60px);
}

.brand-footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: start;
}

.brand-footer__grid p {
  margin: 0;
}

.brand-footer__grid ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-footer__meta {
  max-width: var(--maxw);
  margin: 12px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 6px;
  font-size: 0.85rem;
}

.cta-band__content {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(120deg, #161b2a, #0e111a);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-band .btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink);
}

.cta-band .btn.primary {
  background: var(--accent);
  color: #201205;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  inset: auto clamp(14px, 4vw, 30px) clamp(14px, 4vw, 30px);
  z-index: 1000;
}

.sticky-cta .bar {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 14, 0.93);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

.toast-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  z-index: 1001;
}

.toast {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  background: rgba(8, 11, 18, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}

.toast.success {
  border-color: rgba(28, 139, 106, 0.5);
}

.toast.error {
  border-color: rgba(236, 112, 112, 0.5);
}

.toast .close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes heroLoad {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTilt {
  0% { transform: rotateY(-4deg) rotateX(1deg); }
  50% { transform: rotateY(0deg) rotateX(-1deg); }
  100% { transform: rotateY(4deg) rotateX(1deg); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardDrift {
  0% { transform: rotateY(-2deg); }
  50% { transform: rotateY(0deg) translateZ(4px); }
  100% { transform: rotateY(2deg); }
}

/* Mobile menu */
.mobile-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #050608;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 900;
}

.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-links {
  display: grid;
  gap: 12px;
  padding: 20px clamp(16px, 6vw, 40px) 28px;
}

.mobile-links a {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .primary-nav,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .booking,
  .footer-grid,
  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  section {
    padding: var(--section-y) clamp(16px, 6vw, 28px);
  }
  .mobile-only {
    display: inline-flex;
  }
  .links-row {
    flex-direction: column;
  }
  .price-table {
    border-spacing: 0;
  }
  .price-table thead {
    display: none;
  }
  .price-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }
  .sticky-cta .btn {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero {
    padding: 16px;
    min-height: auto;
    gap: 14px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .piano-banner {
    min-height: 190px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    padding-left: 30px;
  }
  .process-badge {
    left: -32px;
  }
  .prestige-row {
    grid-template-columns: 1fr;
  }
  .stats-board article {
    grid-template-columns: 1fr;
  }
  .testimonial-stack {
    grid-template-columns: 1fr;
  }
  .compat-grid {
    grid-template-columns: 1fr;
  }
  .brand-footer__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }
  .brand-footer__grid > div {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    text-align: center;
    align-items: center;
  }
  .brand-footer__grid .logo.small {
    margin: 0 auto 8px;
  }
  .brand-footer__grid ul {
    justify-content: center;
  }
  .brand-footer__meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--panel);
  padding: 12px 14px;
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

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

.list-clean li::before {
  content: "•";
  color: var(--accent);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#consent.card {
  border-radius: var(--radius);
  background: rgba(7, 9, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
}
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.compat-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  padding: 22px;
}

.compat-card.highlight {
  display: grid;
  gap: 14px;
  background: linear-gradient(150deg, rgba(237, 200, 131, 0.08), rgba(5, 6, 8, 0.6));
  animation: cardDrift 18s ease-in-out infinite alternate;
}

.compat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
}

.compat-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--ink);
}

.compat-card footer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.list-clean.compact li {
  margin: 4px 0;
}
  .brand-footer__grid nav,
  .brand-footer__grid ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .brand-footer__grid nav a {
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
.brand-footer__grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
