@charset "UTF-8";
/* ============================================================
   DINETT Co., Ltd. — Design System 2026
   Concept : WSP-inspired Black & White Minimal Modernism
   Author  : DINETT Digital Renewal Project
   ============================================================ */

/* ---------- 1. Fonts ---------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Core palette (per master plan) */
  --c-black:        #121212;   /* Deep Obsidian  */
  --c-white:        #FFFFFF;   /* Clean Pure White */
  --c-gray-bg:      #F8F9FA;   /* Soft Neutral Gray */
  --c-text:         #222222;   /* Charcoal Dark */
  --c-muted:        #666666;   /* Slate Gray */
  --c-line:         #E5E7EB;   /* Light Divider */

  /* Derived neutrals */
  --c-black-90:     rgba(18, 18, 18, .90);
  --c-black-70:     rgba(18, 18, 18, .70);
  --c-black-08:     rgba(18, 18, 18, .08);
  --c-white-70:     rgba(255, 255, 255, .70);
  --c-white-45:     rgba(255, 255, 255, .45);
  --c-white-12:     rgba(255, 255, 255, .12);
  --c-line-dark:    rgba(255, 255, 255, .16);

  /* Single accent — used sparingly for focus/active only */
  --c-accent:       #C8102E;

  /* Typography */
  --ff-base: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
             "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
  --ff-en:   "Helvetica Neue", Arial, var(--ff-base);

  --fs-display: clamp(2.75rem, 7.2vw, 6.25rem);
  --fs-h1:      clamp(2.125rem, 4.6vw, 3.75rem);
  --fs-h2:      clamp(1.75rem, 3.2vw, 2.75rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.625rem);
  --fs-h4:      clamp(1.0625rem, 1.4vw, 1.1875rem);
  --fs-body:    clamp(0.9375rem, 1.05vw, 1.0625rem);
  --fs-sm:      0.875rem;
  --fs-xs:      0.78125rem;

  /* Layout */
  --wrap:       1360px;
  --wrap-narrow: 880px;
  --gutter:     clamp(20px, 5vw, 64px);
  --sec-y:      clamp(64px, 8.5vw, 140px);
  --header-h:   84px;
  --header-h-sm: 64px;

  /* Motion */
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, .05, .36, 1);
  --dur:        .55s;

  --radius:     2px;
  --shadow-md:  0 10px 30px rgba(18, 18, 18, .08);
  --shadow-lg:  0 24px 60px rgba(18, 18, 18, .14);
}

/* ---------- 3. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-white);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.22; letter-spacing: -0.03em; color: var(--c-black); }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

/* ---------- 4. Layout Helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(48px, 5vw, 84px); }
.section--gray { background: var(--c-gray-bg); }
.section--dark { background: var(--c-black); color: var(--c-white-70); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }
.section--dark .sec-head__eyebrow { color: var(--c-white-45); }
.section--dark .sec-head__eyebrow::before { background: var(--c-white-45); }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.only-desktop { display: block; }
.only-mobile  { display: none; }
@media (max-width: 1080px) { .only-desktop { display: none; } .only-mobile { display: block; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 5. Typography Utilities ---------- */
.eyebrow {
  font-family: var(--ff-en);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.045em; font-weight: 800; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.lead { font-size: clamp(1rem, 1.35vw, 1.1875rem); color: var(--c-muted); line-height: 1.85; }
.muted { color: var(--c-muted); }
.text-balance { text-wrap: balance; }

.sec-head { margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--c-muted);
  margin-bottom: 18px;
}
.sec-head__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--c-muted); }
.sec-head__title { font-size: var(--fs-h2); max-width: 22ch; }
.sec-head__desc { margin-top: 18px; max-width: 62ch; color: var(--c-muted); }
.sec-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--c-black); --btn-fg: var(--c-white); --btn-bd: var(--c-black);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 30px; min-height: 54px;
  font-size: .9375rem; font-weight: 700; letter-spacing: -0.01em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--c-white); transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.btn:hover::after { transform: scaleY(1); }
.btn:hover { color: var(--c-black); }
.btn__arrow { transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-black); --btn-bd: var(--c-black); }
.btn--ghost::after { background: var(--c-black); }
.btn--ghost:hover { color: var(--c-white); }

.btn--light { --btn-bg: transparent; --btn-fg: var(--c-white); --btn-bd: rgba(255,255,255,.55); }
.btn--light::after { background: var(--c-white); }
.btn--light:hover { color: var(--c-black); border-color: var(--c-white); }

.btn--solid-light { --btn-bg: var(--c-white); --btn-fg: var(--c-black); --btn-bd: var(--c-white); }
.btn--solid-light::after { background: transparent; }
.btn--solid-light:hover { background: transparent; color: var(--c-white); border-color: var(--c-white); }

.btn--sm { padding: 11px 20px; min-height: 44px; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .9375rem;
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
  transition: gap .35s var(--ease), opacity .3s;
}
.link-arrow:hover { gap: 16px; }

/* ---------- 7. Header / GNB ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .4s var(--ease), height .4s var(--ease);
}
.header.is-solid { box-shadow: 0 2px 18px rgba(18, 18, 18, .06); }
.header__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Brand logo (image) */
.header__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.header__logo { display: block; }
.header__logo img {
  height: 38px; width: auto; display: block;
  transition: height .4s var(--ease);
}
.header.is-solid .header__logo img { height: 32px; }
.header__divider { width: 1px; height: 22px; background: var(--c-line); flex: none; }
.header__tagline {
  font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: -0.01em; white-space: nowrap;
}
@media (max-width: 900px) { .header__tagline, .header__divider { display: none; } }
@media (max-width: 1080px) {
  .header__logo img, .header.is-solid .header__logo img { height: 28px; }
}

.header__actions { display: flex; align-items: center; gap: 14px; }
.header.is-hidden { transform: translateY(-100%); transition: transform .45s var(--ease); }
/* Mobile: header height must match .drawer offset (--header-h-sm) */
@media (max-width: 1080px) {
  .header, .header.is-solid { height: var(--header-h-sm); }
  .subhero { padding-top: calc(var(--header-h-sm) + clamp(40px, 7vw, 96px)); }
  .hero { padding-top: var(--header-h-sm); }
}

