:root {
  --bg: #060a12;
  --bg-soft: #0c121f;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #eef4ff;
  --muted: #aeb9d1;
  --line: rgba(255,255,255,0.1);
  --line-strong: rgba(255,255,255,0.16);
  --accent: #75c7ed;
  --accent-strong: #a5e6ff;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 24px 72px rgba(0,0,0,0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard", "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(117, 199, 237, 0.17), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(117, 199, 237, 0.09), transparent 28%),
    linear-gradient(180deg, #04070d 0%, #09111d 46%, #060a12 100%);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.6) 0.45px, transparent 0.6px);
  background-size: 10px 10px;
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6,10,18,0.62);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: min(313px, 39vw);
  min-width: 173px;
  height: auto;
  object-fit: contain;
}
.nav {
  display: flex; align-items: center; gap: 30px; color: var(--muted);
  font-family: "Instrument Sans", "Pretendard", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav a:hover { color: var(--text); opacity: 1; }
.nav-cta {
  padding: 12px 18px; border-radius: 999px; color: var(--text);
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.045);
}
.menu-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 28px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(10px);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "Instrument Sans", "Pretendard", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn.active {
  background: rgba(117,199,237,0.18);
  color: var(--text);
}

.lang-btn:hover {
  color: var(--text);
}

.lang-switch-mobile {
  display: none;
}

.hero {
  position: relative;
  padding: 104px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.04) brightness(0.58);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,7,13,0.9) 0%, rgba(4,7,13,0.72) 34%, rgba(4,7,13,0.48) 56%, rgba(4,7,13,0.74) 100%),
    radial-gradient(circle at 22% 36%, rgba(117,199,237,0.14), transparent 30%),
    linear-gradient(180deg, rgba(4,7,13,0.18) 0%, rgba(4,7,13,0.42) 100%);
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid; grid-template-columns: 1.03fr 0.97fr; gap: 42px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; font-size: 12px; font-weight: 700;
  font-family: "Instrument Sans", "Pretendard", sans-serif;
}
.hero h1, .section h2 {
  margin: 0;
  font-family: "SUIT", "Pretendard", "Instrument Sans", sans-serif;
  line-height: 1.58;
  letter-spacing: -0.03em;
  font-weight: 620;
}
.footer-brand p {
  white-space: nowrap;
}
.hero h1 {
  font-size: clamp(2.05rem, 4.1vw, 3.6rem);
  max-width: 14ch;
  white-space: nowrap;
  line-height: 1.18;
}
.hero-text {
  margin: 26px 0 0;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: -0.018em;
  max-width: 38ch;
  font-weight: 450;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 0 24px; border-radius: 999px; font-weight: 700; transition: 0.25s ease;
  letter-spacing: -0.012em; font-size: 0.98rem;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #05111d; }
.btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-2px); }
.hero-meta {
  margin: 30px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-meta li {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--line);
  font-size: 0.92rem; letter-spacing: -0.01em; font-weight: 500;
}
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch;
}
.hero-logo-panel,
.hero-card {
  position: relative; border-radius: 30px; padding: 30px; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow); overflow: hidden;
  background: linear-gradient(180deg, rgba(8,14,24,0.56), rgba(8,14,24,0.24));
  backdrop-filter: blur(12px);
}
.hero-logo-panel {
  grid-column: span 2;
  min-height: 312px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    radial-gradient(circle at 0% 100%, rgba(117, 199, 237, 0.24), transparent 42%);
}
.hero-logo {
  width: min(100%, 472px);
  height: auto;
  object-fit: contain;
}
.hero-logo-copy strong,
.hero-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.75;
  letter-spacing: -0.018em;
  font-weight: 580;
  font-family: "SUIT", "Pretendard", sans-serif;
}
.hero-logo-copy p,
.hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  letter-spacing: -0.015em;
  font-size: 0.98rem;
}
.hero-card span, .service-card span {
  display: block; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  font-family: "Instrument Sans", "Pretendard", sans-serif;
}
.card-b, .card-c { min-height: 228px; }

.featured-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.025);
}
.strip-inner { padding: 18px 0; }
.strip-inner p {
  margin: 0; color: var(--muted); text-align: center; letter-spacing: 0.055em; line-height: 1.7; font-size: 0.93rem;
}

.section { padding: 108px 0; }
.work-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.work-section-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.work-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.04) brightness(0.62) blur(0px);
}
.work-section-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.58) 0%, rgba(6,10,18,0.44) 18%, rgba(6,10,18,0.38) 48%, rgba(6,10,18,0.62) 100%),
    radial-gradient(circle at 18% 24%, rgba(117,199,237,0.10), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(117,199,237,0.08), transparent 26%);
}
.work-section .container {
  position: relative;
  z-index: 2;
}

.dark { background: rgba(255,255,255,0.025); }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 38px;
}
.section-head.compact { margin-bottom: 32px; }
.section h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  max-width: 16ch;
}
.section-note {
  max-width: 34ch; color: var(--muted); line-height: 1.84; letter-spacing: -0.015em; font-size: 1rem;
}

