/* ─────────────────────────────────────────────
   APEX LITE — global stylesheet
   ───────────────────────────────────────────── */

:root {
  --black:  #0a0a0a;
  --black0: #080808;
  --black2: #111111;
  --black3: #161616;
  --gold:   #C9A84C;
  --gold-soft: rgba(201, 168, 76, 0.4);
  --white:  #ffffff;
  --gray1:  #ededed;
  --gray2:  #a6a6a6;
  --gray3:  #6e6e6e;
  --gray4:  #2e2e2e;
  --line:   rgba(255, 255, 255, 0.09);
  --head-h: 68px;
  --maxw:   1220px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--head-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--gray1);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  word-break: keep-all;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
/* author display rules (flex/grid cards) must never beat the hidden attribute */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: #000; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* scroll lock while the mobile menu is open */
html.nav-open, html.nav-open body { overflow: hidden; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--gold); color: #000; padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 320;
  height: var(--head-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,8,0.9), rgba(8,8,8,0.35));
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.site-header.scrolled, html.nav-open .site-header {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.12em; color: var(--white);
  white-space: nowrap; line-height: 1; flex: 0 0 auto;
}
.logo span { color: var(--gold); margin: 0 3px; }
.header-right { display: flex; align-items: center; gap: 26px; }

.gnb > ul { display: flex; align-items: center; gap: 26px; }
.gnb li { position: relative; }
.gnb a {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gray2); white-space: nowrap;
  transition: color .2s ease; position: relative; padding: 10px 0;
}
.gnb > ul > li > a::after {
  content: ''; position: absolute; left: 0; bottom: 4px;
  width: 0; height: 1px; background: var(--gold); transition: width .28s ease;
}
.gnb a:hover { color: var(--white); }
.gnb > ul > li > a:hover::after { width: 100%; }
.gnb a[aria-current="page"] { color: var(--gold); }
.gnb > ul > li > a[aria-current="page"]::after { width: 100%; }
.gnb .has-sub > a { padding-right: 15px; }
.gnb .has-sub > a::before {
  content: ''; position: absolute; right: 1px; top: 50%;
  width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-75%) rotate(45deg);
}
.gnb .sub {
  position: absolute; top: 100%; left: -18px; min-width: 214px;
  margin-top: 8px; padding: 8px 0;
  background: rgba(8,8,8,0.98); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.gnb .sub::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.gnb .has-sub:hover .sub, .gnb .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.gnb .sub a { display: block; padding: 11px 18px; font-size: 13.5px; letter-spacing: .02em; }
.gnb .sub a:hover { color: var(--gold); }

.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; min-height: 44px; padding: 0 12px;
  border: 1px solid var(--gold); border-radius: 2px; color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: .14em; line-height: 1;
  transition: background .2s ease, color .2s ease;
}
.lang-btn:hover { background: var(--gold); color: #0a0a0a; }

.hamburger {
  display: none; position: relative; flex: 0 0 auto;
  width: 44px; height: 44px; margin-right: -8px;
  background: none; border: 0; cursor: pointer;
}
.hamburger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--white);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ─── MOBILE MENU (full screen, below the header) ─── */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 300;
  background: var(--black0);
  display: flex; flex-direction: column;
  padding: calc(var(--head-h) + 6px) 24px 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s;
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block; padding: 16px 2px;
  font-size: 17px; font-weight: 600; letter-spacing: 0.04em; color: var(--gray1);
}
.mobile-nav .mnav-sub { padding: 0 0 12px; margin-top: -4px; }
.mobile-nav .mnav-sub a {
  position: relative; padding: 10px 2px 10px 24px;
  font-size: 15px; font-weight: 500; color: var(--gray2);
}
.mobile-nav .mnav-sub a::before {
  content: ''; position: absolute; left: 6px; top: 50%; width: 9px; height: 1px; background: var(--gold);
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
/* fills the empty area so a tap anywhere below the links closes the menu */
.mnav-backdrop { flex: 1 1 auto; min-height: 80px; }

/* ─── SECTION PRIMITIVES ─── */
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--black2); }

.label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.34em; color: var(--gold);
  margin-bottom: 16px; text-transform: uppercase;
}
h1, h2, h3, h4 { line-height: 1.3; color: var(--white); font-weight: 700; }
.h-page {
  font-family: 'Bebas Neue', 'Pretendard', sans-serif;
  font-size: clamp(40px, 7vw, 72px); letter-spacing: 0.04em; line-height: 1.02;
  color: var(--white);
}
.h-sec { font-size: clamp(24px, 3.4vw, 37px); letter-spacing: -0.015em; margin-bottom: 18px; }
.h-sub { font-size: clamp(17px, 2.2vw, 21px); margin-bottom: 12px; }
.lead { font-size: clamp(15px, 1.8vw, 17.5px); color: var(--gray2); max-width: 760px; line-height: 1.85; }
.body-text { color: var(--gray2); font-size: 15.5px; line-height: 1.9; max-width: 820px; }

.sec-head { margin-bottom: 40px; }
.sec-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 34px; color: var(--gold); font-size: 14px; font-weight: 600; }
.sec-more::after { content: '→'; transition: transform .25s ease; }
.sec-more:hover::after { transform: translateX(5px); }

