:root {
  --color-white: #ffffff;
  --color-ivory: #fbfaf7;
  --color-cream: #f4f0e8;
  --color-silver: #d8d4cc;
  --color-soft-gray: #eeece7;
  --color-gray: #746f66;
  --color-charcoal: #1d1c1a;
  --color-black: #0f0f0e;
  --color-champagne: #c8b89b;
  --color-error: #9f2b2b;
  --shadow-soft: 0 24px 80px rgba(31, 29, 24, 0.08);
  --shadow-card: 0 18px 50px rgba(31, 29, 24, 0.07);
  --border: 1px solid rgba(31, 29, 24, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 82px;
  --font-body: "Noto Sans KR", sans-serif;
  --font-display: "Cormorant Garamond", "Noto Sans KR", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-charcoal);
  background:
    radial-gradient(circle at 18% 4%, rgba(200, 184, 155, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--color-white) 0%, var(--color-ivory) 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

video,
iframe {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(200, 184, 155, 0.72);
  outline-offset: 4px;
}

::selection {
  color: var(--color-black);
  background: rgba(200, 184, 155, 0.28);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 200ms ease;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition:
    height 260ms var(--ease-out),
    background-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    backdrop-filter 260ms var(--ease-out);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(31, 29, 24, 0.08);
  box-shadow: 0 14px 40px rgba(31, 29, 24, 0.05);
  backdrop-filter: blur(22px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

.logo span,
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.logo strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(29, 28, 26, 0.78);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.72);
  border: var(--border);
  border-radius: 999px;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section {
  padding: clamp(88px, 12vw, 170px) 0;
}

.section-kicker,
.card-meta {
  margin: 0 0 18px;
  color: var(--color-gray);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.4vw, 5.9rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.section-heading p:not(.section-kicker),
.intro-copy,
.contact-copy > p {
  color: rgba(29, 28, 26, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 80px) 0 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
}

.hero-bg::before {
  top: 12%;
  right: 8%;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(200, 184, 155, 0.2), rgba(255, 255, 255, 0));
}

.hero-bg::after {
  bottom: 10%;
  left: 5%;
  width: 18vw;
  height: 18vw;
  background: radial-gradient(circle, rgba(216, 212, 204, 0.36), rgba(255, 255, 255, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10.2vw, 9.5rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(29, 28, 26, 0.74);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-black);
  box-shadow: 0 18px 36px rgba(15, 15, 14, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 24px 44px rgba(15, 15, 14, 0.22);
}

.btn-secondary {
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.62);
  border: var(--border);
}

.hero-media {
  min-width: 0;
}

.video-shell,
.film-frame {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(31, 29, 24, 0.11);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 240, 232, 0.7)),
    var(--color-cream);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.video-shell::before,
.film-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  pointer-events: none;
}

.brand-video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-video {
  z-index: 1;
  opacity: 0.46;
  filter: saturate(0.6) contrast(0.95) brightness(1.08);
}

.video-fallback {
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(29, 28, 26, 0.38);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), transparent 26rem),
    radial-gradient(circle at 72% 58%, rgba(200, 184, 155, 0.22), transparent 23rem),
    linear-gradient(135deg, var(--color-ivory), var(--color-cream));
}

.has-video-error .brand-video {
  opacity: 0;
}

.has-video-error .video-fallback {
  z-index: 1;
}

