:root {
  --ink: #181713;
  --paper: #f2f0e9;
  --line: #cbc8bd;
  --acid: #dfff4f;
  --coral: #ff684f;
  --blue: #1d47d6;
  --muted: #77746b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d8d6cf;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 23, 19, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 6px;
}

.site-header {
  min-height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 26px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
}

.brand-mark i:nth-child(1) { height: 9px; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 14px; }
.brand-mark i:nth-child(4) { height: 24px; }

nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

nav a,
.social-links a {
  transition: opacity 180ms ease;
}

nav a:hover,
.social-links a:hover {
  opacity: 0.5;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: 710px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 5vw, 80px) 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 7vw;
  align-items: center;
}

.eyebrow,
.micro-label {
  margin: 0 0 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(58px, 7.5vw, 124px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.hero-text {
  max-width: 600px;
  margin: 38px 0 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: #55534c;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 17px 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary:hover {
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.now-playing {
  position: relative;
  align-self: end;
  margin-bottom: 12px;
}

.album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
  color: var(--acid);
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.track-info {
  padding: 23px 0 0;
}

.track-info > div:first-child {
  display: grid;
  grid-template-columns: 1fr auto;
}

.track-info .micro-label {
  grid-column: 1 / -1;
  margin-bottom: 9px;
  color: var(--muted);
}

.track-info h2,
.track-info p {
  margin: 0;
}

.track-info h2 {
  font-size: 18px;
}

.track-info div > p:last-child {
  font-size: 12px;
  color: var(--muted);
}

.equalizer {
  height: 34px;
  margin: 22px 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.equalizer i {
  width: 100%;
  height: 30%;
  background: var(--ink);
}

.equalizer i:nth-child(2),
.equalizer i:nth-child(8) { height: 80%; }
.equalizer i:nth-child(3),
.equalizer i:nth-child(10) { height: 45%; }
.equalizer i:nth-child(4),
.equalizer i:nth-child(7) { height: 100%; }
.equalizer i:nth-child(5),
.equalizer i:nth-child(11) { height: 65%; }
.equalizer i:nth-child(6) { height: 25%; }

.track-meta {
  display: flex;
  justify-content: space-between;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-section,
.services-section,
.about-section {
  padding: 120px clamp(24px, 5vw, 80px);
}

.section-heading {
  margin-bottom: 55px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.services-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.services-section {
  background: var(--ink);
  color: var(--paper);
}

.services-list {
  border-top: 1px solid #4f4d47;
}

.services-list article {
  padding: 34px 0;
  border-bottom: 1px solid #4f4d47;
  display: grid;
  grid-template-columns: 10% 30% 1fr;
  align-items: start;
}

.services-list span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  color: var(--acid);
}

.services-list h3,
.services-list p {
  margin: 0;
}

.services-list h3 {
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.services-list p {
  max-width: 540px;
  color: #aaa79d;
  font-size: 15px;
  line-height: 1.7;
}

.about-section .eyebrow {
  margin-bottom: 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10vw;
}

.about-grid h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-grid p {
  margin: 0 0 22px;
  color: #55534c;
  line-height: 1.8;
}

.contact-section {
  padding: 130px 24px;
  background: var(--blue);
  color: white;
  text-align: center;
}

.contact-section .eyebrow {
  margin-bottom: 30px;
}

.contact-section h2 {
  margin: 0 0 45px;
  font-size: clamp(58px, 8vw, 125px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.button-light {
  background: white;
  color: var(--blue);
}

footer {
  min-height: 110px;
  padding: 30px clamp(24px, 5vw, 80px);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

footer > p {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  color: #85827a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-links {
  justify-self: end;
  display: flex;
  gap: 24px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

  .now-playing {
    width: min(100%, 520px);
    margin-top: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 74px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 9px;
  }

  .brand {
    font-size: 11px;
  }

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

  .hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .hero-actions,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    gap: 25px;
  }

  .work-section,
  .services-section,
  .about-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .services-list article {
    grid-template-columns: 45px 1fr;
    gap: 18px 0;
  }

  .services-list p {
    grid-column: 2;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  footer .brand,
  .social-links {
    justify-self: center;
  }
}

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

  * {
    transition: none !important;
  }

  .equalizer i {
    animation: none !important;
  }
}

/* Premium dark studio theme */
:root {
  --ink: #f2eadc;
  --paper: #211712;
  --line: rgba(224, 200, 164, 0.17);
  --acid: #c5a675;
  --coral: #795044;
  --blue: #59483c;
  --muted: #aa9a87;
  --surface: #2a1e18;
  --surface-raised: #34251d;
  --accent: #c5a675;
  --accent-soft: #dcc39a;
}

body {
  background: #160f0c;
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
}

::selection {
  background: var(--accent);
  color: #20150f;
}

.site-shell {
  width: min(100%, 1680px);
  background:
    radial-gradient(circle at 78% 8%, rgba(197, 166, 117, 0.1), transparent 27%),
    linear-gradient(rgba(232, 212, 181, 0.016) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 100% 8px, auto;
}

.site-header {
  min-height: 96px;
  padding-inline: clamp(24px, 6vw, 104px);
  border-color: var(--line);
  background: rgba(33, 23, 18, 0.91);
}

.brand {
  color: #f4ecdf;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.brand-mark {
  color: var(--accent);
}

.brand-mark i {
  width: 2px;
}

nav {
  gap: 42px;
  color: #b9aa97;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

nav a,
.social-links a {
  transition: color 200ms ease, opacity 200ms ease;
}

nav a:hover,
.social-links a:hover {
  color: var(--accent-soft);
  opacity: 1;
}

.header-cta {
  padding: 13px 21px;
  border: 1px solid rgba(197, 166, 117, 0.68);
  border-radius: 2px;
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #24170f;
}

.hero {
  min-height: 780px;
  padding: clamp(100px, 11vw, 178px) clamp(24px, 6vw, 104px) clamp(80px, 8vw, 126px);
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  gap: clamp(60px, 8vw, 140px);
}

.eyebrow,
.micro-label {
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.hero h1 {
  max-width: 980px;
  color: #f3ebde;
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

em {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", "AppleMyungjo", serif;
  font-weight: 400;
}

.hero-text {
  max-width: 590px;
  margin-top: 42px;
  color: #b2a18e;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.015em;
}

.hero-actions {
  margin-top: 48px;
  gap: 38px;
}

.button {
  min-height: 52px;
  padding: 16px 24px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 200ms ease, background 200ms ease,
    border-color 200ms ease, transform 200ms ease;
}

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

.button-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #25180f;
}

.button-primary:hover {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
}

.text-link {
  padding-bottom: 7px;
  border-color: rgba(197, 166, 117, 0.58);
  color: #d8cbb8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.now-playing {
  margin-bottom: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(222, 192, 151, 0.025);
  box-shadow: 0 32px 80px rgba(12, 6, 3, 0.42);
}

.album-art {
  background: #1a110d;
  color: var(--accent-soft);
}

.album-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(238, 216, 185, 0.07);
  pointer-events: none;
}

.track-info {
  padding: 24px 6px 4px;
}

.track-info > div:first-child {
  grid-template-columns: 1fr;
  gap: 7px;
}

.track-info h2 {
  color: #eee5d8;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.track-info div > p:last-child,
.track-info .micro-label {
  color: var(--muted);
}

.equalizer {
  height: 28px;
  margin-top: 25px;
  gap: 4px;
}

.equalizer i {
  background: rgba(197, 166, 117, 0.72);
  transform-origin: center;
  animation: equalizer-breathe 6.2s ease-in-out infinite;
}

.equalizer i:nth-child(2) { animation-delay: -1.4s; }
.equalizer i:nth-child(3) { animation-delay: -3.1s; }
.equalizer i:nth-child(4) { animation-delay: -0.8s; }
.equalizer i:nth-child(5) { animation-delay: -4.6s; }
.equalizer i:nth-child(6) { animation-delay: -2.2s; }
.equalizer i:nth-child(7) { animation-delay: -5.3s; }
.equalizer i:nth-child(8) { animation-delay: -1.9s; }
.equalizer i:nth-child(9) { animation-delay: -3.8s; }
.equalizer i:nth-child(10) { animation-delay: -0.4s; }
.equalizer i:nth-child(11) { animation-delay: -4.1s; }
.equalizer i:nth-child(12) { animation-delay: -2.7s; }

@keyframes equalizer-breathe {
  0%,
  100% {
    transform: scaleY(0.86);
    opacity: 0.58;
  }

  50% {
    transform: scaleY(1.04);
    opacity: 0.82;
  }
}

.track-meta {
  color: #887766;
  display: block;
  text-align: right;
  text-transform: none;
}

.work-section,
.services-section,
.about-section {
  padding: clamp(100px, 10vw, 156px) clamp(24px, 6vw, 104px);
}

.work-section {
  padding-top: clamp(90px, 8vw, 124px);
  padding-bottom: clamp(90px, 8vw, 124px);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.services-section h2 {
  color: #f0e6d8;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.portfolio-block + .portfolio-block {
  margin-top: clamp(58px, 6vw, 88px);
}

.portfolio-block-heading {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: baseline;
}

.portfolio-block-heading h3,
.portfolio-block-heading p,
.release-title h4,
.release-title p,
.release-role,
.demo-card h4,
.demo-card p {
  margin: 0;
}

.portfolio-block-heading h3 {
  color: #eee4d6;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.portfolio-block-heading p {
  color: #9e8d7a;
  font-size: 14px;
  line-height: 1.75;
}

.release-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.release-card {
  padding: 12px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(18px, 2.2vw, 30px);
  background: rgba(221, 192, 151, 0.018);
}

.release-card > img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(13, 7, 4, 0.28);
}

.release-card-body {
  min-width: 0;
  padding: 8px 8px 5px 0;
  display: flex;
  flex-direction: column;
}

.release-title {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.release-title h4,
.demo-card h4 {
  color: #eee4d6;
  font-size: 18px;
  font-weight: 500;
}

.release-title p,
.demo-card p {
  margin-top: 6px;
  color: #a59481;
  font-size: 13px;
  line-height: 1.65;
}

.release-title time {
  flex: none;
  padding-top: 3px;
  color: #887765;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.release-role {
  margin-top: 22px;
  color: #8f7f6d;
  font-size: 11px;
  line-height: 1.75;
}

.portfolio-link {
  width: fit-content;
  margin-top: auto;
  padding: 9px 0 5px;
  border-bottom: 1px solid rgba(197, 166, 117, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #cdb58f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 200ms ease, border-color 200ms ease;
}

.portfolio-link:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.portfolio-link span {
  color: var(--accent);
}

.demo-card {
  min-height: 150px;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  background: rgba(221, 192, 151, 0.018);
}

.demo-card .portfolio-link {
  flex: none;
  margin-top: 0;
}

.services-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 100%, rgba(197, 166, 117, 0.09), transparent 30%),
    #1a110d;
}

.services-list {
  border-color: var(--line);
}

.services-list article {
  padding: clamp(34px, 3.4vw, 52px) 0;
  border-color: var(--line);
  grid-template-columns: 9% 31% 1fr;
  transition: background 200ms ease;
}

.services-list article:hover {
  background: linear-gradient(90deg, rgba(197, 166, 117, 0.05), transparent 65%);
}

.services-list span {
  color: var(--accent);
}

.services-list h3 {
  color: #ede2d3;
  font-size: clamp(23px, 2.3vw, 36px);
  font-weight: 500;
}

.services-list p {
  max-width: 600px;
  color: #a3927f;
  font-size: 14px;
  line-height: 1.9;
}

.studio-section {
  padding: clamp(100px, 10vw, 156px) clamp(24px, 6vw, 104px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 12%, rgba(197, 166, 117, 0.055), transparent 25%),
    #211712;
}

.studio-heading {
  margin-bottom: clamp(42px, 5vw, 64px);
}

.studio-heading .eyebrow {
  margin-bottom: 18px;
}

.studio-heading h2 {
  margin: 0;
  color: #f0e6d8;
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
}

.studio-image {
  position: relative;
  height: clamp(310px, 27vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 166, 117, 0.28);
  border-radius: 5px;
  background: #1a110d;
  box-shadow: 0 22px 55px rgba(13, 7, 4, 0.28);
}

.studio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 18, 11, 0.58), transparent 38%),
    rgba(66, 40, 24, 0.1);
  pointer-events: none;
}

.studio-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.02) brightness(0.86);
  transition: transform 500ms ease, filter 500ms ease;
}

.studio-image:first-child img {
  object-position: 52% center;
}

.studio-image:nth-child(2) img {
  object-position: 53% center;
}

.studio-image:nth-child(3) img {
  object-position: 50% center;
}

.studio-image:nth-child(4) img {
  object-position: 52% center;
}

.studio-image figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 17px;
  color: #d9c19b;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.studio-image:hover img {
  transform: scale(1.018);
  filter: sepia(0.08) contrast(1.03) brightness(0.94);
}

.about-section {
  background:
    linear-gradient(110deg, transparent 58%, rgba(197, 166, 117, 0.055)),
    var(--surface);
}

.about-section .eyebrow {
  margin-bottom: 52px;
}

.about-grid {
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(60px, 10vw, 170px);
}

.about-grid h2 {
  color: #eee4d6;
  font-size: clamp(38px, 4.7vw, 72px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.about-grid p {
  color: #ad9c88;
  font-size: 15px;
  line-height: 1.95;
}

.about-grid .producer-label {
  margin-bottom: 10px;
  color: #d8c7ac;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) 24px;
  background:
    radial-gradient(circle at 50% 110%, rgba(197, 166, 117, 0.17), transparent 44%),
    #1b120e;
  color: #eee4d6;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 58%;
  top: 21%;
  background: linear-gradient(transparent, rgba(197, 166, 117, 0.34), transparent);
}

.contact-section::before {
  left: 8%;
}

.contact-section::after {
  right: 8%;
}

.contact-section h2 {
  position: relative;
  margin-bottom: 54px;
  color: #f0e6d8;
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.button-light {
  position: relative;
  border: 1px solid rgba(197, 166, 117, 0.76);
  background: transparent;
  color: var(--accent-soft);
}

.contact-section .button-light {
  text-transform: none;
}

.contact-phone {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: #d8c7ac;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-phone a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 199, 172, 0.36);
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-phone a:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.button-light:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #25180f;
}

footer {
  min-height: 124px;
  padding-inline: clamp(24px, 6vw, 104px);
  border-top: 1px solid var(--line);
  background: #140d0a;
  color: #ddd1c0;
}

footer > p {
  color: #746455;
}

.social-links {
  color: #998875;
  font-size: 10px;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 74px;
  }

  .now-playing,
  .hero .hero-brand-card {
    width: min(100%, 560px);
    justify-self: start;
  }

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

  .services-list article {
    grid-template-columns: 10% 32% 1fr;
  }

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

  .studio-image {
    height: min(58vw, 480px);
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 76px;
  }

  .header-cta {
    padding: 10px 13px;
    letter-spacing: 0.04em;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 76px;
    gap: 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 64px);
    line-height: 1.08;
  }

  .hero-text {
    margin-top: 31px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 36px;
    gap: 25px;
  }

  .now-playing {
    padding: 10px;
  }

  .work-section,
  .services-section,
  .studio-section,
  .about-section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .work-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .portfolio-block-heading,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-block-heading {
    gap: 10px;
  }

  .release-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
  }

  .release-card-body {
    padding-top: 2px;
  }

  .release-title {
    flex-direction: column;
    gap: 4px;
  }

  .release-title time {
    padding-top: 0;
  }

  .release-role {
    margin-top: 14px;
  }

  .demo-card {
    min-height: 0;
    flex-direction: column;
    gap: 24px;
  }

  .demo-card .portfolio-link {
    margin-top: 0;
  }

  .services-list article {
    grid-template-columns: 42px 1fr;
    gap: 16px 0;
  }

  .services-list p {
    padding-right: 4px;
    font-size: 13px;
    line-height: 1.85;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .studio-image {
    height: min(118vw, 520px);
  }

  .about-section .eyebrow {
    margin-bottom: 38px;
  }

  .about-grid {
    gap: 39px;
  }

  .about-grid h2 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .contact-section {
    padding-block: 110px;
  }

  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .contact-section h2 {
    margin-bottom: 42px;
    font-size: clamp(43px, 12vw, 58px);
  }

  footer {
    padding-block: 34px;
  }
}

/* Final hero logo card treatment */
.hero {
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  gap: clamp(56px, 7vw, 112px);
}

.hero .hero-brand-card {
  width: min(100%, 560px);
  justify-self: end;
  padding: 18px;
  background: rgba(213, 184, 144, 0.055);
  border-color: rgba(217, 191, 151, 0.24);
  box-shadow: 0 38px 96px rgba(9, 5, 3, 0.42);
}

.hero .hero-brand-card .album-art {
  isolation: isolate;
  background: #c4b39a;
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(57, 39, 26, 0.12),
    0 20px 52px rgba(10, 6, 4, 0.3);
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #d8cdbb;
}

.hero .hero-brand-card .track-info {
  padding: 26px 8px 6px;
}

.hero .hero-brand-card .track-info > div:first-child {
  display: block;
}

.hero-support-line {
  margin: 0;
  color: #d8c7ac;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero .hero-brand-card .track-meta {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-align: left;
  color: #a8977f;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .now-playing,
  .hero .hero-brand-card {
    width: min(100%, 560px);
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .hero .hero-brand-card {
    padding: 12px;
  }
}

/* Final override: make hero logo supporting text clearly larger */
.hero .hero-brand-card .hero-support-line {
  font-size: clamp(20px, 1.75vw, 26px) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  color: #e3d2b5 !important;
  letter-spacing: -0.02em !important;
}

.hero .hero-brand-card .track-meta {
  margin-top: 16px !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  line-height: 1.5 !important;
  letter-spacing: 0.14em !important;
  color: #b7a58b !important;
}

@media (max-width: 600px) {
  .hero .hero-brand-card .hero-support-line {
    font-size: 18px !important;
  }

  .hero .hero-brand-card .track-meta {
    font-size: 11px !important;
  }
}