/* Desktop nav */
.gnb { display: flex; align-items: center; gap: clamp(8px, 2vw, 26px); height: 100%; }
.gnb__item { height: 100%; display: flex; align-items: center; }
.gnb__link {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  height: 100%; padding-inline: 6px;
  font-size: .9375rem; font-weight: 700; letter-spacing: -0.015em;
  color: var(--c-black);
}
.gnb__link::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 22px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.gnb__item:hover .gnb__link::after,
.gnb__item.is-current .gnb__link::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 1080px) { .gnb, .header__actions .btn { display: none; } }

/* Mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--c-white); border-top: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  pointer-events: none;
}
.gnb__item:hover .mega, .gnb__item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega__inner { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 80px); padding-block: 48px 54px; }
.mega__aside .mega__label { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted); }
.mega__aside h3 { font-size: 1.5rem; margin-top: 12px; }
.mega__aside p { margin-top: 14px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.7; }
.mega__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 28px; align-content: start; }
.mega__link {
  display: block; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--c-line);
  transition: padding-left .35s var(--ease), background-color .35s var(--ease);
}
.mega__link:hover { padding-left: 14px; background: var(--c-gray-bg); }
.mega__link strong { display: block; font-size: .9375rem; font-weight: 700; }
.mega__link span { display: block; margin-top: 3px; font-family: var(--ff-en); font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: .04em; }

/* Hamburger */
.burger {
  display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
  border: 1px solid var(--c-line); border-radius: var(--radius);
}
@media (max-width: 1080px) { .burger { display: inline-flex; } }
.burger__box { position: relative; width: 20px; height: 14px; }
.burger__box span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--c-black);
  transition: transform .4s var(--ease), opacity .25s;
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 6px; }
.burger__box span:nth-child(3) { top: 12px; }
.header.is-menu-open .burger__box span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header.is-menu-open .burger__box span:nth-child(2) { opacity: 0; }
.header.is-menu-open .burger__box span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 8. Mobile Drawer ---------- */
.drawer {
  position: fixed; inset: var(--header-h-sm) 0 0 0; z-index: 880;
  background: var(--c-white); overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(100%); visibility: hidden;
  transition: transform .5s var(--ease), visibility .5s;
  padding-bottom: 120px;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
@media (min-width: 1081px) { .drawer { display: none; } }

.drawer__group { border-bottom: 1px solid var(--c-line); }
.drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px var(--gutter); text-align: left;
  font-size: 1.125rem; font-weight: 800; letter-spacing: -0.025em; color: var(--c-black);
}
.drawer__toggle small { display: block; margin-top: 3px; font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 600; color: var(--c-muted); letter-spacing: .12em; text-transform: uppercase; }
.drawer__chev { flex: none; transition: transform .4s var(--ease); }
.drawer__toggle[aria-expanded="true"] .drawer__chev { transform: rotate(180deg); }
.drawer__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.drawer__panel > div { overflow: hidden; }
.drawer__group.is-open .drawer__panel { grid-template-rows: 1fr; }
.drawer__sub a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px var(--gutter); background: var(--c-gray-bg);
  border-top: 1px solid var(--c-line); font-size: .9375rem; font-weight: 600;
}
.drawer__sub a span { font-family: var(--ff-en); font-size: var(--fs-xs); color: var(--c-muted); }
.drawer__cta { padding: 28px var(--gutter); display: grid; gap: 12px; }
.drawer__cta .btn { width: 100%; }
.drawer__meta { padding: 0 var(--gutter) 40px; font-size: var(--fs-sm); color: var(--c-muted); }
.drawer__meta a { display: block; padding: 4px 0; }

/* Mobile sticky bottom CTA (finger zone) */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 870;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--c-line); border-top: 1px solid var(--c-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 1080px) { .mobile-cta { display: grid; } }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 58px; font-size: .9375rem; font-weight: 700;
  background: var(--c-white); color: var(--c-black);
}
.mobile-cta a.is-primary { background: var(--c-black); color: var(--c-white); }

/* ---------- 9. Hero (Main) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  background: var(--c-black); color: var(--c-white); overflow: hidden;
  padding-top: var(--header-h); padding-bottom: clamp(48px, 7vw, 96px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(48% 44% at 78% 22%, rgba(255,255,255,.14) 0%, transparent 62%),
    radial-gradient(38% 40% at 18% 78%, rgba(255,255,255,.09) 0%, transparent 60%),
    radial-gradient(60% 50% at 50% 110%, rgba(255,255,255,.06) 0%, transparent 60%);
  animation: heroDrift 22s var(--ease-in-out) infinite alternate;
}
@keyframes heroDrift { from { transform: translate3d(-2%, 1%, 0) scale(1); } to { transform: translate3d(3%, -2%, 0) scale(1.08); } }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 120px) clamp(60px, 8vw, 120px);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 25%, transparent 78%);
}
.hero__wave { position: absolute; inset: auto 0 0 0; height: 55%; opacity: .5; }
.hero__wave path { fill: none; stroke: rgba(255,255,255,.20); stroke-width: 1; }
.hero__vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,18,.55) 0%, transparent 35%, rgba(18,18,18,.72) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--c-white-45); margin-bottom: clamp(20px, 3vw, 34px); }
.hero__eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; }
.hero__title { color: var(--c-white); max-width: 17ch; }
.hero__title .accent { display: block; color: var(--c-white-45); }
.hero__desc { margin-top: clamp(22px, 3vw, 34px); max-width: 56ch; color: var(--c-white-70); font-size: clamp(1rem, 1.35vw, 1.1875rem); line-height: 1.85; }
.hero__actions { margin-top: clamp(30px, 4vw, 46px); }
.hero__stats {
  margin-top: clamp(46px, 6vw, 82px); padding-top: 28px;
  border-top: 1px solid var(--c-line-dark);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }
.hero__stat b { display: block; font-family: var(--ff-en); font-size: clamp(1.75rem, 3.4vw, 2.75rem); font-weight: 800; letter-spacing: -0.04em; color: var(--c-white); line-height: 1; }
.hero__stat span { display: block; margin-top: 9px; font-size: var(--fs-xs); color: var(--c-white-45); letter-spacing: .04em; }
.hero__scroll { position: absolute; right: var(--gutter); bottom: clamp(48px, 7vw, 96px); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; font-family: var(--ff-en); font-size: 10px; letter-spacing: .2em; color: var(--c-white-45); writing-mode: vertical-rl; }
@media (max-width: 1080px) { .hero__scroll { display: none; } }
.hero__scroll::after { content: ""; width: 1px; height: 52px; background: linear-gradient(to bottom, var(--c-white-45), transparent); animation: scrollPulse 2.2s var(--ease-in-out) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 10. Sub Page Hero ---------- */
.subhero {
  position: relative; background: var(--c-black); color: var(--c-white);
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.subhero__bg { position: absolute; inset: 0; z-index: 0; }
.subhero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(105deg, transparent 8%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(105deg, transparent 8%, #000 55%, transparent 100%);
}
.subhero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(52% 60% at 82% 18%, rgba(255,255,255,.13), transparent 62%);
}
.subhero__inner { position: relative; z-index: 2; }
.subhero__eyebrow { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--c-white-45); }
.subhero__title { margin-top: 16px; font-size: var(--fs-h1); color: var(--c-white); max-width: 20ch; }
.subhero__desc { margin-top: 22px; max-width: 68ch; color: var(--c-white-70); line-height: 1.85; }
.subhero__tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.subhero__tags li {
  padding: 8px 15px; border: 1px solid var(--c-line-dark); border-radius: 100px;
  font-size: var(--fs-xs); color: var(--c-white-70); letter-spacing: -0.01em;
}