/* ─── BUTTONS ─── */
.btn {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  transition: background .25s ease, color .25s, border-color .25s, transform .2s;
}
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: #dcbb5c; transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(0,0,0,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ─── HERO (single photo) ─── */
.hero {
  position: relative; min-height: min(92vh, 880px);
  display: flex; align-items: flex-end;
  padding: calc(var(--head-h) + 60px) 0 72px;
  overflow: hidden; background: var(--black0);
}
.hero__img { position: absolute; inset: 0; z-index: 0; margin: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
/* darkness only where the text sits — the photo stays bright */
.hero__grad {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 78% at 0% 100%, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.62) 45%, rgba(8,8,8,0) 78%),
    linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0) 16%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__text { max-width: 640px; }
.hero__label {
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 58px); line-height: 1.16; letter-spacing: -0.02em;
  max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.hero__tagline { margin-top: 14px; font-size: clamp(17px, 2.1vw, 22px); color: var(--gold); font-weight: 600; }
.hero__sub {
  margin-top: 20px; max-width: 600px;
  font-size: clamp(14.5px, 1.7vw, 17px); color: var(--gray1); line-height: 1.8;
  text-shadow: 0 1px 14px rgba(0,0,0,.7);
}

/* ─── PAGE HEADER (subpages) ─── */
.page-hero {
  position: relative; min-height: 48vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--head-h) + 60px) 0 48px;
  overflow: hidden; background: var(--black0);
}
.page-hero__img { position: absolute; inset: 0; z-index: 0; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.page-hero__grad {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 90% at 0% 100%, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.15) 85%),
    linear-gradient(to bottom, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0) 22%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; }
.page-hero .lead { margin-top: 18px; color: var(--gray1); text-shadow: 0 1px 14px rgba(0,0,0,.7); }

/* ─── GRIDS ─── */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid > * { min-width: 0; }

/* ─── PHOTO CARD (portfolio / overlay) ─── */
.photo-card {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--black3);
  border: 1px solid var(--line);
}
.photo-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transition: transform .7s ease, opacity .4s ease;
  opacity: .88;
}
.photo-card:hover img { transform: scale(1.05); opacity: 1; }
.photo-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.94) 2%, rgba(6,6,6,0.55) 38%, rgba(6,6,6,0.12) 72%);
}
.photo-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
  border-left: 2px solid var(--gold);
}
.photo-card__cat {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: .22em; color: var(--gold); margin-bottom: 8px;
}
.photo-card__title { display: block; font-size: 17px; font-weight: 700; line-height: 1.4; color: #fff; margin-bottom: 7px; }
.photo-card__role { display: block; font-size: 13px; color: var(--gray2); line-height: 1.6; }

/* ─── HALF CARD (2-up promo) ─── */
.half-card {
  position: relative; display: flex; align-items: flex-end;
  min-height: 300px; overflow: hidden; border: 1px solid var(--line);
}
.half-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .92; transition: transform .7s ease, opacity .4s ease;
}
.half-card:hover img { transform: scale(1.04); opacity: 1; }
.half-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.94) 0%, rgba(6,6,6,0.66) 36%, rgba(6,6,6,0) 70%);
}
.half-card__body { position: relative; z-index: 2; padding: 30px 28px 32px; display: block; }
.half-card__h { display: block; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.half-card__p { display: block; font-size: 14px; color: var(--gray2); line-height: 1.75; max-width: 42ch; }
.half-card .go { display: inline-block; margin-top: 16px; color: var(--gold); font-size: 13.5px; font-weight: 600; }
.half-card .go::after { content: ' →'; }

/* ─── TEXT CARD ─── */
.card {
  background: var(--black2); border: 1px solid var(--line);
  border-left: 2px solid var(--gold); padding: 26px 24px 28px;
  transition: background .25s ease, transform .25s ease;
}
.card:hover { background: var(--black3); transform: translateY(-3px); }
.card h3 { font-size: 16px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--gray2); line-height: 1.8; }

/* ─── TECH SPLIT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split--form { grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.split--start { align-items: start; }
.split > * { min-width: 0; }
.split__img { overflow: hidden; border: 1px solid var(--line); }
.split__img img { width: 100%; object-fit: cover; }

.tech-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.tech-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.tech-item h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 8px;
}
.tech-item p { font-size: 14.5px; color: var(--gray2); line-height: 1.8; }

/* ─── PROCESS STEPS (international) ─── */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; counter-reset: step; }
.step {
  position: relative; text-align: center;
  border: 1px solid var(--line); background: var(--black2); padding: 26px 14px 24px;
}
.step__icon { width: 38px; height: 38px; margin: 0 auto 14px; color: var(--gold); }
.step__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.step__n {
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: .2em;
  color: var(--gray3); margin-bottom: 6px;
}
.step h3 { font-size: 14.5px; line-height: 1.45; }
.step::after {
  content: '›'; position: absolute; right: -11px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 20px; line-height: 1; z-index: 2;
}
.step:last-child::after { display: none; }