.fallback-mark {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.media-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(29, 28, 26, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(42px, 8vw, 120px);
}

.intro-copy {
  max-width: 620px;
  align-self: end;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 20px;
}

.diagnostic-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 184, 155, 0.16), transparent 25rem),
    linear-gradient(180deg, var(--color-ivory), var(--color-white));
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(460px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.diagnostic-copy {
  position: sticky;
  top: 108px;
}

.diagnostic-copy h2 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.4vw, 5.9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.diagnostic-copy > p {
  color: rgba(29, 28, 26, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.diagnostic-benefits {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.diagnostic-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(29, 28, 26, 0.76);
  font-weight: 600;
}

.diagnostic-benefits li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--color-champagne);
  box-shadow: 0 0 0 6px rgba(200, 184, 155, 0.14);
}

.diagnostic-note {
  margin: 0;
  color: rgba(29, 28, 26, 0.56);
  font-size: 0.88rem;
}

.diagnostic-panel {
  overflow: hidden;
  padding: clamp(18px, 3vw, 32px);
  border: var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 240, 232, 0.66)),
    var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.diagnostic-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.5fr;
  gap: 8px;
  margin-bottom: 6px;
}

.diagnostic-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(31, 29, 24, 0.14);
}

.diagnostic-progress span:first-child {
  background: var(--color-black);
}

.diagnostic-progress span:nth-child(2) {
  background: rgba(200, 184, 155, 0.72);
}

.diagnostic-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.diagnostic-wide {
  grid-column: 1 / -1;
}

.diagnostic-field legend {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: 0.92rem;
  font-weight: 700;
}

.diagnostic-field fieldset,
.diagnostic-field {
  min-width: 0;
}

fieldset.diagnostic-field {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 13px;
  color: rgba(29, 28, 26, 0.74);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 29, 24, 0.1);
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.diagnostic-result {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(31, 29, 24, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 16%, rgba(200, 184, 155, 0.18), transparent 16rem),
    var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.diagnostic-result[hidden] {
  display: none;
}

.result-label {
  margin: 0 0 14px;
  color: var(--color-champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diagnostic-result h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.diagnostic-result p:not(.result-label) {
  color: rgba(29, 28, 26, 0.68);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.result-grid div {
  padding: 16px;
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 18px;
  background: var(--color-ivory);
}

.result-grid span {
  display: block;
  color: rgba(29, 28, 26, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--color-black);
  line-height: 1.35;
}

.diagnostic-result ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: rgba(29, 28, 26, 0.7);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.film-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0), rgba(244, 240, 232, 0.72) 52%, rgba(251, 250, 247, 0));
}

.film-frame {
  min-height: clamp(360px, 56vw, 680px);
  margin-top: 52px;
  border-radius: clamp(30px, 4vw, 56px);
}

.film-frame .brand-video {
  opacity: 0.58;
}

.video-control {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  min-width: 126px;
  padding: 12px 16px;
  color: var(--color-white);
  background: rgba(15, 15, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(15, 15, 14, 0.18);
  backdrop-filter: blur(16px);
}

.work-section,
.process-section,
.contact-section {
  background: var(--color-white);
}

.comments-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(200, 184, 155, 0.14), transparent 25rem),
    var(--color-ivory);
}

.comments-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(24px, 5vw, 56px);
  border: var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 240, 232, 0.72)),
    var(--color-white);
  box-shadow: var(--shadow-card);
}

.comments-consent {
  padding: 24px;
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.comments-consent p,
.comments-status {
  margin: 0;
  color: rgba(29, 28, 26, 0.66);
  font-size: 0.92rem;
}

.comments-consent .btn {
  margin-top: 20px;
}

.comments-status {
  min-height: 1.4em;
  margin-top: 14px;
  font-weight: 700;
}

.comments-status.is-error {
  color: var(--color-error);
}

.disqus-thread {
  grid-column: 1 / -1;
  min-height: 0;
}

.disqus-thread.is-active {
  min-height: 360px;
  margin-top: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 24px;
  background: var(--color-white);
}

.work-grid,
.service-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.work-card,
.service-card,
.process-card,
.insight-card,
.embed-card,
.contact-form,
.privacy-brief {
  border: var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.work-card,
.service-card,
.insight-card {
  border-radius: var(--radius-lg);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 260ms var(--ease-out);
}

.work-card {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 24px;
}

.work-card:hover,
.service-card:hover,
.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 184, 155, 0.38);
  box-shadow: 0 26px 70px rgba(31, 29, 24, 0.11);
}

