/* ============================================================
   Ucey — Voice & Keys · Bay Area Weddings
   ============================================================ */

/* — — — Tokens — — — */
:root {
  --ink:       #08080d;
  --ink-2:     #11111b;
  --paper:     #f3ead4;
  --paper-dim: #c8bfa7;
  --brass:     #c9a366;
  --brass-deep:#8a6c34;
  --brass-glow:rgba(201, 163, 102, 0.22);
  --rule:      rgba(243, 234, 212, 0.14);
  --muted:     rgba(243, 234, 212, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 163, 102, 0.55) transparent;
}

/* — — — Base — — — */
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  will-change: transform;
  transform: translateZ(0);
}

/* — — — Selection & scrollbar — — — */
::selection        { background: var(--brass); color: var(--ink); }
::-moz-selection   { background: var(--brass); color: var(--ink); }

::-webkit-scrollbar         { width: 10px; height: 10px; }
::-webkit-scrollbar-track   { background: transparent; }
::-webkit-scrollbar-thumb   {
  background: linear-gradient(180deg, rgba(201,163,102,0.55), rgba(138,108,52,0.55));
  border: 2px solid var(--ink);
  border-radius: 999px;
  transition: background 240ms ease;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--brass), var(--brass-deep)); }
::-webkit-scrollbar-corner  { background: transparent; }

/* — — — Typography helpers — — — */
.display {
  font-family: 'Fraunces', 'Times New Roman', serif;
}
.display-italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
}


/* ============================================================
   Navigation
   ============================================================ */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(6px);
  transition: background-color 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
  will-change: transform;
  transform: translateZ(0);
}
header.site.scrolled {
  background: rgba(8, 8, 13, 0.72);
  border-bottom-color: var(--rule);
}

.brand {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-decoration: none;
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}
.brand sup {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-left: 6px;
  vertical-align: 7px;
}

nav.primary { display: flex; gap: 38px; align-items: center; }
nav.primary a {
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 200ms ease;
}
nav.primary a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--brass);
  transition: right 300ms cubic-bezier(.2,.7,.2,1);
}
nav.primary a:not(.cta):hover::after { right: 0; }
nav.primary a.cta {
  border: 1px solid var(--brass);
  color: var(--brass);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 250ms ease, color 250ms ease;
}
nav.primary a.cta:hover { background: var(--brass); color: var(--ink); }

.nav-toggle { display: none; }


/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 160px 48px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 90vmax;
  height: 90vmax;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--brass-glow), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: candle 8s ease-in-out infinite alternate;
}
@keyframes candle {
  0%   { opacity: 0.85; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;    transform: translateX(-48%) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1080px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 900ms 200ms ease forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 12px var(--brass);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(96px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--paper);
  opacity: 0;
  animation: fadeUp 1200ms 350ms cubic-bezier(.16,.84,.3,1) forwards;
}
.hero-title .y-flourish {
  display: inline-block;
  transform-origin: top left;
  transition: transform 600ms ease;
}
.hero-title:hover .y-flourish { transform: rotate(-2deg); }

.hero-tagline {
  margin: 38px auto 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper-dim);
  opacity: 0;
  animation: fadeUp 900ms 700ms ease forwards;
}
.hero-tagline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--paper);
  font-weight: 300;
}
.hero-cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 900ms 900ms ease forwards;
}

/* Buttons */
.btn-text {
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.btn-text .arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  position: relative;
  transition: width 300ms ease;
}
.btn-text .arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--paper);
  border-top: 1px solid var(--paper);
  transform: rotate(45deg);
}
.btn-text:hover .arrow { width: 40px; }

.btn-brass {
  background: var(--brass);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 0 0 var(--brass-glow);
}
.btn-brass:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -16px var(--brass-glow);
}

/* Corner ornaments */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--brass);
  opacity: 0.55;
  z-index: 1;
}
.hero-corner.tl { top: 110px; left: 48px;  border-top: 1px solid; border-left: 1px solid; }
.hero-corner.tr { top: 110px; right: 48px; border-top: 1px solid; border-right: 1px solid; }
.hero-corner.bl { bottom: 40px; left: 48px;  border-bottom: 1px solid; border-left: 1px solid; }
.hero-corner.br { bottom: 40px; right: 48px; border-bottom: 1px solid; border-right: 1px solid; }

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


/* ============================================================
   Marquee strip
   ============================================================ */
.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-2);
}
.strip-track {
  display: flex;
  gap: 60px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 24, 'SOFT' 80;
  font-size: 28px;
  color: var(--paper);
  white-space: nowrap;
}
.strip-item::after {
  content: '✦';
  color: var(--brass);
  font-size: 14px;
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}


/* ============================================================
   Section scaffolding
   ============================================================ */
section.block {
  padding: 140px 48px;
  position: relative;
}
.container { max-width: 1280px; margin: 0 auto; }

.section-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.section-meta::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}


/* ============================================================
   Performance photo (full-bleed)
   ============================================================ */