.work-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr 0.9fr; gap: 20px;
}
.work-card {
  border-radius: 28px; overflow: hidden; background: rgba(10,16,28,0.78); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 46px rgba(0,0,0,0.24);
  backdrop-filter: blur(10px);
}
.work-card.tall { grid-row: span 2; }
.work-card.wide { grid-column: span 2; }
.work-visual { height: 280px; min-height: 280px; overflow: hidden; }
.tall .work-visual { height: 620px; min-height: 620px; }
.wide .work-visual { height: 250px; min-height: 250px; }
.gradient-1 { background: linear-gradient(160deg, rgba(18,25,40,1) 0%, rgba(10,15,26,1) 44%, rgba(117,199,237,0.55) 100%); }
.gradient-2 { background: linear-gradient(135deg, rgba(48,76,125,0.78), rgba(15,21,34,1)); }
.gradient-3 { background: linear-gradient(135deg, rgba(11,91,103,0.8), rgba(15,21,34,1)); }
.gradient-4 { background: linear-gradient(120deg, rgba(34,93,134,0.72), rgba(15,21,34,1)); }
.work-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}
.work-visual video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}
.video-visual {
  position: relative;
}
.video-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 22%, rgba(10,16,28,0.0) 52%, rgba(10,16,28,0.14) 100%);
  pointer-events: none;
}
.image-visual {
  position: relative;
  background: #15263b;
}
.image-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 22%, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.16) 16%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0) 52%),
    linear-gradient(120deg, rgba(7,12,20,0.34) 0%, rgba(7,12,20,0.12) 34%, rgba(255,255,255,0.02) 55%, rgba(255,255,255,0.14) 100%),
    linear-gradient(180deg, rgba(6,10,18,0.06) 0%, rgba(6,10,18,0.2) 100%);
  mix-blend-mode: screen;
}
.work-body { padding: 26px 24px 24px; }
.work-tag {
  margin: 0 0 12px; color: var(--accent); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-family: "Instrument Sans", "Pretendard", sans-serif;
}
.work-body h3 {
  margin: 0 0 14px; font-size: 1.16rem; line-height: 1.86; letter-spacing: -0.018em; font-weight: 590;
  font-family: "SUIT", "Pretendard", sans-serif;
}
.work-body p {
  margin: 0; color: var(--muted); line-height: 1.82; letter-spacing: -0.015em; font-size: 0.98rem;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service-card {
  padding: 26px 24px; border-radius: 24px; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.service-card h3 { margin: 18px 0 12px; font-size: 1.04rem; line-height: 1.82; letter-spacing: -0.016em; font-weight: 580; font-family: "SUIT", "Pretendard", sans-serif; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.82; letter-spacing: -0.015em; font-size: 0.97rem; }


.process-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.process-section-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.process-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02) brightness(0.62);
}
.process-section-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.62) 0%, rgba(6,10,18,0.46) 24%, rgba(6,10,18,0.38) 50%, rgba(6,10,18,0.64) 100%),
    radial-gradient(circle at 18% 24%, rgba(117,199,237,0.10), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(117,199,237,0.08), transparent 28%);
  z-index: 1;
}
.process-section > .container {
  position: relative;
  z-index: 2;
}

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.timeline-item {
  padding: 28px 24px; border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
}
.timeline-item strong {
  display: block; margin-bottom: 12px; font-size: 1rem; line-height: 1.82; letter-spacing: -0.015em; font-weight: 580;
  font-family: "SUIT", "Pretendard", sans-serif;
}
.timeline-item p { margin: 0; color: var(--muted); line-height: 1.75; letter-spacing: -0.015em; font-size: 0.97rem; }

.split-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start;
}
.about-copy p {
  margin: 0 0 18px; color: var(--muted); line-height: 1.92; font-size: 1.04rem; letter-spacing: -0.015em;
}

.cta-box {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; align-items: stretch;
  padding: 38px; border-radius: 30px; background: linear-gradient(135deg, rgba(117,199,237,0.12), rgba(117,199,237,0.05)); border: 1px solid rgba(255,255,255,0.14);
}
.cta-box h2 { max-width: none; margin-bottom: 14px; }
.cta-box p { color: var(--muted); line-height: 1.84; margin: 0; letter-spacing: -0.015em; font-size: 1rem; }
.contact-card {
  display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 24px; border-radius: 24px; background: rgba(6,10,18,0.64); border: 1px solid var(--line);
}
.contact-card a { font-size: 1.04rem; font-weight: 650; letter-spacing: -0.015em; }
.contact-card p { font-size: 0.98rem; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 202px; height: auto; object-fit: contain; }
.footer-wrap p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.footer-links {
  display: flex; gap: 18px; color: var(--muted); font-size: 0.96rem; font-family: "Instrument Sans", "Pretendard", sans-serif;
}

@media (max-width: 1024px) {
  .hero-grid, .split-grid, .cta-box, .work-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .work-card.tall, .work-card.wide { grid-column: auto; grid-row: auto; }
  .tall .work-visual { min-height: 280px; }
  .section h2 { max-width: none; }
  .brand-logo { width: min(271px, 41vw); }
  .hero-logo { width: min(100%, 414px); }
}