/* Breadcrumb */
.breadcrumb { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: var(--fs-xs); color: var(--c-white-45); margin-bottom: 26px; }
.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb li:not(:last-child)::after { content: "/"; opacity: .5; }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb [aria-current] { color: var(--c-white); }

/* ---------- 11. Cards ---------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: clamp(26px, 2.6vw, 38px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-black-08); }
.card__num { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .18em; color: var(--c-muted); }
.card__icon { width: 44px; height: 44px; margin-bottom: 22px; color: var(--c-black); }
.card__title { font-size: var(--fs-h4); margin-top: 14px; }
.card__desc { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.78; flex: 1; }
.card__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.card__tags li { font-size: var(--fs-xs); color: var(--c-muted); background: var(--c-gray-bg); border: 1px solid var(--c-line); padding: 5px 11px; border-radius: 100px; }
.card__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--c-line); font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: .04em; }

/* Service tile (What We Do grid — hover invert) */
.tile {
  position: relative; display: block; overflow: hidden; isolation: isolate;
  border: 1px solid var(--c-line); background: var(--c-white);
  padding: clamp(30px, 3vw, 46px);
  min-height: clamp(230px, 22vw, 300px);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--c-black);
  transform: translateY(101%); transition: transform .6s var(--ease);
}
.tile:hover { color: var(--c-white); border-color: var(--c-black); }
.tile:hover::before { transform: translateY(0); }
.tile:hover .tile__title, .tile:hover .tile__no, .tile:hover .tile__en { color: inherit; }
.tile:hover .tile__desc { color: var(--c-white-70); }
.tile:hover .tile__icon { color: var(--c-white); }
.tile__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.tile__no { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .2em; color: var(--c-muted); transition: color .4s var(--ease); }
.tile__icon { width: 40px; height: 40px; color: var(--c-black); transition: color .4s var(--ease), transform .5s var(--ease); }
.tile:hover .tile__icon { transform: translateY(-4px); }
.tile__body { margin-top: auto; padding-top: 32px; }
.tile__en { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); transition: color .4s var(--ease); }
.tile__title { margin-top: 8px; font-size: clamp(1.1875rem, 1.7vw, 1.5rem); transition: color .4s var(--ease); }
.tile__desc { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.72; transition: color .4s var(--ease); }
.tile__go { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; transition: gap .4s var(--ease); }
.tile:hover .tile__go { gap: 15px; }

/* Insight cards */
.insight-feature {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--c-line); overflow: hidden;
}
@media (max-width: 900px) { .insight-feature { grid-template-columns: 1fr; } }
.insight-feature__visual { position: relative; min-height: 340px; background: var(--c-black); overflow: hidden; }
.insight-feature__visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.07) 0 2px, transparent 2px 16px),
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.18), transparent 65%);
}
.insight-feature__body { padding: clamp(30px, 3.4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.insight-feature__title { font-size: clamp(1.375rem, 2.2vw, 1.875rem); margin-top: 16px; }

.insight-card { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--c-line); transition: padding-left .4s var(--ease); }
.insight-card:hover { padding-left: 12px; }
.insight-card__thumb { flex: none; width: 108px; height: 78px; background: var(--c-black); position: relative; overflow: hidden; }
.insight-card__thumb::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px); }
.insight-card__title { font-size: 1.0625rem; margin-top: 8px; line-height: 1.5; }
.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: var(--fs-xs); color: var(--c-muted); }
.meta__tag { font-family: var(--ff-en); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-black); }
.meta__dot::before { content: "•"; margin-right: 10px; opacity: .5; }

/* ---------- 12. Metrics (dark) ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--c-line-dark); border: 1px solid var(--c-line-dark); }
@media (max-width: 860px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric { background: var(--c-black); padding: clamp(28px, 3vw, 46px); }
.metric__value { font-family: var(--ff-en); font-size: clamp(2.25rem, 4.4vw, 3.75rem); font-weight: 800; letter-spacing: -0.05em; color: var(--c-white); line-height: 1; }
.metric__value sup { font-size: .42em; vertical-align: super; margin-left: 3px; letter-spacing: 0; }
.metric__label { margin-top: 16px; font-size: var(--fs-sm); color: var(--c-white-45); line-height: 1.6; }

/* ---------- 13. Tabs / Filters ---------- */
.tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 2px; border-bottom: 1px solid var(--c-line); }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; position: relative; padding: 15px 20px;
  font-size: .9375rem; font-weight: 700; color: var(--c-muted); white-space: nowrap;
  transition: color .35s var(--ease);
}
.tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--c-black); transform: scaleX(0); transition: transform .4s var(--ease); }
.tab.is-active { color: var(--c-black); }
.tab.is-active::after { transform: scaleX(1); }
.tabpanel[hidden] { display: none; }