/* ─── STATS ─── */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px); color: var(--gold); line-height: 1;
}
.stat span { display: block; margin-top: 9px; font-size: 11.5px; letter-spacing: .14em; color: var(--gray2); text-transform: uppercase; }

/* ─── CLIENT WALL ─── */
.client-wall {
  display: flex; flex-wrap: wrap; gap: 10px 0;
  border-top: 1px solid var(--line); padding-top: 26px; margin-top: 8px;
}
.client-wall li {
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: .1em;
  color: var(--gray3); padding: 6px 22px 6px 0; transition: color .25s ease;
}
.client-wall li:hover { color: var(--gold); }

/* ─── FOUNDER ─── */
.founder { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; }
.founder__img { overflow: hidden; border: 1px solid var(--line); }
.founder__name { font-size: 19px; margin-bottom: 4px; }
.founder__role { font-size: 12.5px; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; }

/* ─── TAGS / LISTS ─── */
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tag { font-size: 12.5px; color: var(--gray2); border: 1px solid var(--gray4); border-radius: 999px; padding: 7px 15px; }
.checklist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.checklist li { font-size: 13.5px; color: var(--gray1); background: var(--black2); border: 1px solid var(--line); padding: 10px 16px; }
.checklist li::before { content: '✓'; color: var(--gold); margin-right: 9px; font-size: 12px; }

/* ─── PROJECT CARD (photo + detail) ─── */
.pcard {
  background: var(--black2); border: 1px solid var(--line); border-left: 2px solid var(--gold);
  display: flex; flex-direction: column; overflow: hidden;
  transition: background .25s ease, transform .25s ease;
}
.pcard:hover { background: var(--black3); transform: translateY(-3px); }
.pcard__thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--black3); }
.pcard__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .9; transition: opacity .3s, transform .6s; }
.pcard:hover .pcard__thumb img { opacity: 1; transform: scale(1.04); }
.pcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pcard__meta { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: .18em; color: var(--gold); }
.pcard__meta .yr { color: var(--gray3); margin-left: 8px; }
.pcard__title { font-size: 16.5px; color: var(--white); line-height: 1.45; }
.pcard__venue { font-size: 13px; color: var(--gray3); }
.pcard__role { font-size: 13.5px; color: var(--gray1); padding: 10px 0 11px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pcard__note { font-size: 13.5px; color: var(--gray2); line-height: 1.75; }
.pcard__credit {
  display: inline-block; align-self: flex-start; font-size: 11.5px; letter-spacing: .05em;
  color: var(--gold); border: 1px solid var(--gold-soft); padding: 5px 11px;
}

/* ─── FILTERS ─── */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.filter-btn {
  font-family: inherit; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--gray2); background: transparent; border: 1px solid var(--gray4);
  border-radius: 999px; padding: 9px 18px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.filter-btn:hover { color: var(--white); border-color: var(--gray3); }
.filter-btn.active { color: #0a0a0a; background: var(--gold); border-color: var(--gold); }
.filter-btn[hidden] { display: none; }

/* ─── SERVICE THUMB CARD ─── */
.svc-card { background: var(--black2); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.svc-card__thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.svc-card__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .6s; }
.svc-card:hover .svc-card__thumb img { opacity: 1; transform: scale(1.04); }
.svc-card__body { padding: 22px; border-left: 2px solid var(--gold); flex: 1; }
.svc-card__body h3 { font-size: 16px; margin-bottom: 9px; }
.svc-card__body p { font-size: 14px; color: var(--gray2); line-height: 1.8; }

/* ─── EQUIPMENT GALLERY ─── */
.eq-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.eq-item { background: var(--black2); border: 1px solid var(--line); padding: 16px; text-align: center; }
.eq-item__img { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.eq-item__img img { max-height: 100%; width: auto; object-fit: contain; }
.eq-item b { display: block; font-size: 13.5px; color: var(--white); }
.eq-item span { display: block; font-size: 11.5px; letter-spacing: .1em; color: var(--gold); margin-top: 4px; font-family: 'Bebas Neue', sans-serif; }

/* ─── DEFINITION ROWS ─── */
.deflist { border-top: 1px solid var(--line); }
.defrow { display: grid; grid-template-columns: 300px 1fr; gap: 32px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.defrow dt { font-size: 16px; font-weight: 700; color: var(--white); }
.defrow dt small { display: block; margin-top: 6px; font-size: 12px; font-weight: 500; letter-spacing: .12em; color: var(--gold); }
.defrow dd { font-size: 14.5px; color: var(--gray2); line-height: 1.9; }
.defrow dd a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

/* ─── TABLE ─── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); }
table.eq { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14.5px; }
table.eq th, table.eq td { text-align: left; padding: 17px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.eq thead th {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .22em;
  color: var(--gold); background: var(--black2); border-bottom: 1px solid var(--gold-soft);
}
table.eq tbody th {
  width: 190px; color: var(--white); background: var(--black2);
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .14em;
}
table.eq td { color: var(--gray1); }
table.eq td span { display: block; color: var(--gray2); }
.table-note { margin-top: 16px; font-size: 13.5px; color: var(--gray3); }

/* ─── CALLOUT ─── */
.callout { border: 1px solid var(--line); border-left: 2px solid var(--gold); background: var(--black2); padding: 26px; }
.callout h3 { font-size: 16px; margin-bottom: 12px; }
.callout p { font-size: 14.5px; color: var(--gray2); line-height: 1.9; }
.callout .deliverables { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.callout .deliverables li { font-size: 12.5px; color: var(--gray1); border: 1px solid var(--gray4); padding: 8px 13px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: radial-gradient(760px 300px at 50% 0%, rgba(201,168,76,0.13), transparent 70%), var(--black2);
  border-top: 1px solid var(--line); padding: 86px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.6vw, 36px); margin-bottom: 16px; }
.cta-band p { color: var(--gray2); max-width: 620px; margin: 0 auto; font-size: 15.5px; }
.cta-band .btn-row { justify-content: center; }

/* ─── FORM ─── */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .fieldset-legend { font-size: 12.5px; font-weight: 600; letter-spacing: .05em; color: var(--gray1); }
.field label .req, .fieldset-legend .req { color: var(--gold); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--black2); border: 1px solid var(--gray4); color: var(--white);
  font-family: inherit; font-size: 14.5px; padding: 13px 15px; border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--black3); }
.field input::placeholder, .field textarea::placeholder { color: var(--gray3); }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gray2) 50%), linear-gradient(135deg, var(--gray2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field select option { background: var(--black2); color: var(--white); }
.field .hint { font-size: 12px; color: var(--gray3); }
fieldset { border: 1px solid var(--gray4); border-radius: 2px; padding: 20px; }
fieldset legend { padding: 0 8px; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray1); cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--gold); flex: 0 0 auto; padding: 0; }
.date-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 2px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(201,168,76,0.1); border: 1px solid var(--gold-soft); color: var(--gold); }
.form-status.err { background: rgba(220,90,90,0.09); border: 1px solid rgba(220,90,90,0.4); color: #e08a8a; }
.contact-aside { display: grid; gap: 22px; align-content: start; }
.contact-aside .ci { border-left: 2px solid var(--gold); padding-left: 16px; }
.contact-aside .ci b { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 11.5px; letter-spacing: .16em; color: var(--gold); margin-bottom: 6px; }
.contact-aside .ci span, .contact-aside .ci a { font-size: 15px; color: var(--gray1); }
.contact-aside .ci a:hover { color: var(--gold); }

/* ─── PROFILE (about) ─── */
.profile { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.profile__img { border: 1px solid var(--line); overflow: hidden; }
.profile__name { font-size: 22px; margin-bottom: 4px; }
.profile__role { font-size: 13px; letter-spacing: .1em; color: var(--gold); margin-bottom: 20px; }
.cv { display: grid; border-top: 1px solid var(--line); }
.cv-row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cv-row dt { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .14em; color: var(--gold); }
.cv-row dd { font-size: 14.5px; color: var(--gray2); line-height: 1.9; }
.cv-row dd em { font-style: normal; color: var(--gray1); }
.clients { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.clients li { font-size: 13px; color: var(--gray2); border: 1px solid var(--gray4); padding: 8px 14px; }

/* ─── FOOTER ─── */
.site-footer { border-top: 1px solid var(--line); background: var(--black0); padding: 58px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.35fr 1fr; gap: 42px; }
.footer-brand .fb-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .12em; color: var(--white); }
.footer-brand .fb-tag { margin-top: 10px; font-size: 14px; color: var(--gray1); }
.footer-brand .fb-svc { margin-top: 8px; font-size: 13px; color: var(--gray3); line-height: 1.8; }
.footer-links ul { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer-links a { font-size: 13px; color: var(--gray2); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center;
}
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13.5px; color: var(--gray2); }
.footer-contact a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--gray3); }

