:root {
  --ink: #151515;
  --muted: #68645f;
  --paper: #f7f4ef;
  --paper-2: #ebe6de;
  --line: rgba(21, 21, 21, 0.14);
  --accent: #b93628;
  --accent-dark: #7b2018;
  --charcoal: #20201e;
  --white: #fffaf2;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.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;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(247, 244, 239, 0.9);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-mark img,
.site-header.nav-active .brand-mark img {
  filter: invert(1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.78;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.8), rgba(13, 13, 12, 0.35) 48%, rgba(13, 13, 12, 0.58)),
    linear-gradient(0deg, rgba(13, 13, 12, 0.72), rgba(13, 13, 12, 0.05) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: 190px clamp(22px, 7vw, 96px) clamp(120px, 13vh, 180px);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9c8f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.5vw, 8rem);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-actions a,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.contact-actions a:hover,
.text-link:hover {
  transform: translateY(-2px);
}

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

.button-secondary {
  color: var(--white);
}

.inquiry-page {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.inquiry-header {
  background: rgba(247, 244, 239, 0.9);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.inquiry-header .brand-mark img {
  filter: invert(1);
}

.inquiry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  padding-top: clamp(150px, 16vw, 220px);
  padding-bottom: clamp(44px, 7vw, 88px);
}

.inquiry-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 7rem);
}

.inquiry-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.inquiry-shell {
  padding-top: 0;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.inquiry-form fieldset {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.inquiry-form legend {
  padding: 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-grid,
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.2);
  border-radius: 0;
  background: rgba(255, 250, 242, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 48px;
  padding: 0 14px;
}

.inquiry-form textarea {
  min-height: 190px;
  padding: 14px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(185, 54, 40, 0.16);
  outline-offset: 0;
}

.checkbox-grid {
  gap: 12px 18px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(247, 244, 239, 0.64);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.checkbox-grid input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--accent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.inquiry-form .button-primary {
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.inquiry-form .button-secondary {
  border-color: rgba(21, 21, 21, 0.18);
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(690px, calc(100% - 36px));
  border-top: 1px solid rgba(255, 250, 242, 0.34);
  border-bottom: 1px solid rgba(255, 250, 242, 0.22);
  color: rgba(255, 250, 242, 0.78);
}

.hero-panel span {
  min-height: 68px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
  font-size: 0.83rem;
}

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

.section-pad {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 140px) 0;
}

.services,
.listen {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: clamp(22px, 4vw, 54px);
  padding-left: clamp(22px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 12%, rgba(255, 250, 242, 0.92), transparent 34%),
    linear-gradient(135deg, #f3eee6 0%, #e9e2d8 48%, #f7f4ef 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  overflow: hidden;
}

.services::before,
.listen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(21, 21, 21, 0.055) 18.1% 18.24%, transparent 18.34% 100%),
    linear-gradient(120deg, transparent 0 62%, rgba(21, 21, 21, 0.04) 62.1% 62.22%, transparent 62.32% 100%);
  mix-blend-mode: multiply;
}

.services > *,
.listen > * {
  position: relative;
  z-index: 1;
}

.services > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  margin-bottom: clamp(36px, 6vw, 76px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.service-grid article {
  min-height: 310px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-index {
  display: block;
  margin-bottom: 78px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-grid p,
.work figcaption span,
.listen p,
.about-copy p {
  color: var(--muted);
}

.work {
  width: 100%;
  max-width: none;
  padding-right: clamp(22px, 4vw, 54px);
  padding-left: clamp(22px, 4vw, 54px);
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  width: min(1380px, 100% - 2px);
  margin: 0 auto;
}

.work-intro {
  align-self: end;
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: clamp(20px, 3vw, 38px) clamp(10px, 2.5vw, 28px) clamp(12px, 2vw, 24px) 0;
}

.work h2 {
  max-width: 620px;
  font-size: clamp(2.05rem, 2.65vw, 3.25rem);
}

.work-grid figure {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.work-grid .feature-shot {
  grid-column: 6 / -1;
  aspect-ratio: 16 / 9;
}

.work-grid figure:nth-of-type(2) {
  grid-column: 1 / 5;
}

.work-grid figure:nth-of-type(3) {
  grid-column: 5 / 9;
}

.work-grid figure:nth-of-type(4) {
  grid-column: 9 / -1;
}

.work-grid figure:not(.feature-shot) {
  aspect-ratio: 1 / 1;
}

.work-grid img,
.work-media {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 500ms ease, opacity 500ms ease;
}

.work-grid figure:hover img,
.work-grid figure:hover .work-media {
  transform: scale(1.035);
  opacity: 1;
}

.work figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.work figcaption span {
  color: rgba(255, 250, 242, 0.72);
}

.listen {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  padding-left: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
}

.listen-copy {
  position: sticky;
  top: 110px;
}

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

.player-shell {
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.player-shell iframe {
  display: block;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  padding-left: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  background: #060605;
  color: var(--white);
}

.portrait-wrap {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
  background: #060605;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 32%, rgba(6, 6, 5, 0.18) 50%, #060605 88%),
    linear-gradient(90deg, #060605 0%, transparent 18%, transparent 82%, #060605 100%);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.82) contrast(1.08);
  opacity: 0.94;
  mix-blend-mode: normal;
}

.about-copy p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.03rem;
}

.about-copy h2 {
  margin-bottom: 34px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  padding-left: max(clamp(22px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.94), rgba(247, 244, 239, 0.72)),
    url("assets/nashville-map.svg") center / cover no-repeat;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(247, 244, 239, 0.86), transparent 34%, rgba(247, 244, 239, 0.72));
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 780px;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(22px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 22px 28px;
    background: rgba(247, 244, 239, 0.96);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

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

  .hero-content {
    padding-top: 160px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    right: 22px;
    bottom: 22px;
    width: min(360px, calc(100% - 44px));
  }

  .hero-panel span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  }

  .hero-panel span:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .inquiry-hero,
  .listen,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-grid article:nth-child(2n) {
    border-right: 0;
  }

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

  .work-intro,
  .work-grid figure,
  .work-grid figure:nth-of-type(2),
  .work-grid figure:nth-of-type(3),
  .work-grid figure:nth-of-type(4),
  .work-grid .feature-shot {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-intro {
    align-self: start;
    padding: 0 0 18px;
  }

  .work-grid .feature-shot {
    min-height: 0;
  }

  .listen-copy {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-content {
    padding: 132px 22px 300px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .section-pad {
    width: min(100% - 32px, var(--max));
    padding: 72px 0;
  }

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

  .service-grid article {
    min-height: 240px;
    border-right: 0;
  }

  .services,
  .listen {
    padding-right: 16px;
    padding-left: 16px;
    background-size: 48px 48px, 48px 48px, auto, auto;
  }

  .inquiry-page {
    background-size: 48px 48px;
  }

  .inquiry-hero {
    padding-top: 124px;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .service-index {
    margin-bottom: 42px;
  }

  .work {
    padding-right: 16px;
    padding-left: 16px;
  }

  .work-grid figure {
    min-height: 280px;
  }

  .portrait-wrap {
    min-height: 420px;
  }

  .contact-actions a,
  .hero-actions a {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
