@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable-dynamic-subset.css');

:root {
  --bg: #f8f1e7;
  --paper: #fffaf2;
  --warm: #f1e5d7;
  --warm-strong: #e4d2bd;
  --text: #2a201b;
  --muted: #76685e;
  --soft: #a9825c;
  --gold: #bd843c;
  --gold-deep: #9e6a2f;
  --brown: #33231b;
  --espresso: #0b0908;
  --stone: #efe4d7;
  --line: rgba(51, 35, 27, 0.13);
  --shadow: none;
  --radius: 10px;
  --media-radius: 22px;
  --max-width: 1180px;
  --header-height: 64px;
  --font-sans:
    'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  --font-display:
    'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: '';
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 242, 0.92),
      rgba(248, 241, 231, 0.86)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(51, 35, 27, 0.026) 0,
      rgba(51, 35, 27, 0.026) 1px,
      transparent 1px,
      transparent 118px
    );
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

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

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: linear-gradient(
    180deg,
    rgba(12, 9, 8, 0.34),
    rgba(12, 9, 8, 0.08)
  );
  border-bottom: 1px solid rgba(255, 244, 226, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-fixed {
  position: fixed;
  background: rgba(12, 9, 8, 0.82);
  border-bottom-color: rgba(255, 244, 226, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.header-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 226, 0.16);
  border-radius: 11px;
}

.header-mark img {
  width: 100%;
  height: 100%;
}

.desktop-nav,
.hero-actions,
.contact-points,
.site-footer {
  display: flex;
  align-items: center;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  gap: 24px;
  color: rgba(244, 229, 207, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a,
.hero-contact-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.hero-contact-links a:hover {
  color: var(--gold-deep);
}

.header-link {
  min-height: 38px;
  padding: 7px 18px;
  color: #160f0a;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.section-panel,
.content-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(610px, 78vh, 840px);
  overflow: hidden;
  padding: clamp(104px, 10vw, 136px) 0 64px;
  align-items: start;
  color: #f7ead8;
  background: #120f0d;
}

.hero.section-panel {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(12, 9, 8, 0.94) 0%,
      rgba(12, 9, 8, 0.72) 36%,
      rgba(12, 9, 8, 0.12) 72%,
      rgba(12, 9, 8, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 9, 8, 0.12) 0%,
      rgba(12, 9, 8, 0.08) 56%,
      rgba(12, 9, 8, 0.8) 100%
    );
}

.hero::after {
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #120f0d);
}

.hero-backdrop {
  position: absolute;
  top: var(--header-height);
  right: max(0px, calc((100vw - 1680px) / 2));
  bottom: 0;
  left: auto;
  z-index: 0;
  width: auto;
  max-width: min(72vw, 1426px);
  aspect-ratio: 1310 / 980;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 9%,
    #000 82%,
    transparent 100%
  );
}

.hero-backdrop img {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scale: 1;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.05);
  transform: translate3d(
      var(--hero-shift-x),
      calc(var(--parallax-y, 0px) + var(--hero-shift-y)),
      0
    )
    scale(var(--hero-scale));
  animation: heroReveal 900ms ease-out both;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.14;
  color: #f4e5cf;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 610px;
  padding-top: 0;
  animation: heroCopyReveal 640ms ease-out both;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(244, 229, 207, 0.74);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button.primary {
  color: #160f0a;
  background: var(--gold);
  box-shadow: none;
}

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

.button.secondary {
  color: #f4e5cf;
  background: transparent;
  border-color: rgba(255, 244, 226, 0.28);
}

.hero-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-contact-links > a,
.hero-contact-links > span,
.contact-points > a,
.contact-points > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 11px;
  color: rgba(244, 229, 207, 0.78);
  background: rgba(255, 244, 226, 0.07);
  border: 1px solid rgba(255, 244, 226, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-contact-links > * > svg,
.contact-points > * > svg {
  display: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-facts div {
  padding: 0 0 13px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-facts dd {
  color: var(--brown);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-trust-strip {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: min(var(--max-width), calc(100vw - 48px));
  align-self: end;
  margin-top: clamp(96px, 13vw, 154px);
  padding: 22px 24px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(51, 35, 27, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translate3d(
        var(--hero-shift-x),
        calc(var(--parallax-y, 0px) + var(--hero-shift-y)),
        0
      )
      scale(calc(var(--hero-scale) + 0.02));
  }

  to {
    opacity: 1;
    transform: translate3d(
        var(--hero-shift-x),
        calc(var(--parallax-y, 0px) + var(--hero-shift-y)),
        0
      )
      scale(var(--hero-scale));
  }
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust-strip .trust-card {
  min-height: auto;
  padding: 0 22px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(51, 35, 27, 0.13);
  border-radius: 0;
}

.hero-trust-strip .trust-card:last-child {
  border-right: 0;
}

.content-section {
  padding: 92px 0;
  scroll-margin-top: 90px;
}

.warm-band {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--stone);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.12;
}

.section-heading p,
.contact-copy p {
  margin: 13px 0 0;
  color: var(--muted);
}

.intro-grid,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 44px;
  align-items: start;
}

#songs {
  grid-template-columns: 1fr;
  gap: 34px;
}

#songs .section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

#songs .sticky-heading {
  position: static;
}

.intro-text {
  margin: 0;
  color: var(--brown);
  font-size: 21px;
  line-height: 1.85;
}

.trust-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card,
.portfolio-card,
.link-card,
.process-item,
.faq-item {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.trust-card {
  min-height: 132px;
  padding: 22px;
}

.trust-card strong,
.portfolio-card h3,
.link-card strong,
.process-item strong {
  display: block;
  color: var(--brown);
  font-size: 17px;
  line-height: 1.35;
}

.trust-card p,
.portfolio-card p,
.link-card p,
.process-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  position: relative;
  min-height: 210px;
  padding: 52px 22px 24px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.process-item::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 1px;
  content: '';
  background: var(--line);
}

.process-item:last-child::before {
  right: 22px;
}

.process-step {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold-deep);
  background: var(--bg);
  border: 1px solid rgba(189, 132, 60, 0.36);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.portfolio-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  color: #fffaf2;
  background: var(--espresso);
}

.portfolio-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.portfolio-section .section-heading {
  grid-column: 1;
  max-width: 760px;
  margin-bottom: 4px;
}

.portfolio-section .media-group,
.portfolio-section .photo-gallery,
.portfolio-section .section-note {
  grid-column: 1;
}

.media-group + .media-group {
  margin-top: 46px;
}

.media-group h3 {
  margin: 0 0 16px;
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.16;
}

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

.portfolio-section .section-heading h2,
.portfolio-section .section-heading p,
.portfolio-section .section-note {
  color: #fffaf2;
}

.portfolio-section .section-heading p,
.portfolio-section .section-note {
  color: rgba(255, 250, 242, 0.72);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-card {
  position: relative;
  height: 320px;
  margin: 0;
  overflow: hidden;
  background: #050403;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 18px;
}

.photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: '';
  background: linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.34));
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.is-collapsed,
.youtube-card.is-collapsed {
  display: none;
}