/* ─── REVEAL (JS-guarded) ─── */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .gnb > ul { gap: 18px; }
  .header-right { gap: 18px; }
  .gnb a { font-size: 12.5px; letter-spacing: .03em; }
}
@media (max-width: 940px) {
  :root { --head-h: 60px; }
  .gnb { display: none; }
  .hamburger { display: block; }
  .header-right { gap: 10px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split--form { grid-template-columns: 1fr; gap: 30px; }
  .defrow { grid-template-columns: 1fr; gap: 10px; }
  .profile { grid-template-columns: 1fr; gap: 26px; }
  .profile__img { max-width: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step::after { display: none; }
  .eq-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-hero { min-height: 38vh; }
}
@media (max-width: 640px) {
  .wrap, .header-inner { padding: 0 18px; }
  .logo { font-size: 22px; }
  .section { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .eq-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid, .check-grid, .date-grid { grid-template-columns: 1fr; }
  .cv-row { grid-template-columns: 1fr; gap: 6px; }
  .founder { grid-template-columns: 1fr; gap: 20px; }
  .founder__img { max-width: 200px; }
  .btn { width: 100%; }
  .btn-row { gap: 10px; }
  .photo-card { aspect-ratio: 3 / 2; }
  .cta-band { padding: 60px 0; }
  .footer-bottom { justify-content: flex-start; }
}

/* ═════════════════════════════════════════════
   v3 components — photo-led cards, details, about
   ═════════════════════════════════════════════ */

.go { display: inline-block; color: var(--gold); font-size: 13.5px; font-weight: 600; }
.go::after { content: ' →'; }
.sec-head--row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 12px 30px; }
.sec-head .lead { margin-top: 4px; }

/* small caption on field photos */
.cap {
  position: absolute; right: 0; bottom: 0; z-index: 3; max-width: 94%;
  font-size: 11px; line-height: 1.45; letter-spacing: .01em; text-align: right;
  color: rgba(255,255,255,.9); background: rgba(8,8,8,.62);
  padding: 4px 9px; pointer-events: none;
}
.cap--top { top: 0; bottom: auto; }
.page-hero .cap { z-index: 3; }
.fig-cap { margin-top: 9px; font-size: 12.5px; color: var(--gray3); line-height: 1.6; }

/* ─── HERO caption ─── */
.hero__img .cap { bottom: 18px; right: 20px; }

/* ─── WORK CARDS (home + projects) ─── */
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 28px; }
.work-grid > * { min-width: 0; }
.work-card { display: block; color: inherit; margin: 0; }
.work-card__media {
  position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; margin: 0;
  background: #050505; border: 1px solid var(--line);
}
.work-card__media img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  transition: transform .7s ease;
}
.work-card__media.is-contain img { object-fit: contain; object-position: center; }
a.work-card:hover .work-card__media img { transform: scale(1.03); }
.work-card__media.is-contain img, a.work-card:hover .work-card__media.is-contain img { transform: none; }
.work-card__body { display: block; padding: 14px 2px 0; }
.work-card__title { display: block; font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.45; transition: color .2s; }
a.work-card:hover .work-card__title { color: var(--gold); }
.work-card__meta { display: block; margin-top: 4px; font-size: 13.5px; color: var(--gray2); line-height: 1.6; }
.work-card__role { display: block; margin-top: 2px; font-size: 13.5px; color: var(--gray1); line-height: 1.6; }
.work-tag {
  position: absolute; left: 12px; top: 12px; z-index: 3;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .16em; line-height: 1;
  color: var(--gold); background: rgba(8,8,8,.8); border: 1px solid var(--gold-soft);
  padding: 6px 9px 5px;
}
.filter-count { font-size: 13px; color: var(--gray3); margin: -14px 0 26px; }
.filter-empty { color: var(--gray2); padding: 30px 0; }

