/* ================================================================
   KCK Holdings — editorial luxury design
   Palette: charcoal ink / warm paper / champagne gold
   Type: Cormorant Garamond (display) + Inter (text)
   ================================================================ */

:root {
  --ink: #14181d;
  --ink-2: #1d232b;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #b3925a;
  --gold-soft: #d5bf95;
  --text: #33383f;
  --muted: #575c63;
  --line: #e0dcd3;
  --line-dark: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", "Helvetica Neue", sans-serif;
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 880px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); }
h1 em, h2 em, .lead em { font-style: italic; font-weight: 400; color: var(--gold); }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 2.4rem;
  letter-spacing: -0.01em;
}
.section-title.on-dark { color: var(--paper); }

/* --- Kicker: numbered small-caps label --- */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.kicker.center { justify-content: center; }
.kicker.gold { color: var(--gold-soft); }
.kicker.light { color: rgba(255,255,255,0.85); margin-bottom: 2.4rem; }
.kicker-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
}
.lead.center { text-align: center; }

.link-arrow {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.25s, border-color 0.25s;
}
.link-arrow:hover { color: var(--gold); }
.link-arrow span { display: inline-block; transition: transform 0.25s; }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow.gold { color: var(--paper); }
.link-arrow.gold:hover { color: var(--gold-soft); }


/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  transition: background 0.35s, border-color 0.35s;
}
.site-header.scrolled {
  background: rgba(20, 24, 29, 0.96);
  backdrop-filter: blur(12px);
  border-color: transparent;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.brand-word {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.gnb { display: flex; align-items: center; gap: 34px; }
.gnb a {
  position: relative;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 0;
}
.gnb a {
  transition: color 0.2s, text-shadow 0.2s;
}
.gnb a:hover {
  color: var(--white);
  text-shadow: 0 0 0.9px currentColor, 0 0 0.9px currentColor;
}
.gnb-contact { color: var(--gold-soft) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/ifc-main.jpg") center 28% / cover no-repeat;
  animation: heroZoom 20s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,18,23,0.55) 0%, rgba(15,18,23,0.15) 30%, rgba(15,18,23,0.45) 100%),
    linear-gradient(100deg, rgba(15,18,23,0.92) 0%, rgba(15,18,23,0.62) 52%, rgba(15,18,23,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 140px 32px 15vh;
}
.hero-side {
  position: absolute;
  right: 34px;
  bottom: 14vh;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero h1 em { color: var(--gold-soft); }
.hero h1, .hero-desc { text-shadow: 0 2px 24px rgba(10, 13, 18, 0.55); }
.hero-desc {
  max-width: 520px;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.95);
}
.hero-cta {
  display: inline-block;
  margin-top: 2.8rem;
  padding: 16px 42px;
  border: 1px solid rgba(213,191,149,0.65);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.hero-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.hero-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* --- vertical side labels --- */
.fulltext .container, .industries .container, .location .container,
.careers-bar .container { position: relative; }
.side-label {
  position: absolute;
  left: -26px;
  top: 6px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== Introduction ===== */
.fulltext { padding: 140px 0 110px; background: var(--white); }
.fulltext p + p:not(.lead) { margin-top: 1.8rem; color: var(--muted); font-size: 1.05rem; max-width: 760px; }
.fulltext .lead { margin-bottom: 0; }
.fulltext .lead + p { margin-top: 2rem; }

/* ===== What we do ===== */
.oneup { padding: 0; background: var(--paper); }
.oneup .container { max-width: none; padding: 0; }
.oneup-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.oneup-media img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.oneup-body {
  align-self: center;
  padding: 120px clamp(32px, 9vw, 150px) 120px clamp(32px, 6vw, 90px);
  max-width: 900px;
}
.oneup-body h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}
.oneup-body p + p { margin-top: 1.2rem; }
.oneup-body p { color: var(--muted); font-size: 1.02rem; }
.oneup-body p:first-of-type { color: var(--text); font-size: 1.1rem; }

/* ===== Quote ===== */
.quotebar { background: var(--white); padding: 130px 0; }
.quotebar blockquote { text-align: center; position: relative; }
.quotebar p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
}
.quotebar cite {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.quotebar cite::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

/* ===== Expertise ===== */
.services { padding: 130px 0; background: var(--white); }
.service-list { border-top: 1px solid var(--line); margin-top: 3rem; }
.service {
  display: grid;
  grid-template-columns: 110px 300px 1fr;
  gap: 36px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.service:hover { background: var(--paper); }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  padding-left: 8px;
}
.service h3 { font-size: 1.7rem; font-weight: 500; line-height: 1.3; }
.service p { color: var(--muted); font-size: 1rem; line-height: 1.85; padding-right: 8px; }

/* ===== Industries / Capabilities ===== */
.industries { padding: 140px 0; background: var(--paper); }
.sec-desc { color: var(--muted); max-width: 440px; margin: -0.8rem 0 3.4rem; }
.index-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  max-width: 940px;
}
.index-flow-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 22px 8px 0;
  margin-right: 22px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.index-flow-item:last-child { border-right: none; }
.capabilities { padding: 120px 0; background: var(--white); }
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 76px;
  align-items: start;
}
.split-head p:not(.kicker) { color: var(--muted); max-width: 380px; font-size: 1rem; }
.split-head .section-title { margin-bottom: 1.4rem; }


.cap-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  padding-top: 12px;
}
.cap-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.cap-list li::before {
  content: "—";
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== Approach ===== */
.approach { padding: 130px 0; background: var(--paper); }
.approach .lead { margin-bottom: 4rem; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.step { border-top: 1px solid var(--ink); padding-top: 28px; position: relative; }
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ===== Global network ===== */
.global {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 130px 0;
  color: var(--paper);
}
.global-desc {
  max-width: 720px;
  color: rgba(247,245,240,0.82);
  margin-bottom: 3.6rem;
  font-size: 1.02rem;
}
.global-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.g-region {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.global-seoul {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.5vw, 6rem);
  line-height: 1.05;
  color: var(--paper);
  display: block;
  margin: 14px 0 16px;
}
.global-hq p { color: rgba(247,245,240,0.75); font-size: 0.95rem; }
.global-list { list-style: none; margin-top: 10px; }
.global-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 26px 0 24px;
  border-top: 1px solid var(--line-dark);
}
.global-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.g-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--paper);
}
.g-desc {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(247,245,240,0.65);
}