@media (max-width: 760px) {
  .nav {
    display: none; position: absolute; top: 85px; left: 20px; right: 20px; padding: 18px;
    flex-direction: column; align-items: stretch; background: rgba(6,10,18,0.96); border: 1px solid var(--line); border-radius: 20px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .nav .lang-switch { display: none; }
  .lang-switch-mobile { display: inline-flex; }
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: min(212px, 52vw); min-width: 148px; }
  .header-actions { gap: 10px; flex-shrink: 0; }
  .lang-switch-mobile { padding: 3px; }
  .lang-switch-mobile .lang-btn { min-width: 38px; height: 32px; padding: 0 10px; font-size: 0.82rem; }
  .hero, .section { padding: 72px 0; }
  .hero-grid, .hero-visual, .section-head, .work-grid, .services-grid, .timeline, .split-grid, .cta-box, .footer-wrap {
    grid-template-columns: 1fr !important; display: grid;
  }
  .section-head { align-items: start; }
  .hero h1, .hero-text { max-width: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-logo-panel { min-height: 220px; padding: 24px; }
  .hero-logo { width: min(100%, 322px); }
  .footer-brand { gap: 10px; }
  .footer-logo { width: 173px; }
}

.cf-visual img { object-position: 62% center; }
.documentary-visual img { object-position: center center; }
.campaign-visual img { object-position: center center; }
.live-visual img { object-position: center 42%; }


#services .section-head.compact,
#process .section-head.compact {
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

#services .section-head.compact > div,
#process .section-head.compact > div {
  width: 100%;
}

#services,
#process {
  padding-top: 72px;
  padding-bottom: 72px;
}

#services .container,
#process .container {
  min-height: min(88vh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services .section-head.compact,
#process .section-head.compact {
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

#services .section-head.compact > div,
#process .section-head.compact > div {
  width: 100%;
}

#services .section-head.compact .eyebrow {
  margin: 0 0 140px;
}

#process .section-head.compact .eyebrow {
  margin: 0 0 28px;
}

#services .section-head.compact h2,
#process .section-head.compact h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.042em;
  font-weight: 620;
  margin: 0 auto;
}

#services .services-grid {
  margin-top: 56px;
}

#process .timeline {
  margin-top: 56px;
}

@media (max-width: 760px) {
  #services,
  #process {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  #services .container,
  #process .container {
    min-height: auto;
    justify-content: flex-start;
  }

  #services .section-head.compact .eyebrow {
    margin: 0 0 56px;
  }

  #process .section-head.compact .eyebrow {
    margin: 0 0 28px;
  }

  #services .section-head.compact h2,
  #process .section-head.compact h2 {
    white-space: normal;
    font-size: clamp(1.56rem, 6.1vw, 2rem);
    line-height: 1.3;
  }

  #services .services-grid,
  #process .timeline {
    margin-top: 28px;
  }

  .hero-visual {
    gap: 14px;
  }

  .hero-logo-panel {
    grid-column: auto;
    min-height: 200px;
    padding: 22px;
  }

  .hero-card {
    padding: 22px;
    min-height: auto;
  }

  .card-b,
  .card-c {
    min-height: 168px;
  }
}


/* Desktop balance update for Services / Process / About */
#services .section-head.compact h2,
#process .section-head.compact h2,
#about h2 {
  max-width: none;
  white-space: nowrap;
  text-align: center;
}

#services,
#process,
#about {
  padding-top: 92px;
  padding-bottom: 28px;
}

#services .container,
#process .container,
#about .container {
  min-height: min(82vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#services .services-grid,
#process .timeline {
  margin-top: 92px;
}

#about .split-grid {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 84px;
  min-height: inherit;
  text-align: center;
}

#about .split-grid > div:first-child {
  width: 100%;
}

#about .split-grid .eyebrow {
  text-align: center;
}

#about h2 {
  margin: 0 auto;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 610;
}

#about .about-copy {
  max-width: 880px;
  margin: 0 auto;
}

#about .about-copy p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  #services .section-head.compact h2,
  #process .section-head.compact h2,
  #about h2 {
    white-space: normal;
  }

  #services,
  #process,
  #about {
    padding-top: 72px;
    padding-bottom: 38px;
  }

  #services .container,
  #process .container,
  #about .container {
    min-height: auto;
    justify-content: flex-start;
  }

  #services .services-grid,
  #process .timeline {
    margin-top: 32px;
  }

  #about .split-grid {
    gap: 28px;
    text-align: left;
    align-items: stretch;
  }

  #about .split-grid .eyebrow,
  #about h2,
  #about .about-copy p {
    text-align: left;
  }
}


/* 2026-03-10: tighten top spacing for Services / Process / About and lift section labels */
#services,
#process,
#about {
  padding-top: 56px;
}