/* ─── SERVICE TILES (home) ─── */
.svc-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.svc-tiles > * { min-width: 0; }
.svc-tile {
  position: relative; display: flex; align-items: flex-end;
  aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--line); background: #050505;
}
.svc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.svc-tile:hover img { transform: scale(1.04); }
.svc-tile__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,.94) 0%, rgba(6,6,6,.62) 40%, rgba(6,6,6,0) 68%); }
.svc-tile__body { position: relative; z-index: 2; display: block; padding: 22px 20px; }
.svc-tile__n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .2em; color: var(--gold); }
.svc-tile__h { display: block; margin-top: 6px; font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.38; }
.svc-tile__p { display: block; margin-top: 8px; font-size: 13.5px; color: var(--gray1); line-height: 1.65; }
.svc-tile .go { margin-top: 12px; }

/* ─── FOUNDER / HOW WE WORK ─── */
.founder-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 52px; align-items: center; }
.founder-split > * { min-width: 0; }
.media { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #050505; }
.media img { width: 100%; height: auto; }
.person-name { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 4px; }
.person-role { font-size: 13.5px; letter-spacing: .08em; color: var(--gold); margin-bottom: 20px; }
.points { margin-top: 24px; border-top: 1px solid var(--line); }
.points li { padding: 16px 0 16px 18px; border-bottom: 1px solid var(--line); position: relative; }
.points li::before { content: ''; position: absolute; left: 0; top: 25px; width: 8px; height: 2px; background: var(--gold); }
.points b { display: block; font-size: 15.5px; color: var(--white); }
.points span { display: block; font-size: 14px; color: var(--gray2); margin-top: 3px; }
.text-link { display: inline-block; margin-top: 26px; color: var(--gold); font-weight: 600; font-size: 14.5px; border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }
.text-link::after { content: ' →'; }

/* ─── FEATURE CARDS (international on home) ─── */
.feature-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px; }
.feature-grid > * { min-width: 0; }
.feature-grid .half-card { min-height: 460px; }
.half-card .cap { top: 0; bottom: auto; }

/* ─── CONTACT BAND (home) ─── */
.contact-band {
  background: radial-gradient(760px 300px at 50% 0%, rgba(201,168,76,0.12), transparent 70%), var(--black2);
  border-top: 1px solid var(--line); padding: 86px 0;
}
.contact-band h2 { font-size: clamp(24px, 3.6vw, 36px); margin-bottom: 12px; }
.contact-band > .wrap > p { color: var(--gray2); max-width: 640px; font-size: 15.5px; }
.contact-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.contact-list > * { min-width: 0; }
.contact-item {
  display: block; padding: 18px 20px; background: var(--black0);
  border: 1px solid var(--line); border-left: 2px solid var(--gold); transition: border-color .2s;
}
.contact-item:hover { border-color: var(--gold-soft); }
.contact-item b { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .18em; color: var(--gold); font-weight: 400; }
.contact-item span { display: block; margin-top: 4px; font-size: 17px; color: var(--white); word-break: break-all; }

