:root {
  --bg: #090a0d;
  --bg-soft: #10131a;
  --bg-blue: #0b1120;
  --panel: #141821;
  --panel-light: #1a202b;
  --text: #f7f8fa;
  --muted: #949ba7;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #f39c12;
  --orange-bright: #ff7108;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #0a0a0a;
  background: var(--orange);
}

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

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

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

em {
  color: var(--orange);
  font-style: normal;
}

.shell {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.shell-narrow {
  width: min(calc(100% - 56px), 780px);
  margin-inline: auto;
}

.section-pad {
  padding-block: 130px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  color: #111;
  background: var(--orange);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 12, 0.74);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:not(.nav-contact) {
  color: #d8dbe1;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-contact):hover {
  color: var(--orange);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding-inline: 20px;
  color: #111;
  background: var(--orange);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141821;
}

.hero > img,
.page-hero > img,
.portfolio-panorama > img,
.project-image > img,
.seo-visual > img,
.feature-image > img,
.insight-image > img,
.insight-list-image > img,
.article-cover > img,
.contact-thumb > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > img {
  object-position: center 55%;
  animation: heroZoom 16s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.72) 46%, rgba(5, 6, 8, 0.26) 80%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.82) 0%, transparent 45%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 70px;
  align-items: end;
  padding-top: 130px;
}