#services .section-head.compact .eyebrow,
#process .section-head.compact .eyebrow,
#about .eyebrow {
  position: relative;
  top: -38px;
  margin-bottom: -18px;
}

#about .split-grid {
  align-items: start;
}

@media (max-width: 760px) {
  #services,
  #process,
  #about {
    padding-top: 48px;
  }

  #services .section-head.compact .eyebrow,
  #process .section-head.compact .eyebrow,
  #about .eyebrow {
    top: -18px;
    margin-bottom: -6px;
  }
}

/* 2026-03-10 final consistency pass for Services / Process / About */
@media (min-width: 981px) {
  #services,
  #process,
  #about {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  #services .container,
  #process .container,
  #about .container {
    min-height: min(68vh, 720px);
    justify-content: flex-end;
  }

  #services .section-head.compact .eyebrow,
  #process .section-head.compact .eyebrow,
  #about .eyebrow {
    top: -22px;
    margin-bottom: -4px;
  }

  #services .section-head.compact,
  #process .section-head.compact {
    margin-bottom: 0;
  }

  #services .services-grid,
  #process .timeline {
    margin-top: 56px;
  }

  #about .split-grid {
    min-height: inherit;
    justify-content: flex-end;
    gap: 54px;
    align-items: center;
  }

  #about .about-copy {
    max-width: 860px;
  }
}


/* 2026-03-10 desktop 16:9 centered balance update for Services / Process / About */
@media (min-width: 981px) {
  #services,
  #process,
  #about {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  #services .container,
  #process .container,
  #about .container {
    min-height: min(calc(100vw * 9 / 16), 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #services .section-head.compact,
  #process .section-head.compact,
  #about .split-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #services .section-head.compact .eyebrow,
  #process .section-head.compact .eyebrow,
  #about .eyebrow {
    top: 0;
    margin-bottom: 10px;
  }

  #services .section-head.compact h2,
  #process .section-head.compact h2,
  #about h2 {
    font-size: clamp(2rem, 3.15vw, 2.8rem);
    line-height: 1.22;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #services .services-grid,
  #process .timeline {
    margin-top: 44px;
  }

  #about .split-grid {
    min-height: inherit;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  #about .about-copy {
    max-width: 860px;
    margin: 0 auto;
  }

  #about .about-copy p {
    text-align: center;
  }

  #about .about-copy p + p {
    margin-top: 10px;
  }

  .process-section-video {
    object-fit: cover;
    object-position: center center;
  }
}


@media (min-width: 1200px) {
  #services .container,
  #process .container {
    width: min(calc(100% - 96px), 1340px);
  }

  #services .services-grid,
  #process .timeline {
    gap: 22px;
  }

  #services .service-card,
  #process .timeline-item {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* 2026-03-10 explicit services eyebrow/title spacing override */
@media (min-width: 981px) {
  #services .section-head.compact {
    gap: 0 !important;
  }
  #services .section-head.compact .eyebrow {
    display: block !important;
    position: static !important;
    top: auto !important;
    margin: 0 0 88px !important;
    transform: none !important;
  }
  #services .section-head.compact h2 {
    margin-top: 0 !important;
  }
}

@media (max-width: 980px) {
  #services .section-head.compact .eyebrow {
    position: static !important;
    top: auto !important;
    margin: 0 0 36px !important;
    transform: none !important;
  }
}

/* 2026-03-10 verified services desktop refinement */
@media (min-width: 981px) {
  #services .section-head.compact h2 {
    font-size: clamp(2.4rem, 3.78vw, 3.36rem) !important; /* +20% from prior desktop scale */
    line-height: 1.22 !important;
  }

  #services .services-grid {
    margin-top: 0 !important;
    transform: translateY(56px) !important; /* move only the four boxes lower */
  }

  #services .container {
    overflow: visible;
  }
}

@media (max-width: 980px) {
  #services .section-head.compact h2 {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
  }
}


/* Verified desktop-only bottom alignment for SERVICES cards */
@media (min-width: 761px) {
  #services .container {
    min-height: min(88vh, 960px);
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  #services .section-head.compact {
    flex: 0 0 auto;
    margin-bottom: 0 !important;
  }

  #services .section-head.compact .eyebrow {
    margin: 0 0 140px !important;
  }

  #services .section-head.compact h2 {
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    margin: 0 auto !important;
  }

  #services .services-grid {
    margin-top: auto !important;
    transform: none !important;
    padding-top: 40px !important;
    align-self: stretch !important;
  }
}

/* 2026-03-11 deterministic desktop layout fix for SERVICES section */
@media (min-width: 981px) {
  #services .container {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    overflow: visible !important;
  }

  #services .section-head.compact {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #services .section-head.compact > div {
    width: 100% !important;
  }

  #services .section-head.compact .eyebrow {
    margin: 0 0 140px !important;
    position: static !important;
    transform: none !important;
  }

  #services .section-head.compact h2 {
    margin: 0 auto !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  #services .services-grid {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }
}