.perf-photo {
  position: relative;
  height: 82vh;
  overflow: hidden;
}
.perf-photo-img {
  position: absolute;
  inset: 0;
  /* Replace with: background-image: url('photo.jpg'); background-size: cover; background-position: center; */
  background:
    radial-gradient(ellipse at 38% 65%, rgba(201,163,102,0.34) 0%, transparent 52%),
    radial-gradient(ellipse at 72% 28%, rgba(140,90,40,0.2)    0%, transparent 46%),
    linear-gradient(158deg, #1c1509 0%, #0e0b06 48%, #080608 100%);
}
.perf-photo-img::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  z-index: 1;
}
.perf-photo-img::after {
  content: 'performance · placeholder';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243,234,212,0.1);
}
.perf-photo-label {
  position: absolute;
  bottom: 52px; left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.perf-photo-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}


/* ============================================================
   Services
   ============================================================ */
.services-list { border-top: 1px solid var(--rule); margin-top: 80px; }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 200px;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: padding-left 400ms ease;
  cursor: pointer;
}
.service-row::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--brass-glow), transparent);
  transition: left 700ms ease;
  pointer-events: none;
}
.service-row:hover::before { left: 100%; }
.service-row:hover { padding-left: 16px; }

.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: 28px;
  color: var(--brass);
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
}
.service-name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: 'opsz' 60, 'SOFT' 50;
  font-size: 36px;
  line-height: 1.05;
}
.service-desc {
  color: var(--paper-dim);
  font-size: 15px;
  max-width: 480px;
}
.service-cue {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 250ms ease, transform 350ms ease;
}
.service-row:hover .service-cue { color: var(--brass); transform: translateX(-6px); }