.hero-copy {
  max-width: 920px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.hero h1 {
  max-width: 980px;
  margin: 28px 0 30px;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.hero-copy > p {
  margin-bottom: 36px;
  color: #d3d7df;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-radius: 2px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #111;
  background: var(--orange);
}

.button-primary:hover {
  background: #ffab22;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  gap: 22px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.hero-stats div {
  display: grid;
  gap: 2px;
}

.hero-stats strong {
  color: var(--orange);
  font-size: 29px;
  line-height: 1;
}

.hero-stats span {
  color: #adb3be;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(-10%);
  transform-origin: right bottom;
  color: #aeb3bd;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-scroll i {
  width: 60px;
  height: 1px;
  background: var(--orange);
}

.ticker {
  overflow: hidden;
  padding-block: 17px;
  color: #111;
  background: var(--orange);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: tickerMove 28s linear infinite;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

.intro-section {
  background: #0f1218;
}

.intro-grid,
.split-copy {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2,
.split-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.intro-grid p,
.split-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: #adb3bd;
  font-size: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.service-list article {
  min-height: 360px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-list article:first-child {
  border-left: 1px solid var(--line);
}

.service-list article:hover {
  z-index: 1;
  background: var(--panel-light);
  transform: translateY(-10px);
}

.service-list article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.service-list h3 {
  margin: 85px 0 20px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.service-list p {
  color: var(--muted);
  font-size: 14px;
}

.service-list article > div,
.production-service-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.service-list small,
.production-service-grid li {
  padding: 5px 9px;
  color: #c1c6ce;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  list-style: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 62px;
}

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

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

.section-heading h2 {
  margin: 20px 0 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.26;
  letter-spacing: -0.045em;
}

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

.portfolio-section,
.portfolio-page-section {
  background: #0a0a0a;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 5;
  min-height: 470px;
  overflow: hidden;
  background: var(--panel);
}

.project-large,
.project-wide {
  grid-column: span 7;
}

.project-wide {
  min-height: 390px;
}

.project-tall {
  min-height: 610px;
}

.project-standard {
  min-height: 510px;
}

.project-image {
  position: absolute;
  inset: 0;
}

.project-image img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 9, 0.9), transparent 58%);
}

.project-meta {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
}

.project-meta span {
  color: #d3d6dc;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.project-meta h3 {
  margin: 7px 0 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.project-meta strong {
  color: var(--orange);
  font-size: 12px;
  white-space: nowrap;
}

.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.seo-section {
  background: var(--bg-blue);
}

.seo-grid,
.feature-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seo-visual,
.feature-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--panel);
}

.seo-visual::after,
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}

.seo-score {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 180px;
  padding: 22px;
  color: #111;
  background: var(--orange);
}

.seo-score span,
.seo-score small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.seo-score strong {
  display: block;
  margin-block: 10px;
  font-size: 54px;
  line-height: 1;
}

.seo-copy h2,
.feature-grid h2,
.contact-sidebar h2 {
  margin: 20px 0 28px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.seo-copy > p,
.feature-grid > div > p,
.contact-sidebar > p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  margin: 36px 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.check-list b {
  color: var(--orange);
  font-size: 11px;
}

.pricing-preview,
.pricing-page-section {
  background: #0a0a0a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-grid article {
  position: relative;
  min-height: 610px;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f13;
}

.pricing-grid article.featured {
  color: #101010;
  background: var(--orange);
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.price-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pricing-grid h3,
.pricing-grid h2 {
  margin: 28px 0 10px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.pricing-grid article > strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
}

.pricing-grid .featured > strong {
  color: #111;
}

.pricing-grid article > p {
  min-height: 80px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid .featured > p {
  color: rgba(17,17,17,0.7);
}

.pricing-grid ul {
  min-height: 200px;
  margin: 0;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.pricing-grid li {
  margin: 10px 0;
  color: #c6cad1;
  list-style: none;
  font-size: 14px;
}

.pricing-grid li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange);
}

.pricing-grid .featured li {
  color: #111;
}

.pricing-grid .featured li::before {
  color: #111;
}

.pricing-grid article > a {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.process-preview,
.process-page-section {
  background: #111827;
}

.process-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.process-header > p {
  max-width: 370px;
  padding-top: 44px;
  color: var(--muted);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.process-strip article {
  min-height: 310px;
  padding: 26px 18px;
  border-right: 1px solid var(--line);
}

.process-strip article:first-child {
  border-left: 1px solid var(--line);
}

.process-strip span,
.process-strip small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.process-strip small {
  display: block;
  margin-top: 55px;
  color: #697181;
  letter-spacing: 0.1em;
}

.process-strip h3 {
  margin: 6px 0 18px;
  font-size: 22px;
}

.process-strip p {
  color: var(--muted);
  font-size: 13px;
}

.insights-section,
.insight-page-section,
.related-section {
  background: #0c0e12;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  display: block;
  border: 1px solid var(--line);
  background: #11141a;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243,156,18,0.7);
}

.insight-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.insight-image img,
.insight-list-image img {
  transition: transform 0.5s ease;
}

.insight-card:hover img,
.insight-list > a:hover img {
  transform: scale(1.04);
}

.insight-card > div:last-child {
  padding: 26px;
}

.insight-card span,
.insight-list-copy span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.insight-card h3 {
  margin: 15px 0 12px;
  font-size: 21px;
  line-height: 1.45;
}

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

.faq-section {
  background: #111;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  gap: 16px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-size: 11px;
}

.faq-list summary i {
  font-style: normal;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -2px 30px 28px 60px;
  color: var(--muted);
  font-size: 14px;
}

.home-contact,
.contact-page-section {
  background: #061635;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.home-contact-grid h2 {
  margin: 22px 0 26px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.home-contact-grid > div:first-child > p {
  max-width: 430px;
  color: #a9b2c2;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 56px;
  color: #c5ccda;
  font-size: 13px;
}

.contact-note a {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.inquiry-form label {
  display: grid;
  gap: 9px;
}

.inquiry-form label > span {
  color: #b5bdcb;
  font-size: 12px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  outline: none;
  background: rgba(255,255,255,0.035);
  border-radius: 0;
}

.inquiry-form input,
.inquiry-form select {
  height: 52px;
  padding: 0 14px;
}

.inquiry-form textarea {
  padding: 14px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-bottom-color: var(--orange);
}

.inquiry-form select option {
  color: #111;
}

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

.form-agree {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
}

.form-agree input {
  width: 16px;
  height: 16px;
}

.form-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.form-success > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.form-success strong {
  margin-top: 20px;
  font-size: 26px;
}

.form-success p {
  color: var(--muted);
}

.form-success button,
.form-success a {
  padding: 10px 0;
  color: var(--orange);
  border: 0;
  border-bottom: 1px solid var(--orange);
  background: transparent;
  cursor: pointer;
}

.contact-band {
  padding-block: 105px;
  color: #111;
  background: var(--orange);
}

.contact-band .eyebrow {
  color: #111;
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-band h2 {
  margin: 22px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.round-link {
  width: 180px;
  height: 180px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,17,17,0.5);
  border-radius: 50%;
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.round-link strong {
  font-size: 24px;
}

.round-link:hover {
  color: #fff;
  background: #111;
  transform: rotate(-8deg);
}

.site-footer {
  padding: 90px 0 24px;
  background: #07080a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-brand .brand-logo {
  height: 56px;
}

.footer-top > div:first-child p {
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: #9ba2ad;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #6f7680;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #111827;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,0.95), rgba(5,6,8,0.52)), linear-gradient(0deg, rgba(5,6,8,0.8), transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.page-hero h1 {
  max-width: 940px;
  margin: 25px 0 22px;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c8cdd5;
  font-size: 17px;
}

.page-index {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.production-intro {
  background: #0f1218;
}

.production-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 85px;
}

.production-service-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  background: #141821;
}

.production-service-grid article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.production-service-grid h3 {
  margin: 62px 0 18px;
  font-size: 24px;
}

.production-service-grid p {
  color: var(--muted);
  font-size: 14px;
}

.production-service-grid ul {
  margin-bottom: 0;
  padding: 0;
}

.deliverables-section,
.comparison-section,
.case-notes {
  background: #0a0a0a;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-grid article {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-grid span {
  color: var(--orange);
  font-size: 10px;
}

.deliverable-grid h3 {
  margin: 70px 0 25px;
  font-size: 23px;
}

.deliverable-grid ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.production-feature,
.process-philosophy {
  background: #111827;
}

.feature-grid.reverse > div:first-child {
  order: 2;
}

.feature-grid.reverse > div:last-child {
  order: 1;
}

.keyword-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.keyword-map div {
  display: grid;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.keyword-map span {
  color: var(--orange);
  font-size: 10px;
}

.keyword-map strong {
  margin-top: 16px;
}

.keyword-map small {
  color: var(--muted);
}

.case-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.case-note-grid article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
}

.case-note-grid article + article {
  border-left: 0;
}

.case-note-grid span,
.case-note-grid small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.case-note-grid h2 {
  margin: 60px 0 0;
  font-size: 24px;
}

.case-note-grid p {
  color: var(--muted);
  font-size: 13px;
}

.case-note-grid strong {
  display: block;
  margin: 30px 0 12px;
  color: var(--orange);
  font-size: 22px;
}

.portfolio-panorama {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portfolio-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,6,8,0.7);
}

.portfolio-panorama > div {
  position: relative;
  z-index: 2;
}

.portfolio-panorama span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.portfolio-panorama h2 {
  margin-top: 24px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.pricing-grid-page {
  margin-top: 10px;
}

.comparison-table {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.comparison-row > * {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #b7bdc7;
  font-size: 13px;
}

.comparison-row > strong {
  color: #fff;
}

.comparison-head > * {
  color: #111;
  background: var(--orange);
  font-weight: 850;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.process-timeline {
  border-top: 1px solid var(--line);
}

.process-timeline article {
  display: grid;
  grid-template-columns: 90px 0.7fr 1fr 90px;
  gap: 40px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
}

.timeline-number {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.process-timeline span,
.process-timeline small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-timeline h2 {
  margin: 4px 0 0;
  font-size: 32px;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
}

.process-timeline small {
  color: #687180;
  text-align: right;
}

.check-list.compact {
  margin-bottom: 0;
}

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

.insight-list > a {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 40px;
  gap: 42px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.insight-list-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.insight-list-copy h2 {
  margin: 16px 0 12px;
  font-size: 29px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.insight-list-copy p {
  color: var(--muted);
}

.insight-list-copy small {
  color: #6f7782;
}

.insight-list > a > strong {
  color: var(--orange);
  font-size: 24px;
}

.article-page {
  padding-top: 170px;
  background: #0c0e12;
}

.article-header {
  padding-bottom: 68px;
  text-align: center;
}

.article-header > a {
  display: block;
  margin-bottom: 50px;
  color: var(--muted);
  text-align: left;
}

.article-header > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-header h1 {
  max-width: 950px;
  margin: 24px auto;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.article-header p {
  max-width: 680px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 18px;
}

.article-header small {
  color: #6e7580;
}

.article-cover {
  position: relative;
  width: min(calc(100% - 56px), 1380px);
  height: min(62vw, 760px);
  margin: 0 auto 100px;
  overflow: hidden;
}

.article-body {
  padding-bottom: 120px;
}

.article-body section {
  margin-bottom: 70px;
}

.article-body h2 {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.article-body p,
.article-body li {
  color: #bec3cc;
  font-size: 17px;
  line-height: 2;
}

.article-body ul {
  margin-top: 25px;
  padding: 24px 24px 24px 48px;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.035);
}

.article-cta {
  margin-top: 100px;
  padding: 48px;
  background: #111827;
}

.article-cta > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.article-cta h2 {
  max-width: 560px;
  margin: 18px 0 30px;
}

.related-section h2 {
  margin-bottom: 35px;
  font-size: 34px;
}

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

.related-grid a {
  padding: 30px;
  border: 1px solid var(--line);
  background: #11141a;
}

.related-grid span {
  color: var(--orange);
  font-size: 10px;
}

.related-grid h3 {
  min-height: 72px;
  margin: 25px 0 30px;
  font-size: 22px;
}

.related-grid strong {
  font-size: 11px;
}

.contact-page-grid {
  align-items: start;
}

.contact-sidebar dl {
  margin-top: 50px;
}

.contact-sidebar dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-sidebar dt {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-sidebar dd {
  margin: 0;
  color: #c4cad5;
  font-size: 14px;
}

.contact-thumb {
  position: relative;
  height: 230px;
  margin-top: 45px;
  overflow: hidden;
}

.contact-form-panel {
  padding: 48px;
  border: 1px solid var(--line);
  background: rgba(5,10,24,0.55);
}

.contact-form-panel > h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.contact-form-panel > p {
  margin-bottom: 38px;
  color: #9ea8ba;
  font-size: 13px;
}

.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
}

.not-found > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin: 22px 0 10px;
  font-size: clamp(40px, 5vw, 64px);
}

.not-found p {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); border-left: 0; border-top: 1px solid var(--line); padding: 20px 0 0; }
  .process-strip { grid-template-columns: repeat(3, 1fr); }
  .process-strip article:nth-child(4) { border-left: 1px solid var(--line); }
  .seo-grid, .feature-grid { gap: 48px; }
}

@media (max-width: 900px) {
  body { font-size: 15px; }
  .section-pad { padding-block: 92px; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 80px 32px;
    background: rgba(7,8,10,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { font-size: 28px; }
  .main-nav .nav-contact { height: 52px; margin-top: 18px; font-size: 16px; }
  .intro-grid, .split-copy, .faq-grid, .home-contact-grid, .seo-grid, .feature-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .service-list, .production-service-grid { grid-template-columns: 1fr; }
  .service-list article { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service-list h3 { margin-top: 35px; }
  .project-card, .project-large, .project-wide { grid-column: span 6; min-height: 480px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid article, .pricing-grid article.featured { min-height: auto; transform: none; }
  .pricing-grid ul, .pricing-grid article > p { min-height: auto; }
  .process-header { display: block; }
  .process-header > p { padding-top: 0; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .insight-image { height: auto; min-height: 250px; }
  .footer-top { grid-template-columns: 1fr; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .case-note-grid { grid-template-columns: 1fr; }
  .case-note-grid article + article { border-left: 1px solid var(--line); border-top: 0; }
  .process-timeline article { grid-template-columns: 60px 0.6fr 1fr; gap: 24px; }
  .process-timeline small { display: none; }
  .feature-grid.reverse > div:first-child, .feature-grid.reverse > div:last-child { order: initial; }
  .contact-thumb { display: none; }
}

@media (max-width: 680px) {
  body { padding-bottom: 58px; font-size: 14px; }
  .shell, .shell-narrow { width: min(calc(100% - 32px), var(--max)); }
  .section-pad { padding-block: 70px; }
  .site-header { height: 72px; }
  .header-inner { width: calc(100% - 32px); }
  .brand-logo { height: 46px; }
  .footer-brand .brand-logo { height: 50px; }
  .hero { min-height: 844px; align-items: end; }
  .hero > img { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,6,8,0.97) 5%, rgba(5,6,8,0.56) 72%, rgba(5,6,8,0.34)); }
  .hero-content { gap: 38px; padding: 130px 0 86px; }
  .hero-kicker, .eyebrow { font-size: 10px; letter-spacing: 0.12em; }
  .hero h1 { margin: 20px 0 22px; font-size: 38px; line-height: 1.2; }
  .hero-copy > p { font-size: 15px; line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-stats { gap: 10px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 7px; }
  .hero-scroll { display: none; }
  .ticker > div { font-size: 11px; }
  .intro-grid, .split-copy { gap: 32px; }
  .intro-grid h2, .split-copy h2, .section-heading h2, .seo-copy h2, .feature-grid h2, .contact-sidebar h2 { font-size: 29px; }
  .intro-grid p, .split-copy p, .section-heading p, .seo-copy > p, .feature-grid > div > p { font-size: 15px; }
  .section-heading { margin-bottom: 38px; }
  .service-list { margin-top: 48px; }
  .project-grid { display: block; }
  .project-card, .project-large, .project-wide, .project-tall, .project-standard { min-height: 460px; margin-bottom: 14px; }
  .project-meta { padding: 22px; }
  .project-meta h3 { font-size: 21px; }
  .project-meta { display: block; }
  .project-meta strong { display: block; margin-top: 10px; }
  .seo-visual, .feature-image { min-height: 430px; }
  .seo-grid, .feature-grid { gap: 42px; }
  .seo-score { width: 145px; }
  .seo-score strong { font-size: 42px; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .process-strip article:nth-child(odd) { border-left: 1px solid var(--line); }
  .process-strip article { min-height: 270px; }
  .insight-card { display: block; }
  .insight-image { height: 230px; }
  .faq-grid, .home-contact-grid { gap: 45px; }
  .home-contact-grid h2 { font-size: 34px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form label, .form-wide { grid-column: 1; }
  .contact-band { padding-block: 70px; }
  .contact-band-inner { align-items: flex-start; flex-direction: column; }
  .contact-band h2 { font-size: 34px; }
  .round-link { width: 120px; height: 120px; }
  .footer-top { gap: 50px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .page-hero { min-height: 610px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 15px; }
  .page-hero-content { padding-bottom: 56px; }
  .page-index { display: none; }
  .production-service-grid { margin-top: 50px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-grid article { min-height: auto; }
  .deliverable-grid h3 { margin-top: 35px; }
  .keyword-map { grid-template-columns: 1fr; }
  .portfolio-panorama { min-height: 520px; padding-inline: 16px; }
  .portfolio-panorama h2 { font-size: 34px; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 680px; }
  .process-timeline article { grid-template-columns: 42px 1fr; gap: 16px; padding-block: 30px; }
  .process-timeline article > p { grid-column: 2; }
  .process-timeline h2 { font-size: 26px; }
  .insight-list > a { grid-template-columns: 1fr; gap: 22px; }
  .insight-list-image { min-height: 230px; }
  .insight-list-copy h2 { font-size: 24px; }
  .insight-list > a > strong { position: absolute; right: 0; bottom: 28px; }
  .article-page { padding-top: 120px; }
  .article-header { text-align: left; }
  .article-header > a { margin-bottom: 35px; }
  .article-header h1 { font-size: 36px; }
  .article-header p { font-size: 15px; }
  .article-cover { width: 100%; height: 70vw; margin-bottom: 70px; }
  .article-body p, .article-body li { font-size: 15px; }
  .article-body h2 { font-size: 26px; }
  .article-cta { padding: 30px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 28px 20px; }
  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    height: 58px;
    box-shadow: 0 -10px 35px rgba(0,0,0,0.3);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; color: #fff; background: #151820; font-weight: 800; }
  .mobile-cta a:last-child { color: #111; background: var(--orange); }
}

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