:root {
  --bg: #050509;
  --bg-alt: #0d0d14;
  --card-bg: #15151f;
  --accent: #f3c96b;
  --accent-soft: rgba(243, 201, 107, 0.15);
  --text: #f5f5f7;
  --muted: #a0a0b4;
  --border-subtle: #252535;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.35);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at top left, #181826 0, #050509 52%);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout helpers */

.hp-wrapper {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #1b1b28 0, #070711 55%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.section-intro,
.section-note {
  color: var(--muted);
  max-width: 640px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.96),
    rgba(5, 5, 9, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe8a4, #f0a948 60%, #8b4cff);
  color: #06040a;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 10px 25px rgba(0, 0, 0, 0.55);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(243, 201, 107, 0.6);
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3vw + 1.5rem, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.piano-card {
  background: radial-gradient(circle at top left, #27273d 0, #11111c 55%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  width: 100%;
}

.keys-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.keys-row span {
  display: block;
  height: 3.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #f9f9ff, #d2d2e0);
  position: relative;
  overflow: hidden;
}

.keys-row span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.25),
    transparent 50%,
    rgba(255, 255, 255, 0.7)
  );
  mix-blend-mode: multiply;
}

.piano-caption {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn.primary {
  background: radial-gradient(circle at 30% 0, #ffe8a4, #f0a948 60%);
  color: #261306;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.65);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(243, 201, 107, 0.4);
  background-image: linear-gradient(
    to right,
    rgba(243, 201, 107, 0.15),
    rgba(243, 201, 107, 0.03)
  );
}

.btn.ghost:hover {
  background-color: rgba(243, 201, 107, 0.15);
}

.btn.full-width {
  width: 100%;
}

/* Listen / tracks */

.track-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.track-card {
  padding: 1.25rem 1.25rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.track-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.track-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

audio {
  width: 100%;
}

/* Embedded video */

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About */

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-highlights h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.7rem;
  color: var(--accent);
}

.profile-card {
  margin: 4.5rem 0 1.25rem;
  display: flex;
  justify-content: center;
}

.profile-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 2 / 3; /* keeps it nicely portrait */
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
}


/* Services */

.card-grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #202032 0, #10101b 60%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 11px 26px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
  margin: 0 0 0.6rem;
}

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

.service-list {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 14, 0.9);
}

.testimonial blockquote {
  margin: 0 0 0.8rem;
  font-style: italic;
}

.testimonial figcaption {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-steps li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.contact-card {
  padding: 1.5rem 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 3, 10, 0.9);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(243, 201, 107, 0.9);
  outline-offset: 1px;
}

.contact-alt {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0 1.5rem;
  background: #040409;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-note {
  opacity: 0.8;
}

/* Responsive */

@media (min-width: 720px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.35;
  }

  .hero-media {
    flex: 1;
    justify-content: flex-end;
  }

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

  /* Make the video card span the full width of the grid */
  .video-card {
    grid-column: 1 / -1;
  }

  .about-grid,
  .card-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
