:root {
  --jss-bg: #0b0b0a;
  --jss-surface: #171512;
  --jss-surface-soft: #211e1a;
  --jss-ivory: #f3ede2;
  --jss-paper: #faf7f0;
  --jss-ink: #151311;
  --jss-text: #f7f4ed;
  --jss-muted: #b9b1a4;
  --jss-muted-dark: #6f675e;
  --jss-gold: #d6b56b;
  --jss-gold-dark: #8d733f;
  --jss-wine: #6e2733;
  --jss-line: rgba(247, 244, 237, 0.18);
  --jss-line-dark: rgba(21, 19, 17, 0.18);
  --jss-header: 72px;
  --jss-container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--jss-bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--jss-bg);
  color: var(--jss-text);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Noto Serif KR", serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.7;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--jss-ivory);
  color: var(--jss-ink);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 48px), var(--jss-container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--jss-header);
  border-bottom: 1px solid var(--jss-line);
  background: rgba(11, 11, 10, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--jss-gold);
  border-radius: 50%;
  color: var(--jss-gold);
  font-family: "Noto Serif KR", serif;
  font-size: 15px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--jss-muted);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--jss-muted);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--jss-text);
  background: rgba(247, 244, 237, 0.08);
}

.nav-contact {
  border: 1px solid var(--jss-gold);
  color: var(--jss-gold) !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--jss-line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--jss-gold);
  color: var(--jss-gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--jss-gold);
  color: var(--jss-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--jss-ivory);
  transform: translateY(-2px);
}

.button:focus-visible,
.icon-button:focus-visible,
.filter-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
label:has(input:focus-visible) {
  outline: 3px solid var(--jss-gold);
  outline-offset: 3px;
}

.button--outline {
  border-color: rgba(247, 244, 237, 0.55);
  background: transparent;
  color: var(--jss-text);
}

.button--outline:hover {
  border-color: var(--jss-gold);
  background: rgba(214, 181, 107, 0.08);
  color: var(--jss-gold);
}

.button--dark {
  background: var(--jss-ink);
  color: var(--jss-text);
}

.button--dark:hover {
  background: var(--jss-wine);
  color: var(--jss-text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--jss-gold);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--jss-text);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--jss-gold);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--dark {
  color: var(--jss-gold-dark);
}

.eyebrow--center {
  justify-content: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 43px;
}

.section-heading p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--jss-muted);
  font-size: 16px;
}

.section-heading--dark h2 {
  color: var(--jss-ink);
}

.section-heading--dark p {
  color: var(--jss-muted-dark);
}

.section-heading--compact {
  margin-bottom: 34px;
}

.section-heading--compact h2 {
  font-size: 35px;
}

.home-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  background-color: var(--jss-bg);
  background-position: center;
  background-size: cover;
}

.home-hero {
  height: min(720px, calc(100svh - 112px));
  min-height: 560px;
  background-image: url("assets/hero-cellist.jpg");
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 4, 0.66);
  content: "";
}

.home-hero::after {
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: rgba(247, 244, 237, 0.62);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  content: "VISUAL PLACEHOLDER · CLIENT PHOTO RECOMMENDED";
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-block: 70px;
}

.hero-content {
  max-width: 830px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 26px;
  padding: 0 12px;
  border: 1px solid rgba(214, 181, 107, 0.65);
  border-radius: 3px;
  color: var(--jss-gold);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.hero-content h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: 60px;
}

.hero-content p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(247, 244, 237, 0.78);
  font-size: 19px;
  line-height: 1.8;
}

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

.proof-strip {
  background: var(--jss-ivory);
  color: var(--jss-ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 126px;
  padding: 28px 34px;
  border-right: 1px solid var(--jss-line-dark);
}

.proof-item:first-child {
  border-left: 1px solid var(--jss-line-dark);
}

.proof-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--jss-gold-dark);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.proof-item strong {
  display: block;
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
  font-weight: 600;
}

.section {
  padding-block: 112px;
}

.section--dark {
  background: var(--jss-bg);
}

.section--surface {
  background: var(--jss-surface);
}

.section--light {
  background: var(--jss-ivory);
  color: var(--jss-ink);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 24px;
}

.work-card {
  min-width: 0;
}

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: var(--jss-surface);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, opacity 250ms ease;
}

.work-card:hover .work-card__media img,
.work-card:focus-within .work-card__media img {
  transform: scale(1.035);
  opacity: 0.82;
}

.icon-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 237, 0.5);
  border-radius: 50%;
  background: rgba(11, 11, 10, 0.82);
  color: var(--jss-text);
}

.work-card:hover .icon-button {
  border-color: var(--jss-gold);
  background: var(--jss-gold);
  color: var(--jss-ink);
}

.work-card__body {
  padding-top: 18px;
  border-top: 1px solid var(--jss-line);
}

.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--jss-muted);
  font-size: 12px;
}

.work-card__type {
  color: var(--jss-gold);
  font-weight: 800;
}

.work-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.work-card h3 a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.work-card h3 a:hover,
.work-card h3 a:focus-visible {
  color: var(--jss-gold);
}