/* Sub navigation (sticky, sub pages) */
.subnav { position: sticky; top: 72px; z-index: 500; background: var(--c-white); border-bottom: 1px solid var(--c-line); }
@media (max-width: 1080px) { .subnav { top: var(--header-h-sm); } }
.subnav__inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 18px 18px; font-size: .9375rem; font-weight: 700; color: var(--c-muted); border-bottom: 2px solid transparent; transition: color .3s, border-color .3s; }
.subnav a:hover { color: var(--c-black); }
.subnav a[aria-current="page"] { color: var(--c-black); border-bottom-color: var(--c-black); }

/* ---------- 14. Accordion ---------- */
.acc { border-top: 1px solid var(--c-line); }
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; text-align: left; font-size: var(--fs-h4); font-weight: 700; color: var(--c-black);
}
.acc__btn .acc__ic { flex: none; position: relative; width: 20px; height: 20px; }
.acc__btn .acc__ic::before, .acc__btn .acc__ic::after { content: ""; position: absolute; background: var(--c-black); transition: transform .4s var(--ease); }
.acc__btn .acc__ic::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc__btn .acc__ic::after { left: 9px; top: 0; width: 2px; height: 20px; }
.acc__btn[aria-expanded="true"] .acc__ic::after { transform: scaleY(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__panel > div { overflow: hidden; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__body { padding-bottom: 28px; color: var(--c-muted); font-size: var(--fs-sm); line-height: 1.85; }
.acc__body ul { display: grid; gap: 8px; margin-top: 12px; }
.acc__body li { padding-left: 20px; position: relative; }
.acc__body li::before { content: ""; position: absolute; left: 4px; top: .72em; width: 6px; height: 1px; background: var(--c-muted); }

/* ---------- 15. Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--c-line); }
.timeline__item { position: relative; padding-bottom: 44px; }
.timeline__item::before { content: ""; position: absolute; left: -34px; top: 9px; width: 11px; height: 11px; border-radius: 50%; background: var(--c-white); border: 2px solid var(--c-black); }
.timeline__year { font-family: var(--ff-en); font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em; color: var(--c-black); }
.timeline__list { margin-top: 12px; display: grid; gap: 8px; }
.timeline__list li { display: flex; gap: 14px; font-size: var(--fs-sm); color: var(--c-muted); }
.timeline__list li b { flex: none; width: 44px; font-family: var(--ff-en); font-weight: 700; color: var(--c-text); }

/* ---------- 16. Forms ---------- */
.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 9px; }
.field__label { font-size: var(--fs-sm); font-weight: 700; color: var(--c-black); }
.field__label .req { color: var(--c-accent); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 16px; background: var(--c-white);
  border: 1px solid var(--c-line); border-radius: var(--radius);
  font-size: .9375rem; transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-black); box-shadow: 0 0 0 3px rgba(18,18,18,.06);
}
.field__help { font-size: var(--fs-xs); color: var(--c-muted); }
.checkline { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-sm); color: var(--c-muted); }
.checkline input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--c-black); }

/* Step indicator */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); margin-bottom: 40px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--c-white); padding: 22px 24px; }
.step.is-active { background: var(--c-black); color: var(--c-white); }
.step.is-active .step__no, .step.is-active .step__name { color: var(--c-white); }
.step__no { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .2em; color: var(--c-muted); }
.step__name { margin-top: 8px; font-size: var(--fs-h4); font-weight: 700; color: var(--c-black); }
.step__desc { margin-top: 6px; font-size: var(--fs-xs); color: var(--c-muted); }
.step.is-active .step__desc { color: var(--c-white-45); }

/* ---------- 17. CTA Band ---------- */
.cta-band { position: relative; background: var(--c-black); color: var(--c-white); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 110px 100%;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 64px); flex-wrap: wrap; padding-block: clamp(56px, 7vw, 110px); }
.cta-band__title { font-size: var(--fs-h2); color: var(--c-white); max-width: 20ch; }
.cta-band__desc { margin-top: 16px; max-width: 52ch; color: var(--c-white-70); }

/* Contact quick strip */
.quick-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 860px) { .quick-contact { grid-template-columns: 1fr; } }
.quick-contact__item { background: var(--c-white); padding: clamp(26px, 3vw, 40px); }
.quick-contact__item strong { display: block; font-size: var(--fs-h4); }
.quick-contact__item p { margin-top: 8px; font-size: var(--fs-sm); color: var(--c-muted); }
.quick-contact__item a { margin-top: 16px; display: inline-flex; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--c-black); color: var(--c-white-70); padding-block: clamp(56px, 6vw, 88px) 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(32px, 4vw, 56px); padding-bottom: clamp(40px, 5vw, 68px); border-bottom: 1px solid var(--c-line-dark); }
@media (max-width: 1024px) { .footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .footer__top { grid-template-columns: 1fr; } }
.footer__logo { display: inline-block; background: var(--c-white); padding: 11px 15px; border-radius: var(--radius); line-height: 0; }
.footer__logo img { height: 34px; width: auto; display: block; }
@media (max-width: 640px) { .footer__logo img { height: 28px; } }
.footer__brandtext { margin-top: 18px; max-width: 40ch; font-size: var(--fs-sm); line-height: 1.85; color: var(--c-white-45); }
.footer__badge { margin-top: 22px; display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border: 1px solid var(--c-line-dark); border-radius: 100px; font-size: var(--fs-xs); color: var(--c-white-70); }
.footer__col h4 { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-white); margin-bottom: 20px; }
.footer__col li + li { margin-top: 11px; }
.footer__col a { font-size: var(--fs-sm); color: var(--c-white-45); transition: color .3s; }
.footer__col a:hover { color: var(--c-white); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-block: 28px 34px; font-size: var(--fs-xs); color: var(--c-white-45); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a:hover { color: var(--c-white); }
@media (max-width: 1080px) { .footer__bottom { padding-bottom: 90px; } }

/* ---------- 19. Misc Components ---------- */
.divider { height: 1px; background: var(--c-line); border: 0; margin-block: clamp(40px, 5vw, 72px); }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li { padding: 8px 15px; border: 1px solid var(--c-line); border-radius: 100px; font-size: var(--fs-xs); color: var(--c-muted); background: var(--c-white); }
.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; font-size: var(--fs-sm); color: var(--c-text); line-height: 1.7; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 17px; height: 17px;
  border: 1px solid var(--c-black); border-radius: 50%;
  background: no-repeat center/9px 7px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 7'%3E%3Cpath d='M1 3.4L3.4 5.8 8 1.2' fill='none' stroke='%23121212' stroke-width='1.6'/%3E%3C/svg%3E");
}
.note { padding: clamp(22px, 2.4vw, 32px); background: var(--c-gray-bg); border-left: 2px solid var(--c-black); font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.85; }
.table-basic th, .table-basic td { padding: 16px 18px; border-bottom: 1px solid var(--c-line); text-align: left; font-size: var(--fs-sm); vertical-align: top; }
.table-basic thead th { background: var(--c-gray-bg); font-weight: 700; color: var(--c-black); border-bottom-color: var(--c-black); }
.table-basic td { color: var(--c-muted); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 620px; }