/* 2026-03-11 desktop alignment sync: PROCESS and ABOUT match SERVICES */
@media (min-width: 981px) {
  #process .container {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    overflow: visible !important;
  }

  #process .section-head.compact {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #process .section-head.compact > div {
    width: 100% !important;
  }

  #process .section-head.compact .eyebrow {
    margin: 0 0 140px !important;
    position: static !important;
    transform: none !important;
    text-align: center !important;
  }

  #process .section-head.compact h2 {
    margin: 0 auto !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
    max-width: 15ch !important;
  }

  #process .timeline {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
    width: 100% !important;
  }

  #about .split-grid {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  #about .split-grid > div:first-child {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #about .split-grid > div:first-child .eyebrow {
    margin: 0 0 140px !important;
    text-align: center !important;
  }

  #about .split-grid > div:first-child h2 {
    margin: 0 auto !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
    max-width: 18ch !important;
  }

  #about .about-copy {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 auto !important;
    width: min(100%, 920px) !important;
    text-align: center !important;
    display: grid !important;
    gap: 14px !important;
  }

  #about .about-copy p {
    margin: 0 !important;
  }
}

/* 2026-03-11 final horizontal centering fix: PROCESS and ABOUT slogans */
@media (min-width: 981px) {
  #process .section-head.compact {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  #process .section-head.compact > div {
    width: min(100%, 980px) !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #process .section-head.compact h2 {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #about .split-grid > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  #about .split-grid > div:first-child .eyebrow,
  #about .split-grid > div:first-child h2 {
    width: min(100%, 980px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* 2026-03-11 verified hard centering override for PROCESS and ABOUT desktop slogans */
@media (min-width: 981px) {
  #process .section-head.compact,
  #about .split-grid > div:first-child {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(100%, 980px) !important;
    max-width: 980px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    justify-self: center !important;
    align-self: center !important;
  }

  #process .section-head.compact > div,
  #about .split-grid > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #process .section-head.compact .eyebrow,
  #process .section-head.compact h2,
  #about .split-grid > div:first-child .eyebrow,
  #about .split-grid > div:first-child h2 {
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #process .section-head.compact h2,
  #about .split-grid > div:first-child h2 {
    display: block !important;
  }
}


/* 2026-03-11 definitive desktop horizontal centering fix for PROCESS and ABOUT */
@media (min-width: 981px) {
  #process .section-head.compact,
  #about .split-grid > div:first-child {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  #process .section-head.compact > div,
  #about .split-grid > div:first-child {
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  #process .section-head.compact .eyebrow,
  #process .section-head.compact h2,
  #about .split-grid > div:first-child .eyebrow,
  #about .split-grid > div:first-child h2 {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}


/* 2026-03-11 process/about center alignment verified override */
#process .section-head.compact,
#process .section-head.compact > div,
#about .split-grid > div:first-child {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  justify-self: center !important;
  align-self: center !important;
}

#process .section-head.compact {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#process .section-head.compact > div,
#about .split-grid > div:first-child {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

#process .section-head.compact .eyebrow,
#process .section-head.compact h2,
#about .split-grid > div:first-child .eyebrow,
#about .split-grid > div:first-child h2 {
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#about .split-grid {
  justify-items: center !important;
}

#about .split-grid > div:first-child h2 {
  line-height: 1.7 !important;
}


/* 2026-03-12 clean desktop alignment sync: PROCESS and ABOUT follow SERVICES structure */
@media (min-width: 981px) {
  #process .container {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    overflow: visible !important;
  }

  #process .section-head.compact {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    text-align: initial !important;
  }

  #process .section-head.compact > div {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    max-width: none !important;
  }

  #process .section-head.compact .eyebrow {
    margin: 0 0 140px !important;
    text-align: center !important;
  }

  #process .section-head.compact h2 {
    margin: 0 auto !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
    max-width: 15ch !important;
  }

  #process .timeline {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
    width: 100% !important;
  }

  #about .split-grid {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    gap: 0 !important;
    overflow: visible !important;
    justify-items: stretch !important;
  }

  #about .split-grid > div:first-child {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    max-width: none !important;
    text-align: initial !important;
  }

  #about .split-grid > div:first-child .eyebrow {
    margin: 0 0 140px !important;
    text-align: center !important;
  }

  #about .split-grid > div:first-child h2 {
    margin: 0 auto !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
    max-width: 18ch !important;
  }

  #about .about-copy {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 auto !important;
    width: min(100%, 920px) !important;
    text-align: center !important;
    display: grid !important;
    gap: 14px !important;
  }

  #about .about-copy p {
    margin: 0 !important;
  }
}