/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 4fr 2.6fr 5fr;
  gap: 40px;
  align-items: end;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,163,102,0.45), transparent 60%),
    linear-gradient(180deg, #1d1a18 0%, #0c0a09 100%);
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(243,234,212,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(243,234,212,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: overlay;
}
.about-portrait::after {
  content: 'photo · placeholder';
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-moment {
  align-self: stretch;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(ellipse at 58% 38%, rgba(201,163,102,0.3) 0%, transparent 55%),
    linear-gradient(200deg, #161009 0%, #0b0807 100%);
}
.about-moment::after {
  content: 'moment · placeholder';
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-copy p {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: 'opsz' 36, 'SOFT' 40;
  font-size: 22px;
  line-height: 1.55;
  color: var(--paper);
  margin-top: 28px;
}
.about-copy p + p {
  font-size: 16px;
  color: var(--paper-dim);
  line-height: 1.7;
  font-family: 'Manrope', sans-serif;
  font-variation-settings: normal;
}

.about-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.about-meta div span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-meta div p {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  font-size: 22px;
}

/* Video embed frame */
.video-frame {
  margin-top: 36px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: #080608;
  cursor: pointer;
}
.video-frame iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.play-btn {
  width: 54px; height: 54px;
  border: 1px solid rgba(201,163,102,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 220ms ease, background 220ms ease;
}
.video-frame:hover .play-btn {
  border-color: var(--brass);
  background: rgba(201,163,102,0.1);
}
.play-btn svg { fill: var(--brass); width: 14px; height: 14px; margin-left: 3px; }
.video-lbl {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================================
   Repertoire
   ============================================================ */
.repertoire {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.repertoire-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-top: 56px;
}
.rep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rep-list span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.rep-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 24, 'SOFT' 70;
  font-size: 19px;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.rep-list li small {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-variation-settings: normal;
}


/* ============================================================
   Testimonial
   ============================================================ */
.testimonial { text-align: center; }

.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--paper);
}
.testimonial blockquote::before {
  content: '\201C';
  display: block;
  font-size: 1.4em;
  line-height: 0.6;
  color: var(--brass);
  margin-bottom: 10px;
}
.testimonial cite {
  display: block;
  margin-top: 44px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}


/* ============================================================
   Venue moments strip
   ============================================================ */
.moments { padding-top: 0; }

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.moment-card {
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.moment-card:hover { transform: scale(1.025); }
.moment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 280ms ease;
  pointer-events: none;
  z-index: 3;
}
.moment-card:hover::before { border-color: rgba(201,163,102,0.5); }

.moment-img { position: absolute; inset: 0; }

.moment-card:nth-child(1) .moment-img {
  background:
    radial-gradient(ellipse at 38% 62%, rgba(180,118,48,0.38) 0%, transparent 58%),
    linear-gradient(142deg, #1a1208 0%, #0d0907 100%);
}
.moment-card:nth-child(2) .moment-img {
  background:
    radial-gradient(ellipse at 62% 38%, rgba(201,163,102,0.3) 0%, transparent 54%),
    linear-gradient(200deg, #141009 0%, #0a0807 100%);
}
.moment-card:nth-child(3) .moment-img {
  background:
    radial-gradient(ellipse at 28% 68%, rgba(158,98,44,0.35) 0%, transparent 54%),
    linear-gradient(124deg, #181008 0%, #0c0908 100%);
}
.moment-img::after {
  content: 'photo · placeholder';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,234,212,0.1);
}

.moment-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(8,8,13,0.88), transparent);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.moment-card:hover .moment-caption { opacity: 1; transform: translateY(0); }
.moment-caption span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.moment-caption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 24, 'SOFT' 70;
  font-size: 18px;
  color: var(--paper);
  margin-top: 5px;
}


/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 90vmax;
  height: 70vmax;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(201,163,102,0.18), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 96px;
  align-items: start;
}
.contact-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.contact-title em { color: var(--brass); }

.contact-intro {
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 32px;
  max-width: 460px;
}
.contact-details {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details a,
.contact-details span {
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.contact-details a::before,
.contact-details span::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}

form.inquiry {
  display: grid;
  gap: 26px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule);
  padding: 40px;
  border-radius: 3px;
}
form.inquiry label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
form.inquiry input,
form.inquiry textarea,
form.inquiry select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  font-family: inherit;
  font-size: 16px;
  padding: 8px 0 14px;
  transition: border-color 250ms ease;
}
form.inquiry input:focus,
form.inquiry textarea:focus,
form.inquiry select:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
form.inquiry textarea { resize: vertical; min-height: 120px; }
form.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
form.inquiry button {
  margin-top: 16px;
  background: var(--brass);
  color: var(--ink);
  border: none;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
form.inquiry button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -16px var(--brass-glow);
}
form.inquiry button:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.form-msg {
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.6;
  min-height: 1.6em;
}
.form-msg--ok  { color: var(--brass); }
.form-msg--err { color: #c97a66; }


/* ============================================================
   Footer
   ============================================================ */
footer.site {
  padding: 64px 48px 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--ink);
}
footer.site p {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
footer.site .footer-brand {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--brass);
}
footer.site .socials {
  text-align: right;
  display: inline-flex;
  gap: 18px;
  justify-content: flex-end;
}
footer.site .socials a {
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 200ms ease;
}
footer.site .socials a:hover { color: var(--brass); }


/* ============================================================
   Visited-link reset — keep all links visually uniform
   Browsers turn :visited links purple by default; this pins
   every link to the same colour it has when unvisited.
   ============================================================ */
.brand:visited                 { color: var(--paper); }
nav.primary a:visited          { color: var(--paper); }
nav.primary a.cta:visited      { color: var(--brass); }
.btn-text:visited              { color: var(--paper); }
.btn-brass:visited             { color: var(--ink);   }
.contact-details a:visited     { color: var(--paper); }
footer.site .footer-address a  { color: var(--muted); text-decoration: none; }
footer.site .footer-address a:visited { color: var(--muted); }
footer.site .socials a:visited { color: var(--paper); }


/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   Custom cursor
   ============================================================ */
.c-dot, .c-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: none;
  will-change: transform;
}
.c-dot {
  width: 5px; height: 5px;
  background: var(--brass);
  box-shadow: 0 0 8px rgba(201,163,102,0.7);
  transition: opacity 180ms ease;
}
.c-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,163,102,0.55);
  background: transparent;
  transition:
    width  280ms cubic-bezier(.2,.7,.2,1),
    height 280ms cubic-bezier(.2,.7,.2,1),
    border-color 220ms ease,
    opacity 180ms ease;
}
body.cur-hover .c-ring {
  width: 52px; height: 52px;
  border-color: var(--brass);
}
body.cur-out .c-dot,
body.cur-out .c-ring { opacity: 0; }

@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  input, textarea, select, button { cursor: auto !important; }
  .c-dot, .c-ring { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { cursor: auto !important; }
  .c-dot, .c-ring { display: none !important; }
}


/* ============================================================
   Responsive — mobile (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  header.site { padding: 18px 24px; }

  nav.primary { display: none; }
  nav.primary.open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    gap: 28px;
    padding: 80px 32px;
  }
  nav.primary a { font-size: 14px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 60;
  }
  .nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--paper);
  }

  .hero { padding: 140px 24px 60px; }
  .hero-corner { display: none; }

  section.block { padding: 96px 24px; }

  .perf-photo { height: 52vh; }
  .perf-photo-label { left: 24px; bottom: 32px; }

  .service-row { grid-template-columns: 56px 1fr; gap: 16px; }
  .service-row .service-desc,
  .service-row .service-cue { grid-column: 2; }
  .service-num  { font-size: 22px; }
  .service-name { font-size: 26px; }

  .about-grid   { grid-template-columns: 1fr; gap: 32px; }
  .about-moment { min-height: 220px; aspect-ratio: 3 / 2; }
  .about-meta   { grid-template-columns: 1fr 1fr; gap: 28px; }

  .repertoire-columns { grid-template-columns: 1fr; gap: 48px; }

  .moments-grid { grid-template-columns: 1fr; gap: 12px; }

  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  form.inquiry { padding: 28px; }
  form.inquiry .row { grid-template-columns: 1fr; }

  footer.site { grid-template-columns: 1fr; text-align: center; }
  footer.site .socials { justify-content: center; }
}