/* ===== Perspective ===== */
.persp { padding: 150px 0 140px; background: var(--white); }
.persp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 3.4rem;
}
.persp-card { border-top: 1px solid var(--ink); padding-top: 26px; position: relative; }
.persp-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
}
.persp-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.persp-card h3 { font-size: 1.5rem; line-height: 1.45; margin-bottom: 0.9rem; }
.persp-card p { color: var(--muted); font-size: 0.98rem; }

/* ===== Careers band ===== */
.careers-bar { padding: 130px 0; background: var(--paper); }
.careers-bar h2 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); margin-bottom: 1.2rem; }
.careers-bar p { color: var(--muted); font-size: 1.02rem; }

/* ===== Office ===== */
.location { padding: 130px 0 140px; background: var(--white); }
.location .kicker { margin-bottom: 3.2rem; }
.location-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  min-height: 500px;
  box-shadow: 0 30px 70px -30px rgba(20,24,29,0.35);
}
.office-card {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.office-card h3 {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.office-addr {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  line-height: 1.9;
  font-size: 0.96rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
.office-phone {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  margin-top: 1.3rem;
  font-size: 0.96rem;
}
.office-phone span { color: rgba(255,255,255,0.92); margin-right: 8px; }
.office-phone a { color: rgba(255,255,255,0.92); text-decoration: none; }
.office-phone a:hover { color: var(--gold-soft); }
.office-note {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.office-card .link-arrow {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  margin-top: 2.4rem;
  align-self: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  border-bottom: none;
  padding-bottom: 0;
}
.office-card .link-arrow:hover { color: var(--gold-soft); }

.map-wrap {
  min-height: 500px;
  background: #e8e8e6;
}
.map-wrap .leaflet-container { height: 100%; width: 100%; font-family: var(--sans); }

/* custom map marker */
.kck-pin {
  position: relative;
  width: 18px; height: 18px;
}
.kck-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold);
}
.kck-pin::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pin-pulse 2.6s ease-out infinite;
}
@keyframes pin-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}
.kck-pin-label {
  position: absolute;
  left: 26px; top: -4px;
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gold);
  padding: 4px 10px;
}