/* ─── DETAIL PAGES ─── */
.detail-top { padding: calc(var(--head-h) + 30px) 0 10px; background: var(--black0); }
.crumb { font-size: 13px; color: var(--gray3); margin-bottom: 16px; }
.crumb a { color: var(--gray2); }
.crumb a:hover { color: var(--gold); }
.crumb span { margin: 0 6px; }
.detail-hero { position: relative; margin: 0; }
.detail-hero .frame { background: #050505; border: 1px solid var(--line); }
.detail-hero img { width: 100%; max-height: 76vh; object-fit: contain; margin: 0 auto; }
.detail-head { margin-top: 34px; }
.detail-title { font-size: clamp(26px, 4.2vw, 44px); letter-spacing: -0.015em; line-height: 1.25; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div { padding: 16px 18px 16px 0; min-width: 0; }
.facts dt { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .18em; color: var(--gold); }
.facts dd { font-size: 15.5px; color: var(--white); margin-top: 2px; }
.detail-block { display: grid; grid-template-columns: 250px 1fr; gap: 32px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.detail-block > * { min-width: 0; }
.detail-block h2 { font-size: 17px; }
.detail-block h2 small { display: block; margin-top: 6px; font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 13px; letter-spacing: .18em; color: var(--gold); }
.detail-block p { font-size: 16px; color: var(--gray1); line-height: 1.9; }
.detail-block p + p { margin-top: 12px; }
.detail-block .note { font-size: 13.5px; color: var(--gray3); }
.role-list li { position: relative; padding: 6px 0 6px 20px; font-size: 16px; color: var(--white); }
.role-list li::before { content: ''; position: absolute; left: 0; top: 19px; width: 9px; height: 2px; background: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
.gallery > * { min-width: 0; }
.gallery figure { margin: 0; }
.gallery .frame { background: #050505; border: 1px solid var(--line); }
.gallery img { width: 100%; height: auto; }

/* ─── SERVICES PAGE ─── */
.anchor-nav { display: flex; flex-wrap: wrap; gap: 9px; }
.anchor-nav a { font-size: 13.5px; color: var(--gray1); border: 1px solid var(--gray4); border-radius: 999px; padding: 10px 18px; min-height: 44px; display: inline-flex; align-items: center; }
.anchor-nav a:hover { border-color: var(--gold); color: var(--gold); }
.svc-block { padding: 76px 0; border-top: 1px solid var(--line); scroll-margin-top: var(--head-h); }
.svc-block:nth-of-type(even) { background: var(--black2); }
.svc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.svc-grid > * { min-width: 0; }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .22em; color: var(--gold); }
.svc-title { font-size: clamp(24px, 3.2vw, 34px); margin-top: 6px; }
.svc-en { font-size: 13px; letter-spacing: .08em; color: var(--gray3); margin-top: 4px; }
.svc-short { font-size: 16.5px; color: var(--gray1); margin-top: 16px; line-height: 1.8; }
.scope { margin-top: 26px; border-top: 1px solid var(--line); }
.scope > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.scope dt { font-size: 15px; font-weight: 700; color: var(--white); }
.scope dt small { font-weight: 500; font-size: 12px; letter-spacing: .08em; color: var(--gold); margin-left: 8px; }
.scope dd { margin-top: 6px; font-size: 14.5px; color: var(--gray2); line-height: 1.85; }
.scope dd a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
.related-links { margin-top: 24px; }
.related-links p { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .18em; color: var(--gray3); margin-bottom: 8px; }
.related-links ul { display: flex; flex-wrap: wrap; gap: 8px; }
.related-links a { display: inline-flex; align-items: center; min-height: 40px; font-size: 13.5px; color: var(--gray1); border: 1px solid var(--gray4); padding: 8px 14px; }
.related-links a:hover { color: var(--gold); border-color: var(--gold); }

/* ─── LISTS / TIMELINE / CREDITS ─── */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 170px 1fr; gap: 26px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.row > * { min-width: 0; }
.row dt, .row .yr { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: .1em; color: var(--gold); line-height: 1.5; }
.row dd, .row .t { font-size: 15.5px; color: var(--gray1); line-height: 1.8; }
.row dd + dd { margin-top: 4px; }
.row .r { display: block; font-size: 13.5px; color: var(--gray2); }
.row b { color: var(--white); font-weight: 600; }
.sub-head { font-size: 17px; margin: 44px 0 14px; }
.sub-head small { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 13px; letter-spacing: .18em; color: var(--gold); margin-left: 10px; }

/* ─── ABOUT ─── */
.about-top { padding: calc(var(--head-h) + 56px) 0 68px; background: var(--black0); border-bottom: 1px solid var(--line); }
.about-top__grid { display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: center; }
.about-top__grid > * { min-width: 0; }
.about-top h1 { font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.01em; }
.about-top .person-role { margin-top: 8px; }
.about-top .one { font-size: clamp(17px, 2vw, 21px); color: var(--gray1); line-height: 1.7; max-width: 30em; }
.strength-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.strength-grid > * { min-width: 0; }
.strength { background: var(--black2); border: 1px solid var(--line); border-top: 2px solid var(--gold); padding: 26px 22px; }
.strength .n { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--gold); line-height: 1; }
.strength h3 { font-size: 16.5px; margin-top: 14px; line-height: 1.45; }
.strength p { font-size: 14px; color: var(--gray2); margin-top: 10px; line-height: 1.75; }
.prose p { font-size: 16px; color: var(--gray1); line-height: 1.95; max-width: 820px; }
.prose p + p { margin-top: 14px; }

/* ─── MISC ─── */
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.option-grid > * { min-width: 0; }
.scope-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.scope-grid > * { min-width: 0; }
.scope-grid .card h3 { font-size: 15.5px; }
.support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.support-grid > * { min-width: 0; }
.card ul.dash { margin-top: 12px; }
.card ul.dash li { position: relative; padding: 5px 0 5px 16px; font-size: 14.5px; color: var(--gray1); }
.card ul.dash li::before { content: ''; position: absolute; left: 0; top: 17px; width: 7px; height: 1px; background: var(--gold); }
.card .num { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .2em; color: var(--gold); display: block; margin-bottom: 6px; }
.hero-actions { margin-top: 26px; }
.table-wrap table.eq td small { display: block; font-size: 12.5px; color: var(--gray3); }
.contact-top { margin-bottom: 44px; }
.form-note { font-size: 13px; color: var(--gray3); margin-bottom: 18px; }
.quote { font-size: clamp(18px, 2.3vw, 23px); color: var(--white); line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 22px; max-width: 34em; }

@media (max-width: 1100px) {
  .scope-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .svc-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-split, .svc-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid .half-card { min-height: 340px; }
  .detail-block { grid-template-columns: 1fr; gap: 12px; }
  .about-top__grid { grid-template-columns: 260px 1fr; gap: 32px; }
  .strength-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* hero: photo on top untouched by overlay, text underneath */
  .hero { display: block; min-height: 0; padding: var(--head-h) 0 46px; }
  .hero__img { position: relative; inset: auto; aspect-ratio: 4 / 3; }
  .hero__img .cap { bottom: 0; right: 0; }
  .hero__grad { display: none; }
  .hero__inner { padding-top: 28px; }
  .work-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-tiles { grid-template-columns: 1fr; }
  .svc-tile { aspect-ratio: 4 / 3; }
  .facts { grid-template-columns: 1fr; }
  .facts > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .facts > div:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 4px; }
  .about-top__grid { grid-template-columns: 1fr; }
  .about-top__grid .media { max-width: 280px; }
  .strength-grid, .option-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .svc-block { padding: 56px 0; }
  .contact-band { padding: 60px 0; }
  .cap { font-size: 10.5px; }
}

/* ─── v4 site-wide rules: 1320px content, no hover zoom, no entrance animation ─── */
:root { --maxw: 1320px; }
html.js .reveal, html.js .reveal.visible { opacity: 1; transform: none; transition: none; }
.photo-card:hover img, .half-card:hover img, .svc-tile:hover img,
a.work-card:hover .work-card__media img { transform: none; }
.card:hover, .btn-primary:hover { transform: none; }

/* ─── EQUIPMENT CARDS — click a card, the description panel opens under its row ───
   Panels are static HTML right after their card; grid-auto-flow: dense lets the
   following cards back-fill the row, so an open panel always sits below that row. */
.eqg { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: row dense; gap: 18px; }
.eqg > * { min-width: 0; }
.eqc { display: flex; }
.eqc__btn {
  display: flex; flex-direction: column; width: 100%; padding: 0; margin: 0; text-align: left;
  font: inherit; color: inherit; background: #151515; border: 1px solid var(--line); cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.eqc__btn:hover { border-color: var(--gold-soft); }
.eqc__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.eqc__btn[aria-expanded="true"] { border-color: var(--gold); background: #1a1812; }
.eqc__media { position: relative; display: block; aspect-ratio: 1 / 1; background: #000; overflow: hidden; }
.eqc__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.eqc__ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%;
  padding: 20px; text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(201,168,76,.16) 0%, rgba(201,168,76,0) 62%), #0b0b0b;
}
.eqc__ph-brand { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .2em; color: var(--gray2); }
.eqc__ph-model { margin-top: 10px; font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 2.3vw, 40px); letter-spacing: .04em; line-height: 1; color: var(--gold); }
.eqc__qty {
  position: absolute; right: 10px; top: 10px; z-index: 2;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .08em; line-height: 1;
  color: var(--gold); background: rgba(8,8,8,.85); border: 1px solid var(--gold-soft); padding: 6px 9px 5px;
}
.eqc__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 16px 16px 18px; }
.eqc__brand { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray2); }
.eqc__model { display: block; margin-top: 4px; font-size: 16.5px; font-weight: 700; line-height: 1.35; color: var(--white); }
.eqc__sum { display: block; margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: var(--gray2); }
.eqc__hint { display: block; margin-top: auto; padding-top: 14px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--gold); }
.eqc__hint::after { content: ' +'; }
.eqc__btn[aria-expanded="true"] .eqc__hint::after { content: ' −'; }