/* 2026-03-12 FINAL CLEAN OVERRIDE: make PROCESS and ABOUT align like SERVICES */
@media (min-width: 981px) {
  #process .container {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    overflow: visible !important;
  }

  #process .section-head.compact {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    text-align: center !important;
  }

  #process .section-head.compact > div {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  #process .section-head.compact .eyebrow {
    display: block !important;
    width: 100% !important;
    margin: 0 0 140px !important;
    text-align: center !important;
  }

  #process .section-head.compact h2 {
    display: block !important;
    width: 100% !important;
    max-width: 15ch !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
  }

  #process .timeline {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
    transform: none !important;
  }

  #about .split-grid {
    min-height: min(88vh, 900px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  #about .split-grid > div:first-child {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    text-align: center !important;
  }

  #about .split-grid > div:first-child .eyebrow {
    display: block !important;
    width: 100% !important;
    margin: 0 0 140px !important;
    text-align: center !important;
  }

  #about .split-grid > div:first-child h2 {
    display: block !important;
    width: 100% !important;
    max-width: 18ch !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem) !important;
    line-height: 1.18 !important;
  }

  #about .about-copy {
    grid-row: 4 !important;
    align-self: end !important;
    margin: 0 auto !important;
    width: min(100%, 920px) !important;
    text-align: center !important;
    display: grid !important;
    gap: 14px !important;
  }

  #about .about-copy p {
    margin: 0 !important;
  }
}


/* 2026-03-12 desktop centering sync for PROCESS and ABOUT */
@media (min-width: 981px) {
  #process .container {
    min-height: min(88vh, 900px);
    display: grid;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
    align-items: stretch;
    overflow: visible;
  }

  #process .section-head.compact {
    grid-row: 2;
    align-self: center;
    justify-self: stretch;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  #process .section-head.compact > div {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  #process .section-head.compact .eyebrow {
    margin: 0 0 140px;
    text-align: center;
  }

  #process .section-head.compact h2 {
    margin: 0 auto;
    text-align: center;
    max-width: 15ch;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem);
    line-height: 1.18;
  }

  #process .timeline {
    grid-row: 4;
    align-self: end;
    margin: 0;
    width: 100%;
    transform: none;
  }

  #about .split-grid {
    min-height: min(88vh, 900px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
    align-items: stretch;
    justify-items: stretch;
    gap: 0;
    overflow: visible;
  }

  #about .split-grid > div:first-child {
    grid-row: 2;
    align-self: center;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  #about .split-grid > div:first-child .eyebrow {
    width: 100%;
    margin: 0 0 140px;
    text-align: center;
  }

  #about .split-grid > div:first-child h2 {
    width: 100%;
    max-width: 18ch;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(2.82rem, 4.92vw, 4.8rem);
    line-height: 1.18;
  }

  #about .about-copy {
    grid-row: 4;
    align-self: end;
    margin: 0 auto;
    width: min(100%, 920px);
    text-align: center;
    display: grid;
    gap: 14px;
  }
}


/* 2026-03-11 final desktop center sync for process/about */
@media (min-width: 981px) {
  #process > .container { min-height: min(88vh, 900px) !important; display:grid !important; grid-template-rows:minmax(24px,1fr) auto minmax(24px,1fr) auto !important; align-items:stretch !important; overflow:visible !important; }
  #process .section-head.compact { grid-row:2 !important; display:flex !important; flex-direction:column !important; align-items:center !important; justify-content:center !important; gap:0 !important; margin:0 !important; padding:0 !important; text-align:center !important; }
  #process .section-head.compact > div { display:flex !important; flex-direction:column !important; align-items:center !important; width:100% !important; max-width:none !important; margin:0 auto !important; text-align:center !important; }
  #process .section-head.compact .eyebrow { position:static !important; top:auto !important; margin:0 0 140px !important; transform:none !important; text-align:center !important; }
  #process .section-head.compact h2 { max-width:none !important; width:100% !important; white-space:nowrap !important; margin:0 auto !important; text-align:center !important; font-size:clamp(2.82rem,4.92vw,4.8rem) !important; line-height:1.18 !important; letter-spacing:-0.042em !important; font-weight:620 !important; }
  #process .timeline { grid-row:4 !important; align-self:end !important; margin:0 !important; width:100% !important; transform:none !important; }
  #about > .container.split-grid { min-height:min(88vh,900px) !important; display:grid !important; grid-template-columns:1fr !important; grid-template-rows:minmax(24px,1fr) auto minmax(24px,1fr) auto !important; align-items:stretch !important; justify-items:stretch !important; gap:0 !important; overflow:visible !important; }
  #about > .container.split-grid > div:first-child { grid-row:2 !important; display:flex !important; flex-direction:column !important; align-items:center !important; justify-content:center !important; width:100% !important; max-width:none !important; margin:0 auto !important; padding:0 !important; text-align:center !important; }
  #about > .container.split-grid > div:first-child .eyebrow { position:static !important; top:auto !important; margin:0 0 140px !important; transform:none !important; text-align:center !important; }
  #about > .container.split-grid > div:first-child h2 { width:100% !important; max-width:24ch !important; margin:0 auto !important; white-space:normal !important; text-align:center !important; font-size:clamp(2.82rem,4.92vw,4.8rem) !important; line-height:1.35 !important; letter-spacing:-0.042em !important; font-weight:620 !important; }
  #about > .container.split-grid > .about-copy { grid-row:4 !important; align-self:end !important; margin:0 auto !important; width:min(100%,920px) !important; display:grid !important; gap:14px !important; text-align:center !important; }
  #about > .container.split-grid > .about-copy p { margin:0 !important; text-align:center !important; }
}