.work-visual {
  position: relative;
  overflow: hidden;
  height: 260px;
  margin-bottom: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 240, 232, 0.8)),
    var(--color-cream);
}

.work-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 18px;
}

.shape {
  position: absolute;
  display: block;
  transition:
    transform 520ms var(--ease-out),
    opacity 520ms var(--ease-out);
}

.work-card:hover .shape-circle,
.work-card:hover .shape-arch,
.work-card:hover .shape-orbit {
  transform: translate3d(12px, -12px, 0) scale(1.04);
}

.work-card:hover .shape-line,
.work-card:hover .shape-panel,
.work-card:hover .shape-page {
  transform: translate3d(-10px, 10px, 0) rotate(-2deg);
}

.shape-circle {
  width: 134px;
  height: 134px;
  top: 36px;
  right: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 29, 24, 0.08);
}

.shape-line {
  width: 210px;
  height: 1px;
  left: 34px;
  bottom: 62px;
  background: rgba(31, 29, 24, 0.28);
  transform: rotate(-18deg);
}

.shape-block {
  width: 92px;
  height: 128px;
  left: 42px;
  top: 44px;
  background: rgba(200, 184, 155, 0.23);
  border-radius: 18px;
}

.shape-grid {
  inset: 38px;
  background-image:
    linear-gradient(rgba(31, 29, 24, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 29, 24, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.shape-panel {
  width: 56%;
  height: 42%;
  right: 34px;
  bottom: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 29, 24, 0.09);
  border-radius: 20px;
}

.shape-dot {
  width: 16px;
  height: 16px;
  left: 44px;
  top: 42px;
  border-radius: 50%;
  background: var(--color-champagne);
}

.shape-arch {
  width: 160px;
  height: 190px;
  right: 48px;
  bottom: 34px;
  border: 1px solid rgba(31, 29, 24, 0.12);
  border-radius: 90px 90px 18px 18px;
  background: rgba(255, 255, 255, 0.66);
}

.shape-page {
  width: 142px;
  height: 188px;
  left: 48px;
  top: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 10px;
  box-shadow: 18px 18px 0 rgba(200, 184, 155, 0.16);
}

.shape-serif {
  right: 48px;
  top: 52px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
}

.shape-serif::before {
  content: "L";
}

.shape-orbit {
  width: 210px;
  height: 210px;
  left: calc(50% - 105px);
  top: calc(50% - 105px);
  border: 1px solid rgba(31, 29, 24, 0.14);
  border-radius: 50%;
}

.shape-orbit::before,
.shape-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.shape-orbit::before {
  inset: 58px;
  border: 1px solid rgba(31, 29, 24, 0.11);
}

.shape-orbit::after {
  width: 18px;
  height: 18px;
  top: 20px;
  right: 42px;
  background: var(--color-champagne);
}

.shape-mosaic {
  inset: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 34%, transparent 34% 38%, rgba(200, 184, 155, 0.2) 38% 66%, transparent 66% 70%, rgba(255, 255, 255, 0.64) 70%),
    linear-gradient(180deg, transparent 0 48%, rgba(31, 29, 24, 0.07) 48% 52%, transparent 52%);
  border-radius: 24px;
}

.work-card h3,
.service-card h3,
.process-card h3,
.insight-card h3,
.privacy-brief h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.work-card h3,
.work-card p,
.work-card small,
.work-card .card-meta {
  margin-inline: 10px;
}

.work-card p,
.service-card p,
.process-card p,
.insight-card span,
.privacy-brief p,
.notice-text {
  color: rgba(29, 28, 26, 0.66);
}

.work-card small {
  display: block;
  margin-top: 18px;
  color: rgba(29, 28, 26, 0.56);
  font-size: 0.82rem;
}

.service-card {
  padding: clamp(24px, 3vw, 36px);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--color-champagne);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.process-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 250, 247, 0.76)),
    var(--color-white);
}