.stat-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 720px) { .stat-inline { grid-template-columns: 1fr; } }
.stat-inline > div { background: var(--c-white); padding: clamp(24px, 2.6vw, 36px); }
.stat-inline b { display: block; font-family: var(--ff-en); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.04em; color: var(--c-black); line-height: 1; }
.stat-inline span { display: block; margin-top: 12px; font-size: var(--fs-sm); color: var(--c-muted); }

/* Person card */
.person { border: 1px solid var(--c-line); background: var(--c-white); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.person__visual { aspect-ratio: 4/3; background: var(--c-black); position: relative; }
.person__visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(52% 58% at 50% 34%, rgba(255,255,255,.20), transparent 68%), repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 14px); }
.person__initial { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--ff-en); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,.28); letter-spacing: .04em; z-index: 1; }
.person__body { padding: 26px; flex: 1; }
.person__role { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); }
.person__name { margin-top: 10px; font-size: var(--fs-h4); }
.person__desc { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.75; }

/* Article body */
.article { max-width: 760px; margin-inline: auto; }
.article p { margin-block: 1.5em; line-height: 1.95; }
.article h2 { font-size: var(--fs-h3); margin-top: 2.4em; margin-bottom: .8em; }
.article h3 { font-size: var(--fs-h4); margin-top: 2em; margin-bottom: .6em; }
.article ul { margin-block: 1.4em; display: grid; gap: 10px; }
.article li { position: relative; padding-left: 22px; color: var(--c-muted); }
.article li::before { content: ""; position: absolute; left: 4px; top: .78em; width: 7px; height: 1px; background: var(--c-black); }
.article figure { margin-block: 2.4em; }
.article figcaption { margin-top: 12px; font-size: var(--fs-xs); color: var(--c-muted); }

/* Downloads */
.dl-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--c-line); }
.dl-item__meta { font-size: var(--fs-xs); color: var(--c-muted); margin-top: 6px; }
.dl-item strong { font-size: var(--fs-h4); }

/* ---------- 20. Scroll Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* Progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--c-accent); z-index: 999; transition: width .12s linear; }

/* Back to top */
.to-top {
  position: fixed; right: var(--gutter); bottom: 34px; z-index: 860;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--c-black); color: var(--c-white); border-radius: 50%;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 1080px) { .to-top { bottom: 76px; right: 16px; width: 44px; height: 44px; } }

/* ---------- 21. Form States & Result Banner ---------- */
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .08);
}
.checkline input.is-invalid { outline: 2px solid var(--c-accent); outline-offset: 2px; }

.form__msg { margin: 4px 0 0; font-size: .875rem; font-weight: 700; color: var(--c-black); }
.form__msg.is-error { color: var(--c-accent); }

/* Honeypot — 사람에게 보이지 않는 스팸 방지 필드 */
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* 전송 결과 배너 */
.form-result {
  position: relative; z-index: 10;
  margin-top: var(--header-h);
  background: var(--c-black); color: var(--c-white);
  border-bottom: 3px solid var(--c-white);
}
@media (max-width: 1080px) { .form-result { margin-top: var(--header-h-sm); } }
.form-result.is-error { border-bottom-color: var(--c-accent); }
.form-result__inner { position: relative; padding-block: clamp(24px, 3vw, 38px); padding-right: 56px; }
.form-result strong { display: block; font-size: var(--fs-h4); color: var(--c-white); }
.form-result p { margin-top: 8px; font-size: var(--fs-sm); color: var(--c-white-70); }
.form-result__close {
  position: absolute; top: 50%; right: var(--gutter); transform: translateY(-50%);
  width: 36px; height: 36px; font-size: 22px; line-height: 1;
  color: var(--c-white-70); border: 1px solid var(--c-line-dark); border-radius: 50%;
  transition: color .3s, border-color .3s;
}
.form-result__close:hover { color: var(--c-white); border-color: var(--c-white); }

/* ---------- 22. CTA Contact Strip ---------- */
.cta-band__contact {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--c-line-dark);
  border: 1px solid var(--c-line-dark);
  margin-top: clamp(28px, 3.4vw, 44px);
  width: 100%;
}
@media (max-width: 640px) { .cta-band__contact { grid-template-columns: 1fr; } }
.cta-contact {
  display: flex; align-items: center; gap: 18px;
  background: var(--c-black); padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.6vw, 32px);
  transition: background-color .4s var(--ease);
}
.cta-contact:hover { background: #1c1c1c; }
.cta-contact__ic {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--c-line-dark); border-radius: 50%; color: var(--c-white);
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.cta-contact:hover .cta-contact__ic { background: var(--c-white); color: var(--c-black); }
.cta-contact__label {
  display: block; font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-white-45);
}
.cta-contact__value {
  display: block; margin-top: 6px; font-size: clamp(1.125rem, 1.9vw, 1.5rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--c-white); word-break: break-all;
}
.cta-contact__note { display: block; margin-top: 5px; font-size: var(--fs-xs); color: var(--c-white-45); }