/* Live / Event video: fit to height without zoom */
.live-visual {
  position: relative;
  background: #0b0f16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-visual video {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  display: block;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  transform: translateX(-50%);
}


/* Documentary card video */
.documentary-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: none;
}
.documentary-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 18%, rgba(10,16,28,0.10) 52%, rgba(10,16,28,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.documentary-video-wrap video { position: relative; z-index: 0; }


/* Documentary top corners rounded to match campaign card */
.documentary-video-wrap {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
}
.documentary-video-wrap video,
.documentary-video-wrap::before {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}


/* Campaign card video */
.campaign-video-wrap {
  position: relative;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
}
.campaign-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.campaign-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 20%, rgba(10,16,28,0.10) 56%, rgba(10,16,28,0.18) 100%);
  pointer-events: none;
  z-index: 1;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}


/* Commercial Film card video */
.cf-video-wrap {
  position: relative;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
}
.cf-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  transform: none;
}
.cf-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 20%, rgba(10,16,28,0.10) 56%, rgba(10,16,28,0.18) 100%);
  pointer-events: none;
  z-index: 1;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

/* CF video height-fit centered */
.cf-video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1624;
}
.cf-video-wrap video {
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 auto;
  object-fit: contain !important;
  object-position: center center !important;
}

/* 2026-03-23 glassmorphism refresh inspired by modern iOS UI */
:root {
  --glass-bg: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.07) 52%, rgba(255,255,255,0.04) 100%);
  --glass-stroke: rgba(255,255,255,0.22);
  --glass-stroke-soft: rgba(255,255,255,0.12);
  --glass-highlight: rgba(255,255,255,0.30);
  --glass-shadow: 0 18px 54px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.20), inset 0 -1px 0 rgba(255,255,255,0.04);
}

.hero-logo-panel,
.hero-card,
.work-card,
.service-card,
.timeline-item,
.cta-box,
.contact-card,
.nav-cta {
  position: relative;
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-stroke) !important;
  box-shadow: var(--glass-shadow) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.hero-logo-panel::before,
.hero-card::before,
.work-card::before,
.service-card::before,
.timeline-item::before,
.cta-box::before,
.contact-card::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 18%, rgba(255,255,255,0.02) 42%, rgba(255,255,255,0.01) 100%),
    radial-gradient(circle at top left, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 24%, rgba(255,255,255,0) 54%);
}

.hero-logo-panel::after,
.hero-card::after,
.service-card::after,
.timeline-item::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border-top: 1px solid rgba(255,255,255,0.22);
  opacity: 0.7;
}

.work-card {
  overflow: hidden;
}

.work-card::after,
.service-card .service-media::after,
.timeline-item::after,
.cta-box::after {
  content: "";
  position: absolute;
  inset: auto -12% 48% auto;
  width: 56%;
  height: 56%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 34%, rgba(255,255,255,0) 66%);
  filter: blur(8px);
}

.service-card,
.timeline-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)) !important;
}

.service-card h3,
.timeline-item strong,
.work-body h3,
.contact-card a,
.cta-box h2 {
  text-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.hero-meta li,
.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 30px rgba(0,0,0,0.20);
}

.site-header {
  background: linear-gradient(180deg, rgba(10,15,24,0.72), rgba(10,15,24,0.52)) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
}

.work-body,
.service-card,
.timeline-item,
.contact-card,
.cta-box {
  overflow: hidden;
}

@media (max-width: 760px) {
  .hero-logo-panel,
  .hero-card,
  .work-card,
  .service-card,
  .timeline-item,
  .cta-box,
  .contact-card,
  .nav-cta {
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }
}


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(14px);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 40px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  color: #05111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}
html[lang="en"] body {
  letter-spacing: -0.01em;
}
html[lang="en"] .hero h1,
html[lang="en"] .section h2 {
  letter-spacing: -0.035em;
}
html[lang="en"] .hero h1 { max-width: 16ch; white-space: normal; }
html[lang="en"] .section-head h2 { max-width: 18ch; }
html[lang="en"] #services .section-head.compact h2,
html[lang="en"] #process .section-head.compact h2 { max-width: 24ch; white-space: normal; }
html[lang="en"] #about > .container.split-grid > div:first-child h2 { max-width: 20ch; }
@media (max-width: 980px) {
  .lang-switch { order: 10; margin-top: 8px; }
  .nav { flex-wrap: wrap; justify-content: flex-end; }
}
@media (max-width: 768px) {
  .lang-switch {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }
  .nav.open .lang-switch { display: inline-flex; }
}

@media (max-width: 768px) {
  .nav .lang-switch,
  .nav.open .lang-switch {
    display: none !important;
  }
}


/* 2026-03-23 PC header restore */
.lang-switch-mobile { display: none !important; }

@media (max-width: 768px) {
  .lang-switch-mobile { display: inline-flex !important; }
}

