:root {
  --ivory: #f5f0e8;
  --parchment: #ede6d6;
  --sepia-light: #c8b89a;
  --sepia: #8b6f47;
  --sepia-dark: #5c4429;
  --ink: #1a1410;
  --ink-soft: #2e2318;
  --gold: #c4973a;
  --gold-light: #e8c97a;
  --warm-grey: #9e9080;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 21px;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sepia-light);
}

.nav-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sepia-dark);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s, font-size 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 0.85;
  font-size: 1.25rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sepia-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-dropdown {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sepia-light);
  padding: 1.2rem 2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}

.nav-dropdown.open {
  display: flex;
}

.nav-dropdown a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sepia-dark);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(200, 184, 154, 0.3);
  transition: color 0.3s;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: var(--gold);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(20%) contrast(1.05) brightness(0.95);
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 70%, rgba(245, 240, 232, 0.85) 100%),
    linear-gradient(to top, rgba(245, 240, 232, 0.6) 0%, transparent 25%);
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 6rem 3rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--sepia-dark);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-name em {
  font-style: italic;
  color: var(--sepia-dark);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--sepia);
  font-style: italic;
  line-height: 1.7;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  text-transform: uppercase;
}

.badge::before {
  content: '—';
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  writing-mode: vertical-rl;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--warm-grey);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

section {
  padding: 7rem 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 3rem;
}

.section-title em {
  font-style: italic;
  color: var(--sepia-dark);
}

.about {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '♩';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25rem;
  color: var(--sepia-light);
  opacity: 0.12;
  line-height: 1;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-card {
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(245, 240, 232, 0.6);
}

.highlight-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.highlight-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  text-transform: uppercase;
}

.gallery {
  background: var(--ink);
  padding: 7rem 0;
}

.gallery .section-label { color: var(--gold-light); }
.gallery .section-title { color: var(--ivory); }
.gallery .section-title em { color: var(--sepia-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) contrast(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
  display: block;
  min-height: 280px;
}

.gallery-item:first-child img {
  min-height: 580px;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: sepia(5%) contrast(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(26, 20, 16, 0.85));
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.steinway-banner {
  background: var(--sepia-dark);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.steinway-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--parchment);
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}

.steinway-badge {
  flex-shrink: 0;
  text-align: center;
}

.steinway-badge .badge-title {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.steinway-badge .badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  display: block;
  line-height: 1;
}

.steinway-badge .badge-sub {
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
}

.artist-statement {
  background: var(--ink);
  padding: 7rem 0;
}

.artist-statement .section-label { color: var(--gold-light); }
.artist-statement .section-title { color: var(--ivory); }
.artist-statement .section-title em { color: var(--sepia-light); }

.statement-inner {
  max-width: 800px;
  border-left: 2px solid var(--gold);
  padding-left: 3rem;
  margin-top: 1rem;
}

.statement-quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--parchment);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.statement-attr {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-top: 0.8rem;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-featured {
  grid-column: 1 / -1;
  border-top: 2px solid var(--gold);
  background: var(--parchment);
  padding: 2.8rem 3rem 2.2rem;
  position: relative;
}

.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-featured p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.testimonial-author-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author-name {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  text-transform: uppercase;
}

.testimonial-author-credentials {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--warm-grey);
  line-height: 1.5;
}

.testimonial {
  position: relative;
  padding: 2.5rem 2.5rem 2rem;
  border-top: 1px solid var(--sepia-light);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.testimonial p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--sepia);
  text-transform: uppercase;
}

.testimonial-credentials {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-grey);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.contact {
  background: var(--ink-soft);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'R T';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 2rem;
  white-space: nowrap;
  pointer-events: none;
}

.contact .section-label {
  color: var(--gold-light);
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title em {
  font-style: italic;
  color: var(--sepia-light);
}

.contact-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm-grey);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgba(196, 151, 58, 0.3);
  padding: 1.1rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-email::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.contact-email:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.contact-email:hover::before {
  transform: translateX(0);
}

footer {
  background: var(--ink);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(139, 111, 71, 0.2);
}

.footer-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--warm-grey);
  text-transform: uppercase;
}

.footer-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(158, 144, 128, 0.5);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.animate-ready {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.gallery-dots {
  display: none;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-name {
    font-size: 0.78rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-side {
    height: 65vw;
    min-height: 280px;
  }

  .hero-image-side::after {
    background: linear-gradient(to bottom, transparent 70%, rgba(245, 240, 232, 0.7) 100%);
  }

  .hero-text-side {
    padding: 2.5rem 2rem 4rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    grid-template-columns: unset;
    grid-template-rows: unset;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    align-items: stretch;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .gallery-item {
    flex: 0 0 88vw;
    height: 82vw;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
  }

  .gallery-item img,
  .gallery-item:first-child img {
    width: 100%;
    height: 100%;
    min-height: unset;
    max-height: unset;
    object-fit: cover;
    object-position: center top;
  }

  .gallery-item:first-child {
    height: auto;
  }

  .gallery-item:first-child img {
    height: auto;
    object-fit: contain;
  }

  .gallery-caption {
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 20, 16, 0.75));
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }

  .gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sepia);
    opacity: 0.35;
    transition: opacity 0.3s, background 0.3s;
    cursor: pointer;
    border: none;
  }

  .gallery-dot.active {
    background: var(--gold);
    opacity: 1;
  }

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

  .testimonial-featured {
    grid-column: 1;
  }

  .contact::before {
    display: none;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  .steinway-banner {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .contact-email {
    font-size: 0.7rem;
    padding: 1rem 1.2rem;
  }
}
