/* ─── RESET & TOKENS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --rose: #c98ea3;
  --rose-lt: #e7c9d3;
  --bg: #f3f1f1;
  --ink: #1f1f1f;
  --rule: #d9c7cf;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --max: 1160px;
  --gutter: clamp(24px, 5vw, 80px);
  --section: clamp(64px, 8vw, 112px);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 5vw, 60px); letter-spacing: 0.01em; line-height: 1.08; }
h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 3.5vw, 42px); letter-spacing: 0.01em; line-height: 1.12; margin-bottom: 24px; }
h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(18px, 2.2vw, 24px); letter-spacing: 0.01em; line-height: 1.2; margin-bottom: 10px; }

p { margin-bottom: 1em; color: #4a4a4a; line-height: 1.78; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

.label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--sm { padding: clamp(40px, 5vw, 72px) 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); }
hr.divider { border: none; height: 0.5px; background: var(--rule); }

/* ─── LOGO ─── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo__ct {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.11em;
  padding-right: 0.11em;
  line-height: 1;
  color: inherit;
}
.logo__meta { display: flex; flex-direction: column; gap: 5px; }
.logo__rule { display: block; height: 0.5px; width: 22px; background: var(--rose); }
.logo__name {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 6.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.5;
}
.logo--inv { color: #fff; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--rule);
  padding: 0 var(--gutter);
  transition: box-shadow 0.4s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ─── NAVIGATION ─── */
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__links { display: flex; align-items: center; gap: 24px; list-style: none; }
.site-nav__links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a.active { color: var(--ink); }
.site-nav__cta {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 1px;
  white-space: nowrap;
  transition: background 0.2s;
}
.site-nav__cta:hover { background: #333; }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span { display: block; height: 1px; background: var(--ink); transition: all 0.25s ease; }
.menu-toggle span:nth-child(1) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 22px; }
.menu-toggle span:nth-child(3) { width: 14px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 22px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 0.5px solid var(--rule);
  padding: 20px var(--gutter) 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul a {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 0.5px solid var(--rule);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--ink); }
.mobile-menu .btn-primary { margin-top: 20px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 1px;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: #333; border-color: #333; }

.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 1px;
  border: 1px solid var(--rule);
  transition: border-color 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ─── HERO (INDEX) ─── */
.hero {
  background: var(--ink);
  color: #fff;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 80px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}
.hero__pre {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 36px;
  display: block;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero__subline {
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero__intro {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero__img-bg {
  position: absolute;
  inset: 0;
  background: #2a2828;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero__img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.015) 10px, rgba(255,255,255,0.015) 11px);
}
.hero__img-bg span {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  position: relative;
}

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: clamp(72px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
}
.page-hero .label { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero__sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.48);
  max-width: 660px;
  line-height: 1.5;
}

/* ─── INTRO TEXT ─── */
.intro-serif {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  max-width: 760px;
}

/* ─── CARD ─── */
.card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.card .label { margin-bottom: 10px; }
.card h3 { color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 13.5px; color: #666; }
.card__arrow {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s;
}
.card__arrow:hover { color: var(--ink); }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }

/* ─── FEATURE BLOCK (list in white box) ─── */
.feature-block {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  padding: 32px 28px;
}
.feature-block h3 { font-size: 20px; margin-bottom: 0; padding-bottom: 14px; border-bottom: 0.5px solid var(--rule); }
.feature-block ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.feature-block ul li {
  font-size: 13px;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.feature-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 0.5px;
  background: var(--rose);
}

/* ─── CLUSTER ─── */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.cluster { background: var(--bg); padding: 26px 22px; }
.cluster__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--rule);
  height: 4.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cluster ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cluster ul li {
  font-size: 12px;
  color: #666;
  padding-left: 13px;
  position: relative;
  line-height: 1.5;
}
.cluster ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 0.5px;
  background: var(--rose);
}

/* ─── PRINCIPLE LIST ─── */
.principle-list { display: flex; flex-direction: column; }
.principle-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}
.principle-item:first-child { border-top: 0.5px solid var(--rule); }
.principle-item__title { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); }
.principle-item__text { font-size: 13.5px; color: #555; line-height: 1.75; margin: 0; }

/* ─── STATIONS ─── */
.stations { display: flex; flex-direction: column; }
.station { padding: 28px 0; border-bottom: 0.5px solid var(--rule); }
.station:first-child { border-top: 0.5px solid var(--rule); }
.station__org { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 8px; display: flex; flex-direction: column; gap: 10px; }
.station__icon { color: var(--rose); flex-shrink: 0; }
.station p { font-size: 13.5px; color: #555; line-height: 1.75; max-width: 680px; margin: 0; }

/* ─── POINT LIST ─── */
.point-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.point-list li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 0.5px;
  background: var(--rose);
}

/* ─── ISSUE LIST ─── */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.issue-item { background: var(--white); padding: 24px 22px; }
.issue-item__title { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.issue-item p { font-size: 12.5px; color: #666; line-height: 1.65; margin: 0; }

/* ─── DARK BLOCK ─── */
.dark-block { background: var(--ink); color: #fff; padding: 40px; border-radius: 2px; }
.dark-block h3 { color: #fff; }
.dark-block p { color: rgba(255,255,255,0.55); }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band .lead { font-size: 15px; color: rgba(255,255,255,0.48); max-width: 540px; margin: 0 auto 36px; }
.cta-band .btn-primary { background: var(--rose); border-color: var(--rose); }
.cta-band .btn-primary:hover { background: #b87e93; border-color: #b87e93; }
.cta-band .btn-secondary { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.22); }
.cta-band .btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

/* ─── CONTACT ─── */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item__label { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 5px; }
.contact-item__value { font-size: 15px; color: var(--ink); }
.contact-item__value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.contact-item__value a:hover { color: var(--rose); }

/* ─── QUALIF LIST ─── */
.qualif-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.qualif-list li {
  font-size: 14px;
  color: #555;
  padding: 13px 0 13px 20px;
  position: relative;
  border-bottom: 0.5px solid var(--rule);
  line-height: 1.6;
}
.qualif-list li:first-child { border-top: 0.5px solid var(--rule); }
.qualif-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  width: 7px;
  height: 0.5px;
  background: var(--rose);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  padding: 44px var(--gutter);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer__copy {
  font-size: 9.5px;
  letter-spacing: 0.05em;
  line-height: 1.85;
  color: rgba(255,255,255,0.22);
  text-align: right;
}

/* ─── LEGAL ─── */
.legal-content { max-width: 660px; }
.legal-content h2 { font-size: 20px; font-weight: 400; margin-top: 44px; margin-bottom: 12px; color: var(--ink); border-top: 0.5px solid var(--rule); padding-top: 28px; }
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content p { font-size: 13.5px; color: #555; line-height: 1.8; }
.legal-content a { color: var(--rose); text-decoration: none; }

/* ─── ANIMATIONS ─── */

/* Hero / page-hero: always immediately visible with subtle entrance */
.page-hero .fade-up,
.page-hero .fade-in,
.hero .fade-up,
.hero .fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Scroll-triggered fade for below-fold sections */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── EDITORIAL ADDITIONS ─── */

/* Keyword strip */
.kw-strip {
  background: var(--white);
  border-bottom: 0.5px solid var(--rule);
  padding: 18px 0;
}
.kw-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  flex-wrap: wrap;
}
.kw-strip__sep { color: var(--rose-lt); }
.kw-strip__accent { color: var(--rose); }

/* Horizontal service rows */
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.25s ease;
}
.svc-row:first-child { border-top: 0.5px solid var(--rule); }
.svc-row:hover { padding-left: 8px; }
.svc-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.svc-row h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 400; margin-bottom: 6px; color: var(--ink); }
.svc-row p { font-size: 13px; color: #666; margin: 0; max-width: 500px; line-height: 1.65; }
.svc-arrow { font-size: 22px; color: var(--rose); flex-shrink: 0; line-height: 1; }

/* Photo banner */
.photo-banner {
  height: clamp(300px, 45vh, 520px);
  background: var(--ink) center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-banner__ph {
  position: absolute;
  inset: 0;
  background: #2a2828;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.photo-banner__ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.012) 10px, rgba(255,255,255,0.012) 11px);
}
.photo-banner__ph span { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.2); position: relative; }
.photo-banner__overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,8,8,0.72), transparent);
  padding: clamp(32px,4vw,64px) var(--gutter);
  width: 100%;
}
.photo-banner__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0;
  line-height: 1.35;
}