.work-card p {
  margin-bottom: 0;
  color: var(--jss-muted);
  font-size: 14px;
}

.section-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--jss-line-dark);
  border-bottom: 1px solid var(--jss-line-dark);
}

.service-item {
  min-height: 300px;
  padding: 38px 32px;
  border-right: 1px solid var(--jss-line-dark);
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border: 1px solid var(--jss-gold-dark);
  border-radius: 50%;
  color: var(--jss-gold-dark);
}

.service-item h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.service-item p {
  margin-bottom: 0;
  color: var(--jss-muted-dark);
  font-size: 15px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 640px;
}

.media-split__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.media-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-split__image::after {
  position: absolute;
  right: 20px;
  bottom: 16px;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(11, 11, 10, 0.76);
  color: rgba(247, 244, 237, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  content: "CLIENT PHOTO RECOMMENDED";
}

.media-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(48px, calc((100vw - var(--jss-container)) / 2));
  padding-left: 72px;
  background: var(--jss-surface);
}

.media-split__content h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 43px;
}

.media-split__content p {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--jss-muted);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: principle;
  border-top: 1px solid var(--jss-line);
}

.principle-item {
  position: relative;
  min-height: 255px;
  padding: 32px 30px 34px 0;
  counter-increment: principle;
  border-bottom: 1px solid var(--jss-line);
}

.principle-item:not(:nth-child(3n)) {
  margin-right: 30px;
}

.principle-item::before {
  display: block;
  margin-bottom: 38px;
  color: var(--jss-gold);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  content: "0" counter(principle);
}

.principle-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.principle-item p {
  margin-bottom: 0;
  color: var(--jss-muted);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--jss-line-dark);
}

.process-item {
  min-height: 260px;
  padding: 28px 22px 30px 0;
  border-bottom: 1px solid var(--jss-line-dark);
}

.process-item:not(:last-child) {
  margin-right: 22px;
}

.process-item span {
  display: block;
  margin-bottom: 54px;
  color: var(--jss-gold-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.process-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--jss-muted-dark);
  font-size: 13px;
}

.cta-band {
  background: var(--jss-wine);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 270px;
  padding-block: 54px;
}

.cta-band h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: 38px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(247, 244, 237, 0.72);
}

.site-footer {
  padding-block: 64px 30px;
  border-top: 1px solid var(--jss-line);
  background: var(--jss-bg);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--jss-muted);
  font-size: 14px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 8px 36px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--jss-muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--jss-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--jss-line);
  color: rgba(247, 244, 237, 0.48);
  font-size: 11px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid var(--jss-gold);
  border-radius: 24px;
  background: var(--jss-bg);
  color: var(--jss-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 800;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: var(--jss-gold);
  color: var(--jss-ink);
}

.page-hero {
  height: min(520px, calc(100svh - 128px));
  min-height: 430px;
}

.page-hero--works {
  background-image: url("assets/hero-cellist.jpg");
  background-position: center 44%;
}

.page-hero--service,
.page-hero--contact {
  background-image: url("assets/stock-orchestra.jpg");
}

.page-hero--about {
  background-image: url("assets/hero-cellist.jpg");
  background-position: center 42%;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-block: 64px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 52px;
}

.page-hero p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(247, 244, 237, 0.78);
  font-size: 18px;
}

.filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--jss-line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--jss-line);
  border-radius: 4px;
  background: transparent;
  color: var(--jss-muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--jss-gold);
  background: var(--jss-gold);
  color: var(--jss-ink);
}

.filter-status {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--jss-muted);
  font-size: 13px;
}

.service-detail-list {
  border-top: 1px solid var(--jss-line);
}

.service-detail {
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  padding-block: 40px;
  border-bottom: 1px solid var(--jss-line);
}

.service-detail__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--jss-gold);
  border-radius: 50%;
  color: var(--jss-gold);
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.service-detail__copy p {
  margin-bottom: 16px;
  color: var(--jss-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--jss-line);
  border-radius: 3px;
  color: var(--jss-muted);
  font-size: 12px;
}

.factor-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--jss-line-dark);
}

.factor-table th,
.factor-table td {
  padding: 22px 18px;
  border-bottom: 1px solid var(--jss-line-dark);
  text-align: left;
  vertical-align: top;
}

.factor-table th {
  width: 28%;
  color: var(--jss-gold-dark);
  font-size: 13px;
}

.factor-table td {
  color: var(--jss-muted-dark);
  font-size: 14px;
}

.statement {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.statement blockquote {
  margin-bottom: 26px;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.45;
}

.statement p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--jss-muted-dark);
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--jss-line);
}

.channel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 126px;
  padding: 26px 24px;
  border-bottom: 1px solid var(--jss-line);
}

.channel-link:not(:last-child) {
  margin-right: 22px;
}

.channel-link span {
  color: var(--jss-muted);
  font-size: 12px;
}

.channel-link strong {
  display: block;
  margin-top: 4px;
  font-family: "Noto Serif KR", serif;
  font-size: 19px;
}