/* CTA band 내부 정렬 보정 (연락처 스트립이 있을 때) */
.cta-band__inner.has-contact { display: block; }
.cta-band__inner.has-contact .cta-band__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(28px, 4vw, 64px); flex-wrap: wrap;
}

/* ---------- 23. Service Catalog (사업분야 상세 페이지 공용) ---------- */
.cat-index {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--c-line); border: 1px solid var(--c-line);
}
@media (max-width: 860px) { .cat-index { grid-template-columns: 1fr; } }
.cat-index__item {
  background: var(--c-white); padding: clamp(24px, 2.8vw, 36px);
  display: flex; flex-direction: column; gap: 10px;
  transition: background-color .4s var(--ease);
}
.cat-index__item:hover { background: var(--c-gray-bg); }
.cat-index__no {
  font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .2em; color: var(--c-muted);
}
.cat-index__name { font-size: var(--fs-h4); font-weight: 700; color: var(--c-black); }
.cat-index__meta { font-size: var(--fs-xs); color: var(--c-muted); margin-top: auto; padding-top: 12px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--c-white); padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column;
  transition: background-color .45s var(--ease);
}
.svc:hover { background: var(--c-gray-bg); }
.svc--wide { grid-column: span 2; }
@media (max-width: 700px) { .svc--wide { grid-column: span 1; } }
.svc__head { display: flex; align-items: baseline; gap: 12px; }
.svc__no {
  font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; color: var(--c-muted); flex: none;
}
.svc__title { font-size: 1.0625rem; font-weight: 700; color: var(--c-black); line-height: 1.4; }
.svc__en { display: block; margin-top: 4px; font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; color: var(--c-muted); text-transform: uppercase; }
.svc__desc { margin-top: 14px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.75; flex: 1; }
.svc__sub { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.svc__sub-label { font-size: var(--fs-xs); font-weight: 700; color: var(--c-black); letter-spacing: -0.01em; }
.svc__sub ul { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.svc__sub li {
  font-size: var(--fs-xs); color: var(--c-text); background: var(--c-white);
  border: 1px solid var(--c-line); padding: 6px 11px; border-radius: 100px;
}
.svc:hover .svc__sub li { border-color: #d8dbe0; }
.svc__key { margin-top: 16px; font-family: var(--ff-en); font-size: var(--fs-xs); letter-spacing: .06em; color: var(--c-muted); }

/* 서비스 그리드의 빈 칸을 채우는 이미지 셀 */
.svc--img {
  position: relative; overflow: hidden; padding: 0;
  background: var(--c-black); min-height: 240px;
  grid-column: span 2;
}
.svc--img > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block; border: 0;
  transition: transform 1.2s var(--ease);
}
.svc--img:hover { background: var(--c-black); }
.svc--img:hover > img { transform: scale(1.05); }
.svc--img.is-narrow { grid-column: span 1; }
.svc--img.is-full   { grid-column: 1 / -1; min-height: 260px; }
.svc--wide.is-full  { grid-column: 1 / -1; }
@media (max-width: 1024px) { .svc--img { grid-column: span 2; } }
@media (max-width: 700px)  { .svc--img, .svc--img.is-narrow, .svc--img.is-full { grid-column: span 1; min-height: 200px; } }

.cluster-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: 20px; border-bottom: 2px solid var(--c-black);
}
.cluster-head__no { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .22em; color: var(--c-muted); }
.cluster-head__title { font-size: clamp(1.375rem, 2.6vw, 2rem); margin-top: 10px; }
.cluster-head__count { font-family: var(--ff-en); font-size: var(--fs-sm); font-weight: 700; color: var(--c-muted); white-space: nowrap; }

/* 등급/주기 등 참고표 */
.ref-table th, .ref-table td { padding: 14px 16px; font-size: var(--fs-sm); }
.ref-table td:first-child { font-weight: 700; color: var(--c-black); white-space: nowrap; }

/* ---------- 24. Insights — Editorial Cards &amp; Visuals ---------- */

/* 카테고리별 시각 모티프 (사진 대체용 엔지니어링 그래픽) */
.viz {
  position: relative; overflow: hidden; background: var(--c-black);
  aspect-ratio: 16 / 10;
}
.viz::before {
  content: ""; position: absolute; inset: 0;
  background-repeat: no-repeat; background-position: center; background-size: cover;
  transition: transform 1.1s var(--ease), opacity .6s var(--ease);
}
.viz::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(18,18,18,.10) 0%, rgba(18,18,18,.55) 100%);
}
a:hover > .viz::before, .art:hover .viz::before { transform: scale(1.06); }

