:root {
  --ink: #101416;
  --charcoal: #141a1d;
  --paper: #f7f8f5;
  --linen: #e8f0ef;
  --warm: #c7a25a;
  --cello: #8b5d35;
  --brass: #a8792d;
  --ocean: #1f6f8b;
  --sky: #80b8cc;
  --muted: #5e686a;
  --white: #ffffff;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(16, 20, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20svh;
  min-height: 120px;
  content: "";
  background: linear-gradient(to bottom, rgba(16, 20, 22, 0), var(--paper));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.94) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 15, 0.76) 0%, rgba(7, 12, 15, 0.44) 38%, rgba(7, 12, 15, 0.08) 72%),
    linear-gradient(180deg, rgba(7, 12, 15, 0.18), rgba(7, 12, 15, 0.16) 48%, rgba(7, 12, 15, 0.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 36px));
  padding: calc(var(--header-height) + 11vh) 0 24vh;
  margin-left: clamp(18px, 7vw, 92px);
}

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

.hero h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
}

.hero-copy {
  width: min(570px, 100%);
  margin: 34px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 250, 242, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ocean);
  border-color: var(--ocean);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.section-contact .button-primary,
.section-warm .button-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.hero-details {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 7vw, 92px);
  right: clamp(18px, 7vw, 92px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 250, 242, 0.4);
  border-bottom: 1px solid rgba(255, 250, 242, 0.4);
}

.hero-details span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 250, 242, 0.22);
}

.hero-details span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
  scroll-margin-top: var(--header-height);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.section-ink {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 111, 139, 0.2), rgba(20, 26, 29, 0) 40%),
    var(--charcoal);
}

.section-warm {
  background: var(--linen);
}

.section-video {
  color: var(--ink);
  background: var(--white);
}

.section-contact {
  color: var(--white);
  background:
    linear-gradient(rgba(24, 21, 19, 0.92), rgba(24, 21, 19, 0.92)),
    url("assets/hero-cello.png") center / cover;
}

.bio-grid,
.services-layout,
.contact-grid,
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.bio-copy {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--muted);
}

.artist-portrait {
  width: min(360px, 100%);
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 20, 22, 0.14);
}

.artist-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
}

.bio-copy p {
  margin: 0 0 22px;
}

.bio-copy p:last-child {
  margin-bottom: 0;
}

.bio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bio-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink);
  border: 1px solid rgba(16, 20, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 38px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--sky);
}

.section-ink .section-kicker {
  color: var(--warm);
}

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

.highlight-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.045);
}

.highlight-number {
  margin-bottom: 54px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 800;
}

.highlight-card p {
  margin: auto 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.resume-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  margin-top: 16px;
}

.resume-panels article {
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.045);
}

.resume-panels h3 {
  margin-top: 18px;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.resume-panels h3:first-of-type {
  margin-top: 0;
}

.resume-panels p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.resume-panels a {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resume-panels a:hover,
.resume-panels a:focus-visible {
  color: var(--white);
}

.panel-label {
  margin: 0 0 18px !important;
  color: var(--warm) !important;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 20, 22, 0.18);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16, 20, 22, 0.18);
}

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

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 24px 80px rgba(16, 20, 22, 0.16);
}

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

.contact-intro p:not(.section-kicker) {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--sky);
  font-weight: 800;
}

.contact-links a:hover,
.contact-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 14px;
  color: var(--ink);
  border: 1px solid rgba(38, 34, 31, 0.2);
  border-radius: 6px;
  background: var(--white);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(31, 111, 139, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 64px);
  color: rgba(255, 250, 242, 0.72);
  background: var(--ink);
}

.footer-inner {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin: 0 auto;
  font-size: 0.88rem;
}

.footer-inner span:first-child {
  color: var(--white);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 23;
  }

  .site-nav {
    position: fixed;
    z-index: 22;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 22px 26px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid rgba(16, 20, 22, 0.12);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(38, 34, 31, 0.12);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 8vh);
    padding-bottom: 26vh;
  }

  .hero-copy {
    width: min(500px, 100%);
  }

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

  .hero-details span:nth-child(2) {
    border-right: 0;
  }

  .hero-details span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 250, 242, 0.22);
  }

  .bio-grid,
  .services-layout,
  .contact-grid,
  .video-layout {
    grid-template-columns: 1fr;
  }

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

  .resume-panels {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 8, 0.82), rgba(12, 10, 8, 0.42)),
      linear-gradient(180deg, rgba(12, 10, 8, 0.12), rgba(12, 10, 8, 0.42));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: calc(var(--header-height) + 9vh);
    padding-bottom: 31vh;
    margin-left: 16px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    left: 16px;
    right: 16px;
    bottom: 22px;
  }

  .hero-details span {
    min-height: 48px;
    font-size: 0.68rem;
  }

  .section {
    padding: 66px 16px;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .section-heading {
    display: block;
  }

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

  .highlight-card {
    min-height: 220px;
    padding: 22px;
  }

  .highlight-number {
    margin-bottom: 36px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