/* Large numbered work blocks */
.work-blocks { display: flex; flex-direction: column; }
.work-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}
.work-block:first-child { border-top: 0.5px solid var(--rule); }
.work-block__num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--rose-lt);
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}
.work-block h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.work-block p { font-size: 14px; color: #555; margin: 0; line-height: 1.75; max-width: 680px; }

/* Split full-bleed section */
.split-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 55vh, 600px);
}
.split-full__image {
  position: relative;
  overflow: hidden;
  background: #2a2828;
}
.split-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-full__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.split-full__ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.012) 10px, rgba(255,255,255,0.012) 11px);
}
.split-full__ph span { font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); position: relative; }
.split-full__content {
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.split-full__content.dark {
  background: var(--ink);
  color: #fff;
}
.split-full__content.dark h2 { color: #fff; }
.split-full__content.dark p { color: rgba(255,255,255,0.55); }
.split-full__content.dark .label { color: rgba(255,255,255,0.3); }

/* Principle cards grid */
.principle-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.principle-card {
  background: var(--bg);
  padding: 28px 24px;
}
.principle-card__icon { color: var(--rose); margin-bottom: 14px; }
.principle-card h3 { font-size: 17px; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.principle-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.7; }

/* Hero metadata strip */
.hero__meta-strip {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-label { font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero__meta-value { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 72px var(--gutter) 56px; }
  .hero__image { min-height: 300px; max-height: 380px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .principle-item { grid-template-columns: 1fr; gap: 6px; }
  .site-nav__links, .site-nav__cta { display: none; }
  .menu-toggle { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }
  /* New layout responsive */
  .svc-row { grid-template-columns: 40px 1fr; }
  .svc-arrow { display: none; }
  .work-block { grid-template-columns: 48px 1fr; gap: 16px; }
  .work-block__num { font-size: 36px; }
  .split-full { grid-template-columns: 1fr; }
  .split-full__image { min-height: 260px; }
  .principle-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cluster-grid { grid-template-columns: 1fr; }
  .issue-grid { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .site-footer, .cta-band { display: none; }
  body { background: #fff; }
}