/* 기후 — 등온선 / 상승 곡선 */
.viz--climate::before {
  background-image:
    radial-gradient(60% 70% at 76% 22%, rgba(255,255,255,.22), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.30' stroke-width='1.4'%3E%3Cpath d='M0 420C120 400 200 340 320 350s180 70 300 30 180-70 180-70'/%3E%3Cpath d='M0 380C120 358 200 296 320 306s180 70 300 28 180-72 180-72'/%3E%3Cpath d='M0 340C120 316 200 252 320 262s180 70 300 26 180-74 180-74'/%3E%3Cpath d='M0 300C120 274 200 208 320 218s180 70 300 24 180-76 180-76'/%3E%3Cpath d='M0 260C120 232 200 164 320 174s180 70 300 22 180-78 180-78'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.5'%3E%3Ccircle cx='320' cy='350' r='3'/%3E%3Ccircle cx='620' cy='380' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
/* 이동성 — 교통 네트워크 / 흐름선 */
.viz--mobility::before {
  background-image:
    radial-gradient(55% 60% at 20% 80%, rgba(255,255,255,.20), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.32' stroke-width='1.4'%3E%3Cpath d='M-20 460L820 180'/%3E%3Cpath d='M-20 500L820 220'/%3E%3Cpath d='M-20 380L500 -20'/%3E%3Cpath d='M120 520L780 -20'/%3E%3Ccircle cx='250' cy='320' r='46'/%3E%3Ccircle cx='560' cy='230' r='72'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='.6' stroke-width='2' stroke-dasharray='16 14'%3E%3Cpath d='M-20 420L820 140'/%3E%3C/g%3E%3C/svg%3E");
}
/* 장소 — 도시 매스 / 축 */
.viz--places::before {
  background-image:
    radial-gradient(60% 60% at 70% 18%, rgba(255,255,255,.20), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.34' stroke-width='1.4'%3E%3Crect x='60' y='250' width='90' height='230'/%3E%3Crect x='170' y='180' width='70' height='300'/%3E%3Crect x='260' y='300' width='110' height='180'/%3E%3Crect x='390' y='120' width='80' height='360'/%3E%3Crect x='490' y='230' width='100' height='250'/%3E%3Crect x='610' y='160' width='75' height='320'/%3E%3Crect x='700' y='290' width='70' height='190'/%3E%3Cpath d='M0 480h800'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='.18' stroke-width='1'%3E%3Cpath d='M0 60h800M0 120h800M0 180h800'/%3E%3C/g%3E%3C/svg%3E");
}
/* 자원 — 지층 단면 / 물 순환 */
.viz--resources::before {
  background-image:
    radial-gradient(58% 62% at 26% 20%, rgba(255,255,255,.20), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.32' stroke-width='1.4'%3E%3Cpath d='M0 200q200 -46 400 0t400 -14'/%3E%3Cpath d='M0 260q200 -46 400 0t400 -14'/%3E%3Cpath d='M0 330q200 -50 400 0t400 -16'/%3E%3Cpath d='M0 410q200 -50 400 0t400 -16'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='.5' stroke-width='1.6'%3E%3Cpath d='M180 120v300M420 100v330M660 130v290'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.45'%3E%3Ccircle cx='180' cy='120' r='5'/%3E%3Ccircle cx='420' cy='100' r='5'/%3E%3Ccircle cx='660' cy='130' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
/* 사회 — 인적 네트워크 */
.viz--society::before {
  background-image:
    radial-gradient(55% 60% at 78% 74%, rgba(255,255,255,.20), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg stroke='%23ffffff' stroke-opacity='.28' stroke-width='1.2' fill='none'%3E%3Cpath d='M120 380L280 180 460 300 620 140 740 330'/%3E%3Cpath d='M120 380L460 300 740 330'/%3E%3Cpath d='M280 180L620 140'/%3E%3Cpath d='M280 180L460 300'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.7' stroke-width='1.6'%3E%3Ccircle cx='120' cy='380' r='16'/%3E%3Ccircle cx='280' cy='180' r='22'/%3E%3Ccircle cx='460' cy='300' r='28'/%3E%3Ccircle cx='620' cy='140' r='18'/%3E%3Ccircle cx='740' cy='330' r='14'/%3E%3C/g%3E%3C/svg%3E");
}
/* 기술 — 요소망 / 데이터 */
.viz--technology::before {
  background-image:
    radial-gradient(58% 60% at 30% 26%, rgba(255,255,255,.22), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.30' stroke-width='1'%3E%3Cpath d='M100 400L220 200 360 330 480 130 620 300 760 160'/%3E%3Cpath d='M100 400L360 330 620 300'/%3E%3Cpath d='M220 200L480 130 760 160'/%3E%3Cpath d='M220 200L360 330 480 130 620 300'/%3E%3Cpath d='M100 400L220 200M360 330L480 130M620 300L760 160'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.55'%3E%3Ccircle cx='100' cy='400' r='4'/%3E%3Ccircle cx='220' cy='200' r='4'/%3E%3Ccircle cx='360' cy='330' r='4'/%3E%3Ccircle cx='480' cy='130' r='4'/%3E%3Ccircle cx='620' cy='300' r='4'/%3E%3Ccircle cx='760' cy='160' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
/* 개요 — 복합 */
.viz--overview::before {
  background-image:
    radial-gradient(60% 65% at 72% 24%, rgba(255,255,255,.22), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.26' stroke-width='1.2'%3E%3Cpath d='M0 430C140 400 220 320 360 336s200 78 300 24 140-88 140-88'/%3E%3Crect x='120' y='250' width='80' height='180'/%3E%3Crect x='420' y='190' width='70' height='240'/%3E%3Cpath d='M0 60h800M0 130h800'/%3E%3Ccircle cx='620' cy='150' r='40'/%3E%3C/g%3E%3C/svg%3E");
}

/* 아티클 카드 */
.art { display: flex; flex-direction: column; height: 100%; background: var(--c-white); border: 1px solid var(--c-line); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.art:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.art .viz { flex: none; }
.art__body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; flex: 1; }
.art__cat {
  align-self: flex-start; font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c-black);
  padding-bottom: 6px; border-bottom: 2px solid var(--c-black); margin-bottom: 14px;
}
.art__title { font-size: 1.0625rem; line-height: 1.45; }
.art__desc { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.72; flex: 1; }
.art__meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--c-line); font-size: var(--fs-xs); color: var(--c-muted); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.art__type { font-family: var(--ff-en); font-weight: 700; letter-spacing: .1em; color: var(--c-black); }

/* 대형 피처 아티클 */
.feature-art { display: grid; grid-template-columns: 1.25fr 1fr; border: 1px solid var(--c-line); overflow: hidden; background: var(--c-white); }
@media (max-width: 900px) { .feature-art { grid-template-columns: 1fr; } }
.feature-art .viz { aspect-ratio: auto; min-height: 340px; height: 100%; }
.feature-art__body { padding: clamp(28px, 3.4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.feature-art__title { font-size: clamp(1.375rem, 2.4vw, 2rem); margin-top: 16px; line-height: 1.28; }

/* 가로형 리스트 아티클 */
.art-row { display: grid; grid-template-columns: 220px 1fr; gap: 26px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--c-line); transition: padding-left .4s var(--ease); }
.art-row:hover { padding-left: 10px; }
@media (max-width: 720px) { .art-row { grid-template-columns: 130px 1fr; gap: 18px; } }
.art-row .viz { aspect-ratio: 16 / 10; }
.art-row__title { font-size: 1.0625rem; line-height: 1.5; margin-top: 8px; }
.art-row__desc { margin-top: 8px; font-size: var(--fs-sm); color: var(--c-muted); }
@media (max-width: 720px) { .art-row__desc { display: none; } }

/* 카테고리 타일 */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 1024px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cat-tiles { grid-template-columns: 1fr; } }
.cat-tile { position: relative; display: block; background: var(--c-white); overflow: hidden; }
.cat-tile .viz { aspect-ratio: 16 / 9; }
.cat-tile__body { padding: clamp(20px, 2.2vw, 28px); }
.cat-tile__en { font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-muted); }
.cat-tile__ko { margin-top: 8px; font-size: var(--fs-h4); font-weight: 700; color: var(--c-black); }
.cat-tile__desc { margin-top: 10px; font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.7; }
.cat-tile__go { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; color: var(--c-black); transition: gap .4s var(--ease); }
.cat-tile:hover .cat-tile__go { gap: 15px; }

/* 인사이트 상단 카테고리 내비 */
.ins-nav { position: sticky; top: 72px; z-index: 500; background: var(--c-white); border-bottom: 1px solid var(--c-line); }
@media (max-width: 1080px) { .ins-nav { top: var(--header-h-sm); } }
.ins-nav__inner { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.ins-nav__inner::-webkit-scrollbar { display: none; }
.ins-nav a { flex: none; padding: 17px 16px; font-size: .9375rem; font-weight: 700; color: var(--c-muted); border-bottom: 2px solid transparent; white-space: nowrap; transition: color .3s, border-color .3s; }
.ins-nav a small { display: block; font-family: var(--ff-en); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .75; margin-top: 2px; }
.ins-nav a:hover { color: var(--c-black); }
.ins-nav a[aria-current="page"] { color: var(--c-black); border-bottom-color: var(--c-black); }

/* ---------- 25. Client Trust Strip (전 페이지 공통) ---------- */
.client-strip { background: var(--c-gray-bg); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); padding-block: clamp(40px, 5vw, 68px); }
.client-strip__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 34px); }
.client-strip__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-en); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted);
}
.client-strip__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--c-muted); }
.client-strip__title { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-top: 12px; max-width: 26ch; }

