@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #060606;
  --text: #faf7f0;
  --muted: rgba(250, 247, 240, 0.72);
  --muted-light: rgba(250, 247, 240, 0.48);
  --line: rgba(169, 78, 36, 0.22);
  --line-strong: rgba(217, 108, 44, 0.48);
  --accent: #d96c2c;
  --accent-2: #a94e24;
  --card: #24211f;
  --card-soft: rgba(36, 33, 31, 0.72);
  --black: #060606;
  --cream: #faf7f0;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;

  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 18px 58px rgba(0, 0, 0, 0.32);

  --max-width: 1240px;

  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "Space Grotesk", "Manrope", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
span,
li {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.background-texture {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 108, 44, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(250, 247, 240, 0.045), transparent 30%),
    linear-gradient(180deg, #060606 0%, #0b0a09 58%, #060606 100%);
}

.background-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: radial-gradient(#faf7f0 0.5px, transparent 0.5px);
  background-size: 13px 13px;
}

.background-glow {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(78px);
  opacity: 0.34;
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  top: 14%;
  right: 4%;
  background: rgba(217, 108, 44, 0.16);
}

.glow-two {
  width: 520px;
  height: 520px;
  bottom: 0%;
  left: 4%;
  background: rgba(169, 78, 36, 0.1);
}

.site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(900px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.brand {
  pointer-events: auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 118px;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.brand-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.brand.has-logo .brand-fallback {
  display: none;
}

.brand-mark {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: 30px;
  line-height: 1;
}

.brand-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  pointer-events: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 24px;
  border: 1px solid rgba(169, 78, 36, 0.24);
  border-radius: 999px;
  background: rgba(36, 33, 31, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent);
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  pointer-events: auto;
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: 999px;
  background: rgba(36, 33, 31, 0.72);
  color: var(--text);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 88vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 168px 7vw 72px;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1120px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  color: var(--text);
  font-size: clamp(76px, 12.4vw, 172px);
  line-height: 0.86;
  letter-spacing: -0.074em;
  max-width: 1040px;
  font-weight: 700;
}

.hero-accent-line {
  position: relative;
  width: min(680px, 100%);
  height: 42px;
  margin-top: 28px;
  overflow: hidden;
}

.hero-accent-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(169, 78, 36, 0.2);
  transform: translateY(-50%);
}

.hero-accent-line span {
  position: absolute;
  inset: 0;
  width: 118%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='680' height='42' viewBox='0 0 680 42' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 22 C40 22 48 16 72 16 C98 16 106 29 132 29 C158 29 168 18 194 18 C224 18 232 25 260 25 C290 25 300 14 330 14 C360 14 370 30 398 30 C426 30 436 19 466 19 C496 19 504 26 534 26 C564 26 576 16 604 16 C634 16 646 22 680 22' fill='none' stroke='%23D96C2C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.5;
  filter: drop-shadow(0 0 10px rgba(217, 108, 44, 0.18));
  animation: heroWaveMove 7s ease-in-out infinite;
}

.hero-accent-line span:nth-child(2) {
  top: 5px;
  opacity: 0.18;
  animation-duration: 9s;
  animation-direction: reverse;
}

.hero-accent-line span:nth-child(3) {
  top: -6px;
  opacity: 0.12;
  animation-duration: 11s;
}

.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
  font-weight: 800;
}

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

.hero-meta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta span {
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  background: rgba(36, 33, 31, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.btn-dark {
  background: var(--accent);
  color: var(--black);
}

.btn-light {
  background: rgba(36, 33, 31, 0.72);
  color: var(--text);
  border: 1px solid rgba(169, 78, 36, 0.38);
}

.btn-light:hover {
  border-color: var(--accent);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 108px 7vw;
}

.work-section {
  padding-top: 72px;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.contact-card h2,
.about-title h2 {
  color: var(--text);
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.056em;
  font-weight: 700;
}

.section-heading p:not(.eyebrow),
.contact-card p {
  margin-top: 22px;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 650;
}

.work-index {
  margin-top: 58px;
  display: grid;
  gap: 52px;
}

.work-group {
  display: grid;
  gap: 12px;
}

.work-group-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(169, 78, 36, 0.28);
}

.work-group-heading p {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.048em;
}

.work-group-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: right;
}

.work-item,
.sample-row,
.service-card {
  position: relative;
  border: 1px solid rgba(169, 78, 36, 0.22);
  background: rgba(36, 33, 31, 0.74);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.work-item::before,
.sample-row::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(217, 108, 44, 0.14),
      transparent 36%
    );
  transition: opacity 0.25s ease;
}