.gallery-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 46px;
  margin-top: 18px;
  margin-left: auto;
  padding: 10px 22px;
  color: #fff8ed;
  background: transparent;
  border: 1px solid rgba(255, 248, 237, 0.34);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.gallery-toggle[hidden] {
  display: none;
}

.gallery-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 248, 237, 0.58);
}

.portfolio-card,
.youtube-card {
  overflow: hidden;
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.14);
}

.portfolio-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #050403;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.portfolio-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.035);
}

.youtube-card {
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
}

.youtube-frame {
  overflow: hidden;
  background: #050403;
  aspect-ratio: 16 / 9;
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.empty-thumb {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 28px;
}

.portfolio-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-grid;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  place-items: center;
  padding-left: 4px;
  color: #fff;
  background: rgba(32, 24, 21, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 27px;
  backdrop-filter: blur(6px);
}

.portfolio-body,
.review-card,
.link-card {
  padding: 22px;
}

.portfolio-card h3,
.portfolio-card p {
  color: #fffaf2;
}

.portfolio-meta {
  margin-top: 4px;
  color: #d8b982;
  font-size: 12px;
  font-weight: 600;
}

.portfolio-link {
  display: inline-flex;
  margin-top: 13px;
  color: #e8c98e;
  font-size: 12px;
  font-weight: 700;
}

.section-note {
  margin: 22px 0 0;
  color: var(--brown);
  font-weight: 600;
  text-align: right;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.song-panel {
  position: relative;
  overflow: hidden;
  padding: 4px 0 0;
  background: transparent;
  border-top: 1px solid rgba(51, 35, 27, 0.22);
  border-radius: 0;
}

.song-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.song-item {
  display: grid;
  grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 13px 0;
  color: var(--brown);
  border-bottom: 1px solid rgba(51, 35, 27, 0.12);
}

.song-artist {
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.song-main {
  min-width: 0;
}

.song-main strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.review-carousel {
  position: relative;
}

#reviews {
  color: #fff8ed;
  background: var(--espresso);
}

#reviews .section-heading h2,
#reviews .section-heading p {
  color: #fff8ed;
}

.review-proof-list {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 34px;
}

.review-proof {
  width: min(680px, 100%);
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(51, 35, 27, 0.12);
  border-radius: 18px;
}

.review-proof img {
  width: 100%;
  height: auto;
}

.review-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.review-carousel-head > strong {
  color: #fff8ed;
  font-size: 18px;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff8ed;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.carousel-button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 0.2);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(330px, 0.42fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 13px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 300px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 13px;
  scroll-snap-align: start;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card-head strong {
  color: var(--brown);
  font-size: 16px;
  font-weight: 700;
}

.review-rating {
  color: #ffc83d;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.review-card p {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.contact-section {
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.contact-copy {
  padding: 34px;
  background: #f7efe4;
  border: 1px solid rgba(255, 244, 226, 0.2);
  border-radius: var(--media-radius);
  color: var(--brown);
}

.contact-copy h2 {
  color: var(--brown);
}

.contact-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.contact-points > span,
.contact-points > a {
  color: var(--brown);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(46, 33, 25, 0.14);
}

.contact-points a:hover {
  color: #160f0a;
  background: var(--gold);
  border-color: var(--gold);
}

.inquiry-form {
  padding: 28px;
  background: #f7efe4;
  border: 1px solid rgba(255, 244, 226, 0.2);
  border-radius: var(--media-radius);
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(46, 33, 25, 0.1);
}

.form-head h3 {
  margin: 0;
  color: var(--brown);
  font-size: 18px;
  font-weight: 700;
}

.form-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

label {
  display: grid;
  gap: 7px;
  color: #2e2119;
  font-size: 12px;
  font-weight: 600;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #241914;
  background: #fffdf8;
  border: 1px solid rgba(46, 33, 25, 0.18);
  border-radius: 6px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(178, 138, 72, 0.9);
  box-shadow: 0 0 0 4px rgba(178, 138, 72, 0.13);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-message {
  min-height: 28px;
  margin: 13px 0 0;
  color: var(--gold-deep);
  font-weight: 600;
}

.form-message.error {
  color: #9e3d2f;
}

.button.danger,
.button.secondary.danger {
  color: #9e3d2f;
  border-color: rgba(158, 61, 47, 0.28);
}

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

.link-card {
  background: transparent;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 138, 72, 0.45);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: #efe4d7;
}

.faq-item {
  padding: 0 22px;
  background: transparent;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--brown);
  font-size: 18px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 104px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.fade-target {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.fade-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .desktop-nav {
    display: none;
  }

  .hero,
  .intro-grid,
  .split-section,
  .contact-section,
  .portfolio-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: min(860px, 100vh);
    padding-top: 104px;
    align-items: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero.section-panel {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-backdrop img {
    --hero-shift-x: 3vw;
    --hero-shift-y: 18px;
    --hero-scale: 1.12;

    object-position: 84% 55%;
  }

  .hero-trust-strip,
  .portfolio-section .section-heading,
  .portfolio-section .media-group,
  .portfolio-section .photo-gallery,
  .portfolio-section .section-note {
    grid-column: 1;
  }

  .hero-trust-strip {
    margin-top: 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-trust-strip .trust-card:nth-child(2n) {
    border-right: 0;
  }

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

  .photo-card:nth-child(n) {
    grid-column: auto;
    height: 300px;
  }

  .photo-card.is-collapsed,
  .youtube-card.is-collapsed {
    display: none;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 58px;
  }

  body {
    padding-bottom: 0;
  }

  .site-header,
  .site-header.is-fixed {
    position: sticky;
    top: 0;
    min-height: var(--header-height);
    padding: 0 18px;
    background: rgba(12, 9, 8, 0.94);
    border-bottom-color: rgba(255, 244, 226, 0.16);
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  .site-header {
    justify-content: space-between;
  }

  .header-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .header-link {
    min-height: 34px;
    padding: 7px 16px;
    font-size: 12px;
  }

  .section-panel,
  .content-section,
  .site-footer {
    width: min(100% - 32px, var(--max-width));
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0 24px 42px;
    align-items: stretch;
  }

  .hero.section-panel {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-backdrop {
    position: relative;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    height: clamp(300px, 78vw, 420px);
    margin: 0 -24px;
    border-bottom: 1px solid rgba(255, 244, 226, 0.1);
    mask-image: none;
  }

  .hero-backdrop img {
    --hero-shift-x: 0;
    --hero-shift-y: 0px;
    --hero-scale: 1;

    object-position: 63% 48%;
    transform: none;
    animation: none;
  }

  .hero::before {
    inset: 0 0 auto;
    height: clamp(300px, 78vw, 420px);
    background:
      linear-gradient(
        180deg,
        rgba(12, 9, 8, 0.06) 0%,
        rgba(12, 9, 8, 0.1) 56%,
        rgba(12, 9, 8, 0.92) 100%
      ),
      linear-gradient(90deg, rgba(12, 9, 8, 0.18), rgba(12, 9, 8, 0.02));
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: none;
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(22px, 5.9vw, 28px);
    line-height: 1.14;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-contact-links {
    gap: 6px;
    margin-top: 18px;
  }

  .hero-contact-links > a,
  .hero-contact-links > span {
    min-height: 34px;
    padding: 7px 10px;
  }

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

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

  .hero-trust-strip {
    width: 100%;
    margin-top: 34px;
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .hero-trust-strip .trust-card {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-card strong,
  .process-item strong {
    font-size: 15px;
  }

  .trust-card p,
  .process-item p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-trust-strip .trust-card:last-child {
    border-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .content-section {
    padding: 68px 0;
  }

  .warm-band {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .portfolio-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .portfolio-section .section-heading h2 {
    max-width: none;
    font-size: 26px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 26px;
  }

  .section-heading p,
  .portfolio-section .section-heading p {
    font-size: 13px;
    line-height: 1.65;
  }

  .trust-grid,
  .photo-gallery,
  .youtube-grid,
  .link-grid,
  .song-list,
  .form-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list {
    gap: 0;
  }

  .process-item {
    min-height: auto;
    padding: 0 0 26px 66px;
  }

  .process-item::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 22px;
    width: 1px;
    height: auto;
  }

  .process-item:last-child::before {
    display: none;
  }

  .process-step {
    top: 0;
    left: 0;
  }

  .portfolio-section .photo-gallery,
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .photo-card:nth-child(n) {
    grid-column: auto;
    height: 330px;
  }

  .photo-card.is-collapsed,
  .youtube-card.is-collapsed {
    display: none;
  }

  .review-carousel-head {
    align-items: flex-start;
  }

  .review-track {
    grid-auto-columns: minmax(286px, 88vw);
  }

  .review-card {
    min-height: 0;
    padding: 17px;
  }

  .song-panel {
    padding-top: 2px;
  }

  .song-item {
    grid-template-columns: minmax(72px, 0.32fr) minmax(0, 1fr);
    gap: 4px 12px;
    min-height: auto;
    padding: 13px 0;
  }

  .song-artist {
    font-size: 12px;
  }

  .song-main strong {
    font-size: 15px;
  }

  .song-main {
    grid-column: auto;
  }

  .intro-text {
    font-size: 16px;
  }

  .contact-copy,
  .inquiry-form {
    padding: 24px;
  }

  .contact-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .fade-target {
    opacity: 1;
    transform: none;
  }
}