/* ===== Contact ===== */
.contact-bar {
  background: var(--paper);
  padding: 120px 0 130px;
  text-align: center;
}
.contact-bar h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}
.contact-bar p:not(.kicker) { color: var(--muted); margin-bottom: 2.6rem; font-size: 1.02rem; }
.btn-primary {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 17px 52px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(247,245,240,0.72);
  padding: 76px 0 40px;
  font-size: 0.85rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-mark { font-size: 1.6rem; }
.footer-brand .brand-word { display: inline-block; margin-left: 8px; }
.footer-brand p { margin-top: 16px; color: rgba(247,245,240,0.62); line-height: 1.9; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-nav a {
  color: rgba(247,245,240,0.75);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold-soft); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  color: rgba(247,245,240,0.5);
  font-size: 0.78rem;
}
.credit a { color: rgba(247,245,240,0.5); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .oneup-grid, .split, .location-grid, .global-grid { grid-template-columns: 1fr; }
  .oneup-media img { min-height: 420px; height: 420px; }
  .oneup-body { padding: 72px 32px; }
  .service { grid-template-columns: 70px 1fr; }
  .service p { grid-column: 2; }
  .global-grid { gap: 48px; }
  .approach-steps { grid-template-columns: 1fr; }
  .factoid-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { min-height: 380px; }
}

@media (max-width: 780px) {
  .gnb {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 24px;
    display: none;
  }
  .gnb.open { display: flex; }
  .gnb a { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(20,24,29,0.96); }
  .hero { min-height: 88vh; }
  .cap-list { grid-template-columns: 1fr; }
  .office-card { padding: 44px 32px; }
}

/* ===== Language switch (header) ===== */
.lang-switch {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.lang-switch a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.18em;
}
.lang-switch a.active { color: var(--gold-soft); }
.lang-switch a:hover { color: var(--gold-soft); }
.lang-switch i { font-style: normal; color: rgba(255,255,255,0.2); margin: 0 7px; }

.contact-email { margin-top: 1.6rem; font-size: 0.85rem; letter-spacing: 0.06em; }
.contact-email a { color: var(--muted); text-decoration: none; }
.contact-email a:hover { color: var(--gold); }

/* ===== Korean page: English display layer + Korean body ===== */
html.ko {
  --serif: "Noto Serif KR", "Georgia", serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}
/* English headlines & ornaments keep the Cormorant look */
html.ko h1, html.ko h2, html.ko .step h3, html.ko .service h3,
html.ko .city-ko, html.ko .fact-medium,
html.ko .brand-mark, html.ko .service-num, html.ko .step-num,
html.ko .approach .lead {
  font-family: "Cormorant Garamond", "Georgia", serif;
}
/* Korean serif passages */
html.ko .fulltext .narrow { max-width: 1020px; }
html.ko .fulltext .lead {
  font-family: "Noto Serif KR", "Georgia", serif;
  font-size: clamp(1.15rem, 1.75vw, 1.42rem);
  line-height: 1.85;
}
html.ko .fulltext .lead em { font-style: normal; }
html.ko .quotebar p {
  font-family: "Noto Serif KR", "Georgia", serif;
  font-style: normal;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.8;
}
html.ko .hero-desc { line-height: 2; }
html.ko body, html.ko p, html.ko li { word-break: keep-all; }
html.ko .hero-desc { max-width: 640px; }

@media (max-width: 900px) {
  .br-d { display: none; }
}

/* asymmetric stagger */
@media (min-width: 1001px) {
  .approach-steps .step:nth-child(2) { margin-top: 60px; }
  .approach-steps .step:nth-child(3) { margin-top: 120px; }
  .persp-grid .persp-card:nth-child(2) { margin-top: 56px; }
  .persp-grid .persp-card:nth-child(3) { margin-top: 112px; }
}
@media (max-width: 1100px) {
  .side-label { display: none; }
  .hero-side { display: none; }
}

/* ===== Sub-page header band ===== */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 170px 0 80px;
  position: relative;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}
.page-hero .eyebrow-line::before {
  content: "";
  width: 40px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.1;
  font-weight: 500;
}
.page-hero h1 em { color: var(--gold-soft); }
.page-hero .page-sub {
  margin-top: 1.6rem;
  max-width: 620px;
  color: rgba(247,245,240,0.72);
  font-size: 1.05rem;
}
html.ko .page-hero h1 { line-height: 1.3; }

/* subpages: header is always solid (no hero image behind) */
body.subpage { padding-top: 0; }
body.subpage .site-header {
  background: rgba(20, 24, 29, 0.96);
  backdrop-filter: blur(12px);
  border-color: transparent;
}

/* ===== Home compact teasers ===== */
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.25s;
}
.teaser-link:hover { color: var(--gold); }

/* compact expertise list on home */
.exp-teaser { padding: 120px 0; background: var(--white); }
.exp-teaser .exp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 2.4rem;
}
.exp-teaser .section-title { margin-bottom: 0; }
.exp-rows { border-top: 1px solid var(--line); }
.exp-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.3s, background 0.3s;
}
.exp-row:hover { padding-left: 16px; }
.exp-row .exp-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  min-width: 26px;
}
.exp-row .exp-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}
.exp-row .exp-go {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.exp-row:hover .exp-go { opacity: 1; transform: translateX(4px); }

/* bilingual sub-labels */
.exp-row .exp-sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.svc-ko {
  display: block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-top: 8px;
}
.step-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 6px;
}
html.ko .exp-row .exp-name { font-family: "Cormorant Garamond", "Georgia", serif; }
@media (max-width: 780px) {
  .exp-row .exp-sub { display: none; }
}