.work-item:hover,
.sample-row:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(36, 33, 31, 0.92);
}

.work-item:hover::before,
.sample-row:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.work-item > *,
.sample-row > *,
.service-card > * {
  position: relative;
  z-index: 1;
}

.work-item {
  min-height: 190px;
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 28px;
  align-items: stretch;
}

.sample-info span,
.quote-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.work-main h3 {
  color: var(--text);
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.056em;
  font-weight: 700;
}

.work-credit {
  margin-top: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
}

.work-credit strong {
  color: var(--text);
  font-weight: 900;
}

.work-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.work-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 108, 44, 0.42);
  border-radius: 999px;
  color: var(--text);
  background: rgba(6, 6, 6, 0.32);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.work-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(217, 108, 44, 0.12);
}

.work-link-muted {
  color: var(--muted-light);
  border-color: rgba(169, 78, 36, 0.24);
  cursor: default;
}

.work-link-muted:hover {
  transform: none;
  border-color: rgba(169, 78, 36, 0.24);
  background: rgba(6, 6, 6, 0.32);
}

.work-thumb {
  position: relative;
  min-height: 170px;
  border: 1px solid rgba(169, 78, 36, 0.26);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 108, 44, 0.18), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(250, 247, 240, 0.05), transparent 34%),
    linear-gradient(135deg, #24211f, #141210);
  background-size: cover;
  background-position: center;
}

.work-thumb img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.work-group:nth-child(2) .work-item:nth-of-type(2) .work-thumb img {
  object-fit: contain;
  object-position: center center;
  padding: 0;
  background: #060606;
}

.work-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0), rgba(6, 6, 6, 0.2)),
    radial-gradient(circle at 18% 18%, rgba(217, 108, 44, 0.05), transparent 38%);
}