/* 숫자 */
.client-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 640px) { .client-stats { grid-template-columns: 1fr; } }
.client-stat { background: var(--c-white); padding: clamp(20px, 2.4vw, 30px); text-align: center; }
.client-stat b {
  display: block; font-family: var(--ff-en);
  font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800;
  letter-spacing: -0.05em; color: var(--c-black); line-height: 1;
}
.client-stat b sup { font-size: .4em; vertical-align: super; margin-left: 2px; letter-spacing: 0; }
.client-stat span { display: block; margin-top: 12px; font-size: var(--fs-sm); font-weight: 700; color: var(--c-text); }
.client-stat small { display: block; margin-top: 4px; font-size: var(--fs-xs); color: var(--c-muted); }

/* 고객사 이름 롤 */
.client-roll { margin-top: clamp(20px, 2.4vw, 28px); overflow: hidden; position: relative; }
.client-roll::before, .client-roll::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.client-roll::before { left: 0; background: linear-gradient(90deg, var(--c-gray-bg), transparent); }
.client-roll::after  { right: 0; background: linear-gradient(270deg, var(--c-gray-bg), transparent); }
.client-roll__track { display: flex; gap: 10px; width: max-content; animation: clientRoll 46s linear infinite; }
.client-roll:hover .client-roll__track { animation-play-state: paused; }
@keyframes clientRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .client-roll__track { animation: none; flex-wrap: wrap; width: 100%; }
  .client-roll::before, .client-roll::after { display: none; }
}
.client-roll__item {
  flex: none; padding: 12px 20px; background: var(--c-white);
  border: 1px solid var(--c-line); border-radius: 100px;
  font-size: .875rem; font-weight: 700; color: var(--c-black); white-space: nowrap;
}
.client-roll__item.is-more { background: var(--c-black); border-color: var(--c-black); color: var(--c-white); }

/* ---------- 26. Insights Illustrations (실제 이미지 파일 연결) ----------
   image/insights/ 폴더의 SVG 일러스트로 카테고리 비주얼을 교체합니다.
   사진으로 바꾸시려면 아래 url() 경로만 해당 이미지로 변경하시면 됩니다.
   (권장 규격 : 1200 × 750px, 16:10 비율)
------------------------------------------------------------------------ */
/* 각 박스에는 <img> 로 개별 이미지를 직접 넣습니다.
   ::before 배경 이미지를 남겨두면 이미지가 로드되기 전에 모든 박스가
   같은 그림으로 보이므로, 배경 레이어는 완전히 끕니다. */
.viz::before { background-image: none !important; }

/* 이미지가 들어가면 상단 그라데이션 오버레이는 약하게 */
.viz::after { background: linear-gradient(165deg, rgba(18,18,18,.06) 0%, rgba(18,18,18,.42) 100%); }

/* 작은 카드에서는 좌상단(레이블 영역)이 잘리지 않도록 위쪽 정렬 */
.art .viz::before, .art-row .viz::before, .cat-tile .viz::before { background-position: center top; }

/* 박스 안에 실제 이미지(<img>)를 넣는 방식 — 사진 교체 시 src만 바꾸면 됩니다 */
.viz__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border: 0;
  transition: transform 1.1s var(--ease);
}
.viz::after { z-index: 1; }
a:hover > .viz .viz__img,
.art:hover .viz__img,
.cat-tile:hover .viz__img,
.art-row:hover .viz__img { transform: scale(1.06); }
/* 이미지가 아직 없을 때 보이는 바탕 (빈 박스가 검게만 보이도록) */
.viz { background: #121212; }

/* ---------- 27. Print ---------- */
@media print {
  .header, .drawer, .mobile-cta, .to-top, .scroll-progress, .cta-band { display: none !important; }
  body { color: #000; }
  .section { padding-block: 24px; }
}