.eqd {
  grid-column: 1 / -1; position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 20px 48px;
  padding: 30px 64px 30px 32px; background: #0f0e0b; border: 1px solid var(--gold-soft);
}
html.js .eqd:not(.is-open) { display: none; }
.eqd__cat { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .2em; color: var(--gold); }
.eqd__title { margin-top: 6px; font-size: 22px; font-weight: 700; line-height: 1.35; color: var(--white); }
.eqd__desc { margin-top: 12px; font-size: 15.5px; line-height: 1.8; color: var(--gray1); }
.eqd__specs { border-top: 1px solid var(--line); }
.eqd__specs > div { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.eqd__specs dt { font-family: 'Bebas Neue', 'Pretendard', sans-serif; font-size: 14px; letter-spacing: .12em; color: var(--gold); padding-top: 2px; }
.eqd__specs dd { font-size: 14.5px; line-height: 1.65; color: var(--gray1); }
.eqd__close {
  position: absolute; right: 12px; top: 12px; width: 44px; height: 44px;
  font: inherit; font-size: 26px; line-height: 1; color: var(--gray2); background: transparent; border: 0; cursor: pointer;
}
.eqd__close:hover { color: var(--white); }
html:not(.js) .eqd__close { display: none; }

.eq-cat + .eq-cat { margin-top: 64px; }
.eq-cat__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--gold-soft);
}
.eq-cat__name { font-family: 'Bebas Neue', sans-serif; font-size: 34px; font-weight: 400; letter-spacing: .08em; line-height: 1; color: var(--gold); }
.eq-cat__sub { font-size: 14px; color: var(--gray2); }
.eq-jump { margin: 8px 0 48px; }

