
:root {
  --ink: #18222d;
  --navy: #132332;
  --navy-2: #1d3448;
  --bronze: #b78045;
  --bronze-light: #d4ae7e;
  --paper: #f6f3ee;
  --white: #ffffff;
  --muted: #66717d;
  --line: #dcd6cd;
  --shadow: 0 20px 50px rgba(19,35,50,.12);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,243,238,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(24,34,45,.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: .01em;
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
}
.brand span {
  margin-top: 6px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  color: #38434e;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bronze); }
.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 1rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(183,128,69,.18), transparent 33%),
    linear-gradient(135deg, #152636 0%, #101c28 100%);
  color: var(--white);
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 70px;
  padding: 86px 0;
}
.eyebrow {
  display: inline-block;
  color: var(--bronze-light);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  margin-bottom: 20px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin-top: 0;
  color: var(--navy);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero p {
  color: #dce4eb;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 670px;
  margin: 0 0 32px;
}
.hero-mark {
  aspect-ratio: 1;
  width: min(350px, 72vw);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-mark::before, .hero-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-mark::before { inset: 28px; }
.hero-mark::after { inset: 58px; }
.hero-mark-inner {
  text-align: center;
  z-index: 1;
}
.hero-mark .vo {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 1;
  color: var(--bronze-light);
}
.hero-mark small {
  display: block;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .65rem;
  color: #cfd8df;
}

.btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-primary { background: var(--bronze); color: #fff; }
.btn-primary:hover { background: #9d6a36; transform: translateY(-1px); }
.btn-secondary { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,.08); }

.section { padding: 88px 0; }
.section-white { background: var(--white); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 14px; }
.section-heading p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 22px rgba(19,35,50,.04);
}
.card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }

.audio-card {
  display: grid;
  gap: 18px;
}
.audio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.badge {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 800;
}
audio { width: 100%; }

.quote-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
}
.quote-band p { color: #bdc9d2; margin: 18px 0 0; }

.about-preview, .about-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: center;
}
.headshot {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #ded8cf;
}
.about-copy h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); margin-bottom: 18px; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 82px 0 72px;
}
.page-hero h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 4.8rem); margin-bottom: 12px; }
.page-hero p { color: #c8d2da; max-width: 700px; margin: 0; }

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-box h2 { font-size: 2rem; }
.contact-box p { color: var(--muted); }

.site-footer {
  background: #0e1822;
  color: #c4ccd3;
  padding: 34px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-grid a { color: var(--bronze-light); text-decoration: none; }
.small { font-size: .9rem; color: var(--muted); }

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 18px; border-bottom: 1px solid #eee9e2; }
  .nav-links a:last-child { border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 54px; padding: 64px 0; }
  .hero-mark { width: min(290px, 72vw); }
  .grid-3 { grid-template-columns: 1fr; }
  .about-preview, .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .about-preview .headshot, .about-layout .headshot { max-width: 430px; }
  .section { padding: 66px 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero h1 { font-size: 3rem; }
  .page-hero { padding: 62px 0 54px; }
  .card, .contact-box { padding: 22px; }
}

/* Project inquiry form */
.contact-section { background: linear-gradient(180deg, #f6f3ee 0%, #eee9e2 100%); }
.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
  align-items: start;
}
.contact-intro { position: sticky; top: 118px; }
.contact-intro h2 { font-size: clamp(2.2rem, 4vw, 3.15rem); margin-bottom: 16px; }
.contact-intro > p { color: var(--muted); font-size: 1.03rem; margin-bottom: 30px; }
.inquiry-notes { display: grid; gap: 18px; }
.inquiry-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.note-number {
  color: var(--bronze);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding-top: 2px;
}
.inquiry-note strong { display: block; color: var(--navy); margin-bottom: 3px; }
.inquiry-note span:not(.note-number) { color: var(--muted); font-size: .93rem; line-height: 1.5; }
.form-card { padding: 38px; }
.inquiry-form { display: grid; gap: 22px; }
.form-grid { display: grid; gap: 18px; }
.form-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.form-field { display: grid; gap: 8px; }
.form-field label {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
}
.optional { color: #8a929a; font-size: .76rem; font-weight: 500; margin-left: 4px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfc8be;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input,
.form-field select { min-height: 48px; }
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(183,128,69,.14);
}
.form-field small { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.form-actions { display: grid; gap: 12px; align-items: start; }
.form-submit { border: 0; cursor: pointer; width: fit-content; font: inherit; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-privacy { margin: 0; color: var(--muted) !important; font-size: .78rem; line-height: 1.45; max-width: 620px; }
.form-status { display: none; border-radius: 10px; padding: 12px 14px; font-size: .9rem; }
.form-status.visible { display: block; }
.form-status.success { background: #edf6ef; border: 1px solid #b9d9c0; color: #285f34; }
.form-status.error { background: #fbefee; border: 1px solid #e4b9b5; color: #8b3028; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 920px) {
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-intro { position: static; }
  .inquiry-notes { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .inquiry-note { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .form-grid-2, .form-grid-3, .inquiry-notes { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .form-submit { width: 100%; }
}