.process-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--color-gray);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.embed-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(22px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 240, 232, 0.7)),
    var(--color-ivory);
}

.iframe-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(31, 29, 24, 0.1);
  border-radius: 26px;
  background: var(--color-soft-gray);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.notice-text {
  grid-column: 2;
  margin: -44px 0 0;
  font-size: 0.88rem;
}

.insight-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 250, 247, 0.92)),
    var(--color-white);
}

.insight-card p {
  margin: 0;
  color: var(--color-champagne);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: auto;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.insight-card span {
  display: block;
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.privacy-brief {
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-ivory);
  box-shadow: none;
}

.privacy-brief h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.privacy-brief p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--radius-lg);
}

.form-row,
.consent-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  color: var(--color-black);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 29, 24, 0.13);
  border-radius: 16px;
  padding: 14px 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 184, 155, 0.92);
  box-shadow: 0 0 0 4px rgba(200, 184, 155, 0.14);
  outline: 0;
  background: var(--color-white);
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(29, 28, 26, 0.82);
  font-weight: 500;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-black);
}

.consent-box {
  padding: 16px;
  background: rgba(244, 240, 232, 0.58);
  border: 1px solid rgba(31, 29, 24, 0.08);
  border-radius: 18px;
}

.consent-box p,
.field-error {
  margin: 0;
  color: rgba(29, 28, 26, 0.62);
  font-size: 0.86rem;
}

.field-error {
  min-height: 1.2em;
  color: var(--color-error);
  font-weight: 700;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(29, 28, 26, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--color-error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr) minmax(180px, 0.45fr);
  gap: 34px;
}

.footer-logo,
.legal-info a {
  color: var(--color-white);
}

.site-footer p {
  margin: 18px 0 0;
  max-width: 540px;
  font-size: 0.9rem;
}

.legal-info {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.policy-modal {
  width: min(720px, calc(100% - 32px));
  padding: 0;
  color: var(--color-charcoal);
  background: transparent;
  border: 0;
}

.policy-modal::backdrop {
  background: rgba(15, 15, 14, 0.44);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  padding: clamp(24px, 5vw, 44px);
  background: var(--color-white);
  border: var(--border);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(15, 15, 14, 0.28);
}

.modal-card h2 {
  margin: 0 0 18px;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.modal-card p,
.modal-card li {
  color: rgba(29, 28, 26, 0.72);
}

.modal-card ul {
  padding-left: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  color: var(--color-black);
  background: var(--color-ivory);
  border: var(--border);
  border-radius: 999px;
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  width: min(520px, calc(100% - 32px));
  padding: 16px 20px;
  color: var(--color-white);
  background: rgba(15, 15, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 15, 14, 0.24);
  text-align: center;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .diagnostic-layout,
  .embed-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-copy h1 {
    max-width: 900px;
  }

  .hero-media {
    max-width: 720px;
    margin-inline: auto;
  }

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

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

  .notice-text {
    grid-column: auto;
    margin: 0;
  }

  .contact-copy {
    position: static;
  }

  .diagnostic-copy {
    position: static;
  }

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

  .comments-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms var(--ease-out);
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: var(--color-ivory);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 18vw, 6.2rem);
  }

  .video-shell {
    min-height: 420px;
  }

  .work-grid,
  .service-grid,
  .insight-grid,
  .process-grid,
  .diagnostic-form,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 78px 0;
  }

  .logo span {
    font-size: 1.35rem;
  }

  .logo strong {
    display: none;
  }

  .hero-actions,
  .media-caption {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .video-shell {
    min-height: 360px;
    border-radius: 28px;
  }

  .film-frame {
    min-height: 320px;
  }

  .work-visual {
    height: 220px;
  }

  .work-card,
  .service-card,
  .process-card,
  .insight-card {
    border-radius: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .modal-card {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .brand-video {
    opacity: 0.28;
  }
}