.channel-link:hover,
.channel-link:focus-visible {
  color: var(--jss-gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 112px;
}

.contact-intro h2 {
  margin-bottom: 22px;
  font-size: 38px;
}

.contact-intro > p {
  margin-bottom: 32px;
  color: var(--jss-muted-dark);
}

.contact-checklist {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--jss-line-dark);
  list-style: none;
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border-bottom: 1px solid var(--jss-line-dark);
  color: var(--jss-muted-dark);
  font-size: 14px;
}

.contact-checklist svg {
  color: var(--jss-gold-dark);
}

.contact-form {
  padding-top: 2px;
}

.form-section {
  margin: 0 0 36px;
  padding: 0;
  border: 0;
}

.form-section legend {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--jss-line-dark);
  color: var(--jss-ink);
  font-family: "Noto Serif KR", serif;
  font-size: 21px;
  font-weight: 600;
}

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

.form-field {
  min-width: 0;
}

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

.form-field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--jss-ink);
  font-size: 13px;
  font-weight: 800;
}

.required {
  color: var(--jss-wine);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 19, 17, 0.28);
  border-radius: 4px;
  background: var(--jss-paper);
  color: var(--jss-ink);
  font-size: 15px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(21, 19, 17, 0.24);
  border-radius: 4px;
  color: var(--jss-ink);
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--jss-wine);
  background: rgba(110, 39, 51, 0.08);
}

.choice input {
  width: 18px;
  height: 18px;
  margin: 0 9px 0 0;
  accent-color: var(--jss-wine);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 22px;
  padding-block: 4px;
  color: var(--jss-muted-dark);
  font-size: 13px;
  cursor: pointer;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--jss-wine);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--jss-wine);
  font-size: 13px;
  font-weight: 700;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible {
  animation: jss-reveal 500ms ease both;
}

@keyframes jss-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (max-width: 1024px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .service-item {
    display: grid;
    grid-template-columns: 72px minmax(180px, 0.5fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--jss-line-dark);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .service-icon {
    margin-bottom: 0;
  }

  .service-item h3,
  .service-item p {
    margin-bottom: 0;
  }

  .media-split {
    grid-template-columns: 1fr;
  }

  .media-split__image {
    min-height: 480px;
  }

  .media-split__content {
    padding: 70px 48px;
  }

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

  .principle-item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .principle-item:nth-child(odd) {
    margin-right: 30px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --jss-header: 64px;
  }

  .container {
    width: min(calc(100% - 36px), var(--jss-container));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--jss-header) 0 0;
    z-index: 90;
    display: none;
    align-content: start;
    padding: 22px 18px 40px;
    background: var(--jss-bg);
  }

  .menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 16px;
    border-bottom: 1px solid var(--jss-line);
    font-size: 16px;
  }

  .nav-contact {
    margin-top: 14px;
    justify-content: center !important;
    border-bottom: 1px solid var(--jss-gold) !important;
  }

  .home-hero {
    height: calc(100svh - 104px);
    min-height: 560px;
    background-position: 54% center;
  }

  .home-hero::after {
    right: 18px;
    bottom: 14px;
    max-width: 210px;
    text-align: right;
  }

  .hero-inner {
    justify-content: flex-end;
    padding-block: 52px;
  }

  .hero-content h1 {
    max-width: 630px;
    font-size: 48px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .proof-item,
  .proof-item:first-child {
    min-height: 86px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--jss-line-dark);
    border-left: 0;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .service-detail {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .service-detail__copy {
    grid-column: 2;
  }

  .channel-list {
    grid-template-columns: 1fr;
  }

  .channel-link:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--jss-container));
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 9px;
  }

  .home-hero {
    height: calc(100svh - 96px);
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .media-split__content h2 {
    font-size: 32px;
  }

  .section-heading--compact h2 {
    font-size: 29px;
  }

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

  .service-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }

  .service-item p {
    grid-column: 1 / -1;
  }

  .media-split__image {
    min-height: 380px;
  }

  .media-split__content {
    padding: 64px 24px;
  }

  .principle-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .principle-item,
  .principle-item:nth-child(odd),
  .process-item,
  .process-item:not(:last-child) {
    min-height: auto;
    margin-right: 0;
    padding: 28px 0;
  }

  .principle-item::before,
  .process-item span {
    margin-bottom: 22px;
  }

  .cta-band h2 {
    font-size: 31px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .page-hero {
    height: calc(100svh - 112px);
    min-height: 470px;
  }

  .page-hero__inner {
    padding-block: 48px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .filter-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .service-detail {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding-block: 32px;
  }

  .service-detail h2 {
    font-size: 24px;
  }

  .factor-table,
  .factor-table tbody,
  .factor-table tr,
  .factor-table th,
  .factor-table td {
    display: block;
    width: 100%;
  }

  .factor-table tr {
    padding-block: 18px;
    border-bottom: 1px solid var(--jss-line-dark);
  }

  .factor-table th,
  .factor-table td {
    padding: 4px 0;
    border: 0;
  }

  .statement blockquote {
    font-size: 31px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