/* ─── SELECTED INTERNATIONAL PROJECTS ─── */
.intl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.intl-grid > * { min-width: 0; }
.intl-card { display: flex; flex-direction: column; background: #111; border: 1px solid var(--line); }
.intl-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #050505; }
.intl-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.intl-card__media.is-contain img { object-fit: contain; object-position: center; }
.intl-card__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 22px 22px 24px; }
.intl-card__tag { font-family: 'Bebas Neue', 'Pretendard', sans-serif; font-size: 14px; letter-spacing: .14em; color: var(--gold); line-height: 1.4; }
.intl-card__title { margin-top: 8px; font-size: 19px; font-weight: 700; line-height: 1.4; color: var(--white); }
.intl-card__title a:hover { color: var(--gold); }
.intl-card__desc { margin-top: 10px; font-size: 14.5px; line-height: 1.7; color: var(--gray2); }
.intl-card .text-link { margin-top: auto; padding-top: 18px; align-self: flex-start; border-bottom: 0; }

@media (max-width: 1100px) {
  .eqg { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .intl-grid { grid-template-columns: 1fr; gap: 22px; }
  .eqg { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .eqc__body { padding: 12px 12px 14px; }
  .eqc__model { font-size: 15px; }
  .eqc__sum { font-size: 13px; }
  .eqd { grid-template-columns: 1fr; padding: 24px 20px 22px; }
  .eqd__title { padding-right: 36px; font-size: 19px; }
  .eqd__specs > div { grid-template-columns: 72px minmax(0, 1fr); gap: 10px; }
  .eq-cat__name { font-size: 28px; }
}

/* ─── CONTROL & SHOW SYSTEMS (separate from physical equipment) ─── */
.sys-block { margin-top: 72px; }
.sys-block__p { max-width: 860px; font-size: 15.5px; line-height: 1.85; color: var(--gray1); }
.sys-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.sys-grid > * { min-width: 0; }
.sys-tile { display: flex; flex-direction: column; min-height: 132px; padding: 20px 18px; background: #151515; border: 1px solid var(--line); border-top: 2px solid var(--gold-soft); }
.sys-tile__k { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .06em; line-height: 1; color: var(--gold); }
.sys-tile__t { margin-top: 12px; font-size: 15px; font-weight: 700; line-height: 1.45; color: var(--white); }
.sys-tile__s { margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: var(--gray2); }

/* ─── SERVICE TAB CASES ─── */
.svc-cases { margin-top: 14px; }
.svc-cases__h { font-family: 'Bebas Neue', 'Pretendard', sans-serif; font-size: 13px; letter-spacing: .16em; color: var(--gray3); margin-bottom: 6px; }
.svc-cases ul { border-top: 1px solid var(--line); }
.svc-cases li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 4px 18px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.scope dd .svc-cases a { color: var(--white); border-bottom: 0; font-size: 14px; font-weight: 600; line-height: 1.6; }
.scope dd .svc-cases a:hover { color: var(--gold); }
.svc-cases__r { font-size: 13.5px; line-height: 1.6; color: var(--gray2); }
.svc-cases--support .svc-cases__h { color: var(--gold); }

@media (max-width: 1100px) { .sys-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .sys-grid { gap: 12px; }
  .sys-tile { min-height: 0; padding: 16px 14px; }
  .svc-cases li { grid-template-columns: 1fr; }
}