.work-group:nth-child(2) .work-item:nth-of-type(2) .work-thumb::before {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0), rgba(6, 6, 6, 0.08));
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(250, 247, 240, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(250, 247, 240, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.work-tile-copy {
  display: none;
}

.work-thumb span {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.work-thumb small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-section,
.samples-section,
.about-section,
.contact-section {
  padding-top: 72px;
}

.reel-frame {
  position: relative;
  margin-top: 50px;
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #060606;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.reel-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 108, 44, 0.46);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
}

.reel-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #060606;
}

.reel-empty {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 108, 44, 0.24), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(250, 247, 240, 0.06), transparent 24%),
    linear-gradient(135deg, #141210, #060606);
  overflow: hidden;
}

.reel-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(250, 247, 240, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(250, 247, 240, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
}

.reel-empty::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 50%;
  height: 90px;
  opacity: 0.24;
  transform: translateY(-50%);
  background-repeat: repeat-x;
  background-size: 680px 90px;
  background-image: url("data:image/svg+xml,%3Csvg width='680' height='90' viewBox='0 0 680 90' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 46 C38 46 50 30 76 30 C104 30 116 62 144 62 C174 62 184 36 212 36 C244 36 254 54 284 54 C316 54 326 24 358 24 C388 24 400 66 432 66 C462 66 474 39 504 39 C536 39 548 57 578 57 C610 57 624 34 680 42' fill='none' stroke='%23D96C2C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  filter: drop-shadow(0 0 18px rgba(217, 108, 44, 0.22));
  animation: reelWaveDrift 12s ease-in-out infinite;
}

.play-button,
.reel-copy,
.reel-status {
  position: relative;
  z-index: 2;
}

.play-button {
  width: 82px;
  height: 82px;
  margin: 0 auto 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(250, 247, 240, 0.1);
  border: 1px solid rgba(217, 108, 44, 0.36);
  backdrop-filter: blur(12px);
  color: var(--accent);
  font-size: 24px;
  box-shadow: 0 0 46px rgba(217, 108, 44, 0.16);
  animation: reelButtonPulse 4s ease-in-out infinite;
}

.reel-copy p {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.056em;
  font-weight: 700;
  color: var(--text);
}

.reel-copy small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.reel-status {
  position: absolute;
  right: 28px;
  bottom: 28px;
}

.reel-status span {
  display: inline-flex;
  border: 1px solid rgba(169, 78, 36, 0.36);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(36, 33, 31, 0.72);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sample-list {
  margin-top: 50px;
  display: grid;
  gap: 12px;
}

.sample-row {
  min-height: 112px;
  border-radius: var(--radius-sm);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.7fr);
  gap: 22px;
  align-items: center;
}

.sample-info h3 {
  color: var(--text);
  margin-top: 8px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.sample-info p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.sample-player {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.sample-toggle {
  min-width: 78px;
  min-height: 42px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.sample-toggle:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.sample-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
}

.sample-progress {
  width: min(220px, 100%);
  height: 9px;
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.7);
  overflow: hidden;
}

.sample-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.15s linear;
}

.sample-time {
  min-width: 86px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.sample-row:not(.audio-loaded) .sample-toggle,
.sample-row:not(.audio-loaded) .sample-progress {
  display: none;
}

.sample-row:not(.audio-loaded) .sample-player {
  justify-content: flex-end;
}

.sample-row:not(.audio-loaded) .sample-time {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: auto;
  border: 1px solid rgba(169, 78, 36, 0.3);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: rgba(6, 6, 6, 0.28);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-row.audio-loaded .sample-time {
  min-width: 76px;
}

.service-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}

.service-card {
  min-width: 0;
  border: 1px solid rgba(169, 78, 36, 0.22);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.service-media {
  position: relative;
  min-height: 220px;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 108, 44, 0.16), transparent 34%),
    linear-gradient(135deg, #24211f, #141210);
  border: 1px solid rgba(169, 78, 36, 0.22);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0), rgba(6, 6, 6, 0.32)),
    radial-gradient(circle at 20% 20%, rgba(217, 108, 44, 0.08), transparent 38%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-copy {
  min-width: 0;
}

.service-card h3 {
  color: var(--text);
  margin-top: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.service-card p {
  margin-top: 20px;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 650;
}

.about-section {
  max-width: 1500px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(260px, 0.68fr) minmax(330px, 1fr);
  gap: clamp(26px, 3vw, 48px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid rgba(169, 78, 36, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 108, 44, 0.12), transparent 34%),
    rgba(36, 33, 31, 0.74);
  box-shadow: var(--shadow-soft);
}

.about-title,
.about-copy {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-title {
  display: grid;
  align-content: center;
  min-width: 0;
  z-index: 3;
}

.about-title .eyebrow {
  margin-bottom: 18px;
}

.about-title h2 {
  max-width: none;
  font-size: clamp(52px, 4.3vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.058em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.about-image {
  min-height: 360px;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(169, 78, 36, 0.26);
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 108, 44, 0.18), transparent 34%),
    linear-gradient(135deg, #24211f, #141210);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  display: block;
  align-self: center;
  min-width: 0;
  z-index: 2;
}

.about-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.about-copy > p + p {
  margin-top: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.quote-card {
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid rgba(169, 78, 36, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  background:
    radial-gradient(circle at 85% 15%, rgba(217, 108, 44, 0.12), transparent 34%),
    rgba(36, 33, 31, 0.74);
}

.quote-card {
  background: rgba(36, 33, 31, 0.74);
}

.availability-list {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(169, 78, 36, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(6, 6, 6, 0.24);
}

.availability-list span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.availability-list ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.availability-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.availability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-methods a {
  padding: 18px;
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(6, 6, 6, 0.28);
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.contact-methods a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.contact-methods span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.quote-label {
  display: block;
  margin-bottom: 18px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(169, 78, 36, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(6, 6, 6, 0.42);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(250, 247, 240, 0.66) 50%),
    linear-gradient(135deg, rgba(250, 247, 240, 0.66) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 54%,
    calc(100% - 14px) 54%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quote-form option {
  background: #141210;
  color: var(--text);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(250, 247, 240, 0.42);
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--accent);
  background-color: rgba(6, 6, 6, 0.58);
}

.quote-form button {
  min-height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quote-form button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 7vw 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid rgba(169, 78, 36, 0.18);
}

.footer-brand p {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-brand span,
.footer-contact p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@keyframes heroWaveMove {
  0%,
  100% {
    transform: translateX(-8%);
  }

  50% {
    transform: translateX(0%);
  }
}

@keyframes reelWaveDrift {
  0%,
  100% {
    transform: translate(-3%, -50%);
  }

  50% {
    transform: translate(3%, -50%);
  }
}

@keyframes reelButtonPulse {
  0%,
  100% {
    box-shadow: 0 0 46px rgba(217, 108, 44, 0.16);
  }

  50% {
    box-shadow: 0 0 72px rgba(217, 108, 44, 0.26);
  }
}

@media (max-width: 1300px) {
  .about-layout {
    grid-template-columns: minmax(340px, 1fr) minmax(240px, 0.7fr) minmax(300px, 1fr);
    max-width: 1200px;
  }

  .about-title h2 {
    font-size: clamp(50px, 4.1vw, 72px);
  }

  .about-copy > p {
    font-size: 17px;
    line-height: 1.68;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.8fr);
    grid-template-areas:
      "title image"
      "copy copy";
    max-width: 860px;
  }

  .about-title {
    grid-area: title;
  }

  .about-image {
    grid-area: image;
  }

  .about-copy {
    grid-area: copy;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .about-copy > p + p {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 184px;
  }

  .service-grid {
    max-width: 760px;
  }

  .work-item,
  .sample-row {
    grid-template-columns: 1fr;
  }

  .work-thumb {
    min-height: 260px;
  }

  .work-group-heading {
    align-items: start;
    flex-direction: column;
  }

  .work-group-heading span {
    text-align: left;
  }

  .sample-player,
  .sample-row:not(.audio-loaded) .sample-player {
    justify-content: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }

  .site-header {
    top: 14px;
    width: min(520px, calc(100% - 28px));
    gap: 9px;
  }

  .brand {
    min-height: 44px;
  }

  .brand-logo {
    max-width: 104px;
    max-height: 46px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    padding: 10px 16px;
    font-size: 12px;
  }

  .mobile-nav {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: 90;
    width: min(520px, calc(100% - 28px));
    padding: 12px;
    border: 1px solid rgba(169, 78, 36, 0.28);
    border-radius: var(--radius-md);
    background: rgba(36, 33, 31, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-nav a {
    padding: 12px 15px;
    border: 1px solid rgba(169, 78, 36, 0.28);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    background: rgba(6, 6, 6, 0.32);
  }

  .brand-mark {
    font-size: 26px;
  }

  .brand-text {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 146px 22px 62px;
  }

  .section {
    padding: 78px 22px;
  }

  .work-section {
    padding-top: 58px;
  }

  .reel-section,
  .samples-section,
  .about-section,
  .contact-section {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(54px, 17.5vw, 98px);
    letter-spacing: -0.068em;
  }

  .hero-accent-line {
    width: 100%;
    height: 34px;
    margin-top: 22px;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-meta {
    margin-top: 36px;
    gap: 9px;
  }

  .hero-meta span {
    padding: 8px 11px;
    font-size: 10px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 14px 20px;
  }

  .section-heading h2,
  .contact-card h2,
  .about-title h2 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .section-heading p:not(.eyebrow),
  .contact-card p {
    font-size: 16px;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .work-index {
    margin-top: 44px;
    gap: 42px;
  }

  .work-group {
    gap: 10px;
  }

  .work-item {
    min-height: auto;
    padding: 22px;
    gap: 20px;
    border-radius: 22px;
  }

  .work-main h3 {
    font-size: clamp(36px, 13vw, 60px);
  }

  .work-credit {
    font-size: 15px;
    line-height: 1.58;
  }

  .work-thumb {
    min-height: 230px;
    border-radius: 12px;
  }

  .reel-frame {
    margin-top: 34px;
    border-radius: 26px;
  }

  .reel-empty {
    aspect-ratio: auto;
    min-height: 300px;
    padding: 30px 22px;
    gap: 14px;
  }

  .reel-empty::after {
    height: 70px;
    background-size: 620px 70px;
  }

  .play-button {
    width: 68px;
    height: 68px;
    font-size: 21px;
  }

  .reel-copy p {
    font-size: clamp(36px, 12vw, 56px);
  }

  .reel-copy small {
    font-size: 14px;
  }

  .reel-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 4px;
  }

  .sample-list {
    margin-top: 36px;
  }

  .sample-row {
    padding: 20px;
    gap: 18px;
    border-radius: 14px;
  }

  .sample-info h3 {
    font-size: clamp(24px, 9vw, 34px);
  }

  .sample-player,
  .sample-row:not(.audio-loaded) .sample-player {
    justify-content: flex-start;
  }

  .sample-row.audio-loaded .sample-player {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .sample-toggle {
    width: 100%;
  }

  .sample-progress {
    width: 100%;
  }

  .sample-time {
    min-width: 0;
    text-align: left;
  }

  .service-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .service-card {
    padding: 20px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 190px;
  }

  .service-card h3 {
    margin-top: 0;
    font-size: clamp(34px, 10vw, 52px);
  }

  .service-card p {
    font-size: 16px;
  }

  .about-layout,
  .contact-layout {
    gap: 18px;
  }

  .about-layout {
    display: block;
    max-width: none;
    padding: 28px;
    border-radius: 26px;
  }

  .about-title {
    display: block;
  }

  .about-title .eyebrow {
    margin-bottom: 18px;
  }

  .about-title h2 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .about-image {
    margin-top: 28px;
  }

  .about-image,
  .about-image img {
    min-height: 240px;
  }

  .about-copy {
    display: block;
    margin-top: 28px;
  }

  .about-copy > p + p {
    margin-top: 22px;
  }

  .contact-card,
  .quote-card {
    padding: 28px;
    border-radius: 26px;
  }

  .availability-list {
    padding: 18px;
  }

  .about-copy > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .quote-form input,
  .quote-form textarea,
  .quote-form select {
    font-size: 16px;
  }

  .footer {
    padding: 30px 22px 46px;
    gap: 18px;
  }

  .footer-links {
    gap: 10px 14px;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 22px);
  }

  .mobile-nav {
    top: 96px;
    width: calc(100% - 22px);
  }

  .brand-logo {
    max-width: 96px;
    max-height: 42px;
  }

  .hero {
    padding: 136px 18px 58px;
  }

  .section {
    padding: 70px 18px;
  }

  h1 {
    font-size: clamp(50px, 16.5vw, 78px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta span {
    padding: 8px 10px;
    font-size: 9px;
  }

  .section-heading h2,
  .contact-card h2,
  .about-title h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .work-item,
  .service-card,
  .sample-row,
  .contact-card,
  .quote-card {
    padding: 20px;
  }

  .about-layout {
    padding: 20px;
  }

  .work-thumb {
    min-height: 205px;
  }

  .service-media {
    min-height: 170px;
  }

  .reel-empty {
    min-height: 280px;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .reel-copy p {
    font-size: clamp(32px, 12vw, 46px);
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 128px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-meta span {
    letter-spacing: 0.1em;
  }

  .work-thumb {
    min-height: 190px;
  }

  .service-media {
    min-height: 158px;
  }

  .reel-empty {
    min-height: 260px;
  }

  .footer-brand p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}