.site-header .nav-cta {
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.site-header .nav-cta::before,
.site-header .nav-cta::after {
  content: none !important;
}

.site-header .nav-cta:hover {
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 30px rgba(0,0,0,0.20) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
  backdrop-filter: blur(18px) saturate(145%) !important;
}

@media (max-width: 768px) {
  .site-header .nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 30px rgba(0,0,0,0.20) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    color: var(--text);
  }
}


/* 2026-03-23 mobile header swap + remove mobile contact pill */
@media (max-width: 768px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-actions .lang-switch-mobile { order: 1; }
  .header-actions .menu-toggle { order: 2; }

  .site-header .nav-cta,
  .site-header .nav-cta:hover,
  .site-header .nav-cta:focus-visible {
    padding: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    color: var(--muted) !important;
  }
  .site-header .nav-cta::before,
  .site-header .nav-cta::after {
    content: none !important;
  }
  .nav a:hover,
  .site-header .nav-cta:hover {
    color: var(--text) !important;
    opacity: 1;
  }
}

/* 2026-03-23 PC nav hover pill for all menu items */
@media (min-width: 769px) {
  .site-header .nav a,
  .site-header .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--muted);
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transition:
      color 0.2s ease,
      border-color 0.25s ease,
      background 0.25s ease,
      box-shadow 0.25s ease,
      -webkit-backdrop-filter 0.25s ease,
      backdrop-filter 0.25s ease;
  }

  .site-header .nav a::before,
  .site-header .nav a::after,
  .site-header .nav-cta::before,
  .site-header .nav-cta::after {
    content: none !important;
  }

  .site-header .nav a:hover,
  .site-header .nav a:focus-visible,
  .site-header .nav-cta:hover,
  .site-header .nav-cta:focus-visible {
    color: var(--text) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 30px rgba(0,0,0,0.20) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    opacity: 1;
  }
}


/* 2026-03-23 process box size refinement on desktop */
@media (min-width: 981px) {
  #process .timeline {
    align-items: stretch;
  }

  #process .timeline-item {
    min-height: auto !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #process .timeline-item strong {
    margin-bottom: 6px !important;
    line-height: 1.5 !important;
    font-size: 0.96rem !important;
  }

  #process .timeline-item p {
    line-height: 1.5 !important;
    font-size: 0.9rem !important;
  }
}


.weather-widget {
  width: min(100%, 420px);
  margin: 0 0 26px;
  padding: 16px 18px 17px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)),
    linear-gradient(180deg, rgba(8,14,24,0.62), rgba(8,14,24,0.34));
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.weather-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.weather-location,
.weather-time,
.weather-temp,
.weather-summary,
.weather-greeting { margin: 0; }
.weather-location {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.012em;
}
.weather-time {
  font-size: 0.84rem;
  color: rgba(229,238,255,0.68);
}
.weather-main {
  display: flex;
  align-items: center;
  gap: 14px;
}
.weather-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 58px;
}
.weather-meta { min-width: 0; }
.weather-temp {
  font-family: "SUIT", "Pretendard", "Instrument Sans", sans-serif;
  font-size: clamp(1.75rem, 2.3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 640;
}
.weather-summary {
  margin-top: 5px;
  font-size: 0.94rem;
  color: rgba(229,238,255,0.82);
  line-height: 1.45;
  letter-spacing: -0.012em;
}
.weather-greeting {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(245,249,255,0.9);
  line-height: 1.55;
  letter-spacing: -0.014em;
}
@media (max-width: 900px) {
  .weather-widget {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }
}


/* 2페이지 슬로건 확대 및 줄바꿈 */
.work-section .section-head h2 {
  font-size: clamp(1.98rem, 3.24vw, 2.94rem);
  line-height: 1.18;
  max-width: 12ch;
}


/* 2026-03-23 reduce slogan size for pages 3, 4, 5 */
@media (min-width: 981px) {
  #services .section-head.compact h2,
  #process .section-head.compact h2 {
    font-size: clamp(2.4rem, 4.18vw, 4.08rem) !important;
  }
  #about > .container.split-grid > div:first-child h2 {
    font-size: clamp(2.4rem, 4.18vw, 4.08rem) !important;
  }
}
@media (max-width: 980px) {
  #services .section-head.compact h2,
  #process .section-head.compact h2,
  #about > .container.split-grid > div:first-child h2 {
    font-size: 85% !important;
  }
}

/* 2026-03-23 mobile slogan size boost for pages 3,4,5 */
@media (max-width: 980px) {
  #services .section-head.compact h2,
  #process .section-head.compact h2,
  #about h2 {
    font-size: clamp(1.92rem, 7.2vw, 2.45rem) !important;
    line-height: 1.24 !important;
    letter-spacing: -0.03em;
  }
}

/* 2026-03-23 mobile ABOUT slogan size match PROCESS */
@media (max-width: 980px) {
  #about > .container.split-grid > div:first-child h2 {
    font-size: clamp(1.92rem, 7.2vw, 2.45rem) !important;
    line-height: 1.24 !important;
    letter-spacing: -0.03em !important;
    font-weight: 620 !important;
    max-width: 18ch !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}
