/*
Theme Name: Oushine Professional
Author: Oushine Agency China Co., Ltd.
Description: A professional B2B WordPress theme for Oushine purchasing, fulfillment, inspection, warehousing and DDP shipping services.
Version: 1.3.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: oushine
*/

:root {
  --ink: #071927;
  --ink-soft: #203544;
  --navy: #071b2d;
  --navy-2: #0a2740;
  --blue: #1267f1;
  --blue-dark: #0753cc;
  --teal: #13b8a6;
  --sky: #dbeafe;
  --mist: #edf4f7;
  --paper: #ffffff;
  --line: #dbe5ea;
  --muted: #637684;
  --success: #087f6f;
  --danger: #a92d3a;
  --shadow: 0 24px 70px rgba(7, 27, 45, 0.1);
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 18px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.08; }
h1 { font-size: clamp(3.4rem, 6.4vw, 6.7rem); }
h2 { font-size: clamp(2.4rem, 4.2vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

::selection { color: var(--paper); background: var(--blue); }

:focus-visible {
  outline: 3px solid rgba(18, 103, 241, 0.45);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { max-width: 860px; }
.section { position: relative; padding: 112px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
}
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.eyebrow--light { color: #6de6da; }
.display-title { max-width: 800px; margin-bottom: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--paper);
  background: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); border-color: var(--blue-dark); }
.button--small { min-height: 44px; padding: 0 20px; font-size: 0.72rem; }
.button--light { color: var(--navy); background: var(--paper); border-color: var(--paper); }
.button--light:hover { color: var(--paper); background: var(--teal); border-color: var(--teal); }
.button--ghost { color: var(--paper); background: transparent; border-color: rgba(255, 255, 255, 0.42); }
.button--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--paper); }
.button--outline { color: var(--blue); background: transparent; }
.button--outline:hover { color: var(--paper); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 5px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link--light { color: #6de6da; }

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.site-header.is-scrolled,
body:not(.home) .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 40px rgba(7, 27, 45, 0.06);
  backdrop-filter: blur(14px);
}
.site-header__inner { display: flex; align-items: center; min-height: 84px; gap: 30px; }
.brand { display: inline-flex; flex-shrink: 0; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50% 50% 50% 10%;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}
.brand__wording { display: flex; flex-direction: column; }
.brand__wording strong { font-size: 1.12rem; letter-spacing: 0.09em; line-height: 1.1; }
.brand__wording small { margin-top: 4px; opacity: 0.66; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; line-height: 1; }
.brand--header-logo { width: 218px; }
.brand__logo { width: 100%; height: auto; }
.brand__logo--light { display: none; }
.home .site-header:not(.is-scrolled) .brand__logo--dark { display: none; }
.home .site-header:not(.is-scrolled) .brand__logo--light { display: block; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 32px; margin: 0; padding: 0; list-style: none; }
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
  display: flex;
  min-height: 84px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}
.site-nav__list > li > a::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; transform: scaleX(0); background: var(--teal); content: ""; transition: transform 180ms ease; }
.site-nav__list > li > a:hover::after,
.site-nav__list > li.current-menu-item > a::after { transform: scaleX(1); }
.site-nav__submenu,
.site-nav__list .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: -22px;
  width: 290px;
  margin: 0;
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.site-nav__parent:hover .site-nav__submenu,
.site-nav__parent:focus-within .site-nav__submenu,
.site-nav__list .menu-item-has-children:hover .sub-menu,
.site-nav__list .menu-item-has-children:focus-within .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.site-nav__submenu a,
.site-nav__list .sub-menu a { display: block; padding: 10px 12px; border-radius: 5px; font-size: 0.78rem; font-weight: 650; }
.site-nav__submenu a:hover,
.site-nav__list .sub-menu a:hover { color: var(--blue); background: var(--mist); }
.site-header__cta { margin-left: 4px; }
.nav-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle__label { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.nav-toggle__lines { display: grid; gap: 5px; width: 26px; }
.nav-toggle__lines i { width: 100%; height: 2px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: stretch;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--navy);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 34, 0.98) 0%, rgba(4, 20, 34, 0.88) 34%, rgba(4, 20, 34, 0.35) 63%, rgba(4, 20, 34, 0.08) 100%);
}
.hero::after { position: absolute; inset: 0; opacity: 0.12; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 62%); content: ""; }
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; padding: 150px 0 190px; }
.hero__copy { width: min(700px, 62%); }
.hero h1 { max-width: 760px; margin-bottom: 28px; font-weight: 720; }
.hero__lead { max-width: 660px; margin-bottom: 36px; color: rgba(255,255,255,.78); font-size: 1.16rem; line-height: 1.72; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__signals { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 650; letter-spacing: .04em; }
.hero__signals span { display: flex; align-items: center; gap: 9px; }
.hero__signals i { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 4px rgba(19,184,166,.14); }
.hero__rail { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; background: rgba(5, 23, 39, .84); border-top: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(14px); }
.hero__rail-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__rail-inner > div { display: flex; min-height: 116px; align-items: center; gap: 20px; padding: 24px 34px; border-left: 1px solid rgba(255,255,255,.12); }
.hero__rail-inner > div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.hero__rail strong { color: #6de6da; font-size: .72rem; letter-spacing: .12em; }
.hero__rail span { color: rgba(255,255,255,.88); font-size: .8rem; font-weight: 650; line-height: 1.45; }
.trust-bar { border-bottom: 1px solid var(--line); background: #f8fbfc; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar span { padding: 22px 28px; color: var(--muted); border-left: 1px solid var(--line); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-align: center; }
.trust-bar span:last-child { border-right: 1px solid var(--line); }

/* Home sections */
.section--intro { padding: 130px 0; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 11%; align-items: start; }
.intro-grid__copy { padding-top: 18px; }
.intro-grid__copy p { color: var(--ink-soft); font-size: 1.08rem; }
.intro-grid__copy p:last-of-type { margin-bottom: 32px; }
.section-heading { display: grid; grid-template-columns: 1fr 390px; gap: 9%; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); }
.section-heading--center { grid-template-columns: 1fr; justify-items: center; max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { max-width: 630px; }

.section--scenes { padding-top: 0; background: var(--paper); }
.scene-heading { margin-bottom: 46px; }
.scene-grid { display: grid; grid-template-columns: 1.28fr .86fr .86fr; grid-template-rows: repeat(2, 270px); gap: 16px; }
.scene-card { position: relative; overflow: hidden; min-height: 270px; margin: 0; color: var(--paper); background: var(--navy); }
.scene-card--lead { grid-row: 1 / 3; }
.scene-card--wide { grid-column: 2 / 4; }
.scene-card::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(4,20,33,.03) 20%, rgba(4,20,33,.9) 100%); content: ""; }
.scene-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.scene-card:hover img { transform: scale(1.035); }
.scene-card figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; }
.scene-card__index { display: inline-flex; margin-bottom: 14px; color: #6de6da; font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.scene-card h3 { margin-bottom: 8px; font-size: 1.55rem; }
.scene-card p { max-width: 520px; margin: 0; color: rgba(255,255,255,.74); font-size: .79rem; line-height: 1.55; }
.scene-card--lead figcaption { padding: 42px; }
.scene-card--lead h3 { font-size: clamp(2rem, 3vw, 3rem); }
.scene-card--lead p { font-size: .87rem; }

.section--services { background: var(--mist); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ccdce4; border: 1px solid #ccdce4; }
.service-card { position: relative; display: flex; min-height: 340px; flex-direction: column; padding: 36px; background: var(--paper); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.service-card:hover { z-index: 2; color: var(--paper); background: var(--navy-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.service-card__number { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-card__arrow { display: grid; width: 34px; height: 34px; place-items: center; color: var(--blue); background: var(--mist); border-radius: 50%; }
.service-card:hover .service-card__arrow { color: var(--navy); background: #6de6da; }
.service-card h3 { margin-bottom: 18px; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card:hover p { color: rgba(255,255,255,.68); }
.service-card > a { margin-top: auto; color: var(--blue); font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-card:hover > a { color: #6de6da; }

.section--feature { background: var(--paper); }
.feature-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; color: var(--paper); background: var(--navy); }
.feature-panel__content { padding: 78px; background: radial-gradient(circle at 15% 0%, rgba(18,103,241,.4), transparent 44%), var(--navy); }
.feature-panel__content h2 { margin-bottom: 28px; font-size: clamp(2.4rem, 3.8vw, 4.1rem); }
.feature-panel__content > p:not(.eyebrow) { margin-bottom: 34px; color: rgba(255,255,255,.72); }
.feature-panel__list { display: grid; background: #0b2b47; }
.feature-panel__list > div { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; padding: 30px 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.feature-panel__list > div:last-child { border-bottom: 0; }
.feature-panel__list span { color: #6de6da; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.feature-panel__list p { margin: 0; color: rgba(255,255,255,.62); font-size: .87rem; }
.feature-panel__list strong { display: block; margin-bottom: 5px; color: var(--paper); font-size: 1rem; }

.section--process { overflow: hidden; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.process-line::before { position: absolute; top: 24px; right: 9%; left: 9%; height: 1px; background: var(--line); content: ""; }
.process-step { position: relative; text-align: center; }
.process-step > span { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; margin: 0 auto 28px; place-items: center; color: var(--paper); background: var(--blue); border: 8px solid var(--paper); border-radius: 50%; font-size: .64rem; font-weight: 800; box-shadow: 0 0 0 1px var(--line); }
.process-step h3 { margin-bottom: 12px; font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .82rem; line-height: 1.6; }

.section--included { background: #f7fafb; border-block: 1px solid var(--line); }
.included-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 8%; }
.included-grid__heading { position: sticky; top: 130px; align-self: start; }
.included-grid__heading h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.included-grid__heading > p:last-child { color: var(--muted); }
.included-grid__items { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.included-grid__items > div { min-height: 220px; padding: 34px; background: var(--paper); }
.included-grid__items span { display: inline-block; margin-bottom: 38px; padding: 5px 9px; color: var(--success); background: #e0f7f2; border-radius: 30px; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.included-grid__items h3 { margin-bottom: 10px; }
.included-grid__items p { margin: 0; color: var(--muted); font-size: .85rem; }
.included-grid__note { grid-column: 1 / -1; margin: 24px 0 0; color: var(--muted); font-size: .74rem; }

.section--markets { color: var(--paper); background: var(--navy); }
.section--markets::before { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.65) 1px, transparent 0); background-size: 30px 30px; content: ""; }
.markets-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 12%; align-items: center; }
.markets-grid h2 { max-width: 600px; }
.markets-grid > div:first-child > p:not(.eyebrow) { max-width: 560px; margin-bottom: 30px; color: rgba(255,255,255,.68); }
.market-list { border-top: 1px solid rgba(255,255,255,.2); }
.market-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.market-list span { color: #6de6da; font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.market-list strong { font-size: .93rem; font-weight: 650; }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.audience-grid > div { min-height: 270px; padding: 35px 30px; border-right: 1px solid var(--line); }
.audience-grid > div:last-child { border-right: 0; }
.audience-grid span { display: block; margin-bottom: 46px; color: var(--blue); font-size: .69rem; font-weight: 800; letter-spacing: .12em; }
.audience-grid h3 { font-size: 1.25rem; }
.audience-grid p { margin-bottom: 0; color: var(--muted); font-size: .85rem; }

/* News and insights */
.section--news { background: var(--paper); }
.section-heading__action > p { color: var(--muted); }
.section-heading__action .text-link { margin-top: 8px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { position: relative; display: flex; min-height: 350px; flex-direction: column; padding: 34px; background: #f7fafb; border: 1px solid var(--line); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.news-card:hover { transform: translateY(-5px); border-color: #aabfca; box-shadow: var(--shadow); }
.news-card__meta, .editorial-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.news-card__meta { justify-content: space-between; margin-bottom: 48px; }
.news-card__meta span, .editorial-meta a, .editorial-meta span:first-child { color: var(--blue); }
.news-card h2, .news-card h3 { margin-bottom: 18px; font-size: clamp(1.35rem, 2vw, 1.75rem); }
.news-card h2 a, .news-card h3 a { transition: color 160ms ease; }
.news-card:hover h2 a, .news-card:hover h3 a { color: var(--blue); }
.news-card > p { margin-bottom: 28px; color: var(--muted); font-size: .85rem; }
.news-card__link { display: inline-flex; align-items: center; gap: 22px; margin-top: auto; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.news-card__link span { transition: transform 160ms ease; }
.news-card:hover .news-card__link span, .featured-story:hover .news-card__link span, .related-insight:hover .news-card__link span { transform: translateX(4px); }

.subhero--news { padding: 176px 0 92px; }
.news-masthead { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 9%; align-items: end; }
.news-masthead__copy { max-width: 870px; }
.news-masthead__copy h1 { margin-bottom: 26px; font-size: clamp(3.4rem, 5.7vw, 6rem); line-height: .99; }
.news-masthead__copy > p:last-child { max-width: 760px; margin: 0; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.news-masthead__brief { padding: 30px 0 4px 30px; border-left: 1px solid rgba(255,255,255,.22); }
.news-masthead__brief > span, .article-brief > span { display: block; margin-bottom: 19px; color: #6de6da; font-size: .65rem; font-weight: 800; letter-spacing: .13em; }
.news-masthead__brief > strong { display: block; margin-bottom: 24px; font-size: 1.05rem; line-height: 1.45; }
.news-masthead__brief ul { margin: 0; padding: 0; list-style: none; }
.news-masthead__brief li { padding: 9px 0; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.13); font-size: .73rem; font-weight: 650; }

.topic-nav { position: relative; z-index: 5; overflow-x: auto; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 8px 28px rgba(8,38,58,.035); }
.topic-nav__inner { display: flex; align-items: stretch; gap: 2px; min-width: max-content; }
.topic-nav a { display: flex; min-height: 62px; align-items: center; padding: 0 17px; color: var(--muted); border-bottom: 2px solid transparent; font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.topic-nav a:hover, .topic-nav a.is-active { color: var(--blue); border-color: var(--blue); }
.news-archive { background: #f5f8fa; }
.archive-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr); gap: 10%; align-items: end; margin-bottom: 62px; }
.archive-heading .eyebrow { margin-bottom: 18px; }
.archive-heading h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.6rem, 4.2vw, 4.3rem); }
.archive-heading > p { margin: 0 0 6px; color: var(--muted); line-height: 1.72; }

.featured-story { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); min-height: 510px; margin-bottom: 30px; overflow: hidden; background: var(--paper); border: 1px solid #c9d7de; box-shadow: 0 20px 55px rgba(7,33,51,.08); }
.featured-story__visual { position: relative; display: block; min-height: 510px; overflow: hidden; background: var(--navy); }
.featured-story__visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.featured-story:hover .featured-story__visual > img { transform: scale(1.025); }
.editorial-visual { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; color: var(--paper); background: radial-gradient(circle at 78% 18%, rgba(18,103,241,.65), transparent 30%), linear-gradient(145deg, #071e31, #0b3a65); }
.editorial-visual::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 64px 64px; content: ""; }
.editorial-visual small, .editorial-visual strong, .editorial-visual i { position: relative; z-index: 1; }
.editorial-visual small { margin-bottom: 18px; color: #6de6da; font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.editorial-visual strong { max-width: 430px; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.04; }
.editorial-visual i { position: absolute; top: 34px; right: 38px; color: rgba(255,255,255,.2); font-size: 5rem; font-style: normal; font-weight: 750; }
.featured-story__content { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.featured-story__label { margin-bottom: 20px; color: var(--blue); font-size: .64rem; font-weight: 850; letter-spacing: .14em; }
.featured-story .editorial-meta { margin-bottom: 25px; }
.featured-story .editorial-meta > * + *::before { margin-right: 12px; color: #a9b7be; content: "/"; }
.featured-story h2 { margin-bottom: 22px; font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1.08; }
.featured-story h2 a:hover { color: var(--blue); }
.featured-story__content > p:not(.featured-story__label) { margin-bottom: 32px; color: var(--muted); font-size: .91rem; }

.news-grid--archive { grid-template-columns: repeat(3, 1fr); }
.news-card--editorial { min-height: 430px; padding: 31px; background: var(--paper); }
.news-card__topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; padding-bottom: 17px; border-bottom: 1px solid var(--line); font-size: .63rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.news-card__topline > span:first-child { color: #9aabb4; }
.news-card__topline a, .news-card__topline > span:last-child { color: var(--blue); }
.news-card__image { display: block; height: 180px; margin: -10px -10px 26px; overflow: hidden; background: var(--mist); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.news-card__image + .news-card__meta { margin-bottom: 24px; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card--editorial .news-card__meta { justify-content: flex-start; gap: 14px; margin-bottom: 18px; }
.news-card--editorial .news-card__meta > * + *::before { margin-right: 14px; color: #b1bdc3; content: "/"; }
.news-card--editorial h2 { font-size: clamp(1.4rem, 2vw, 1.82rem); line-height: 1.18; }
.news-card--editorial > p { line-height: 1.7; }
.news-pagination { margin-top: 62px; }
.news-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.news-pagination .page-numbers { display: grid; min-width: 44px; height: 44px; padding: 0 12px; place-items: center; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); font-size: .75rem; font-weight: 750; }
.news-pagination .current, .news-pagination a:hover { color: var(--paper); background: var(--blue); border-color: var(--blue); }
.empty-state { padding: 80px 30px; text-align: center; background: var(--paper); border: 1px solid var(--line); }
.empty-state .eyebrow { justify-content: center; }
.empty-state h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); }
.empty-state p:not(.eyebrow) { color: var(--muted); }

.reading-progress { position: fixed; top: 0; right: 0; left: 0; z-index: 1000; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: 100%; height: 100%; background: var(--teal); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.insight-hero { position: relative; overflow: hidden; padding: 172px 0 105px; color: var(--paper); background: radial-gradient(circle at 77% 7%, rgba(18,103,241,.4), transparent 34%), var(--navy); }
.insight-hero::after { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, transparent, black 65%); content: ""; }
.insight-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 8%; align-items: end; }
.insight-hero__copy { max-width: 900px; }
.insight-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.insight-hero__meta a { color: #6de6da; }
.insight-hero h1 { margin-bottom: 28px; font-size: clamp(3.1rem, 5.4vw, 5.7rem); line-height: 1; }
.insight-hero__copy > p { max-width: 800px; margin: 0; color: rgba(255,255,255,.7); font-size: 1.07rem; line-height: 1.7; }
.article-brief { padding: 30px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.article-brief dl { margin: 0; }
.article-brief dl > div { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.13); }
.article-brief dt { color: rgba(255,255,255,.43); font-size: .62rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.article-brief dd { margin: 0; color: rgba(255,255,255,.83); font-size: .7rem; font-weight: 650; }
.article-featured-media { position: relative; z-index: 3; margin-top: -52px; }
.article-featured-media figure { max-height: 620px; margin: 0; overflow: hidden; background: var(--mist); box-shadow: 0 18px 50px rgba(7,33,51,.14); }
.article-featured-media img { width: 100%; max-height: 620px; object-fit: cover; }
.article-featured-media + .breadcrumb-bar { margin-top: 42px; }
.breadcrumb-bar strong { overflow: hidden; max-width: 65ch; text-overflow: ellipsis; white-space: nowrap; }

.insight-body { background: var(--paper); }
.insight-body__layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 8%; justify-content: center; align-items: start; }
.article-rail { position: sticky; top: 112px; }
.article-rail__block { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.article-rail__block > span { display: block; margin-bottom: 18px; color: var(--blue); font-size: .63rem; font-weight: 850; letter-spacing: .12em; }
.article-toc { display: grid; gap: 3px; }
.article-toc:empty::after { color: var(--muted); content: "Article overview"; font-size: .75rem; }
.article-toc a { position: relative; padding: 8px 0 8px 14px; color: var(--muted); border-left: 1px solid #ccd8de; font-size: .73rem; font-weight: 600; line-height: 1.45; }
.article-toc a::before { position: absolute; top: 0; bottom: 0; left: -1px; width: 2px; background: transparent; content: ""; }
.article-toc a:hover, .article-toc a.is-active { color: var(--ink); }
.article-toc a.is-active::before { background: var(--blue); }
.article-rail__actions { display: grid; gap: 13px; padding-top: 25px; }
.article-rail__actions button, .article-rail__actions a { width: 100%; padding: 0; color: var(--blue); background: transparent; border: 0; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-align: left; text-transform: uppercase; cursor: pointer; }
.article-rail__actions button:hover, .article-rail__actions a:hover, .article-rail__actions button.is-copied { color: var(--success); }
.article-main { min-width: 0; }
.insight-body .prose-content { min-height: 0; }
.insight-body .prose-content > p:first-child { color: var(--ink); font-size: 1.18rem; line-height: 1.8; }
.insight-body .prose-content p { line-height: 1.82; }
.insight-body .prose-content h2 { margin: 1.8em 0 .62em; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.12; scroll-margin-top: 120px; }
.insight-body .prose-content h3 { margin: 1.6em 0 .55em; font-size: 1.32rem; }
.insight-body .prose-content ul, .insight-body .prose-content ol { margin: 26px 0; padding-left: 24px; }
.insight-body .prose-content li { margin-bottom: 9px; line-height: 1.72; }
.insight-body .prose-content blockquote { margin: 38px 0; padding: 28px 31px; color: var(--ink); background: var(--mist); border-left: 4px solid var(--teal); font-size: 1.03rem; font-weight: 650; }
.insight-body .prose-content .oushine-note { margin: 38px 0; padding: 27px 30px; background: #eef5ff; border: 1px solid #cfe0f9; }
.insight-body .prose-content .oushine-note strong { display: block; margin-bottom: 6px; color: var(--blue); }
.article-byline { display: grid; grid-template-columns: 62px 1fr; gap: 22px; margin-top: 60px; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-byline__mark { display: grid; width: 62px; height: 62px; place-items: center; color: var(--paper); background: var(--navy); font-size: 1.55rem; font-weight: 800; }
.article-byline span { display: block; margin-bottom: 6px; color: var(--blue); font-size: .62rem; font-weight: 850; letter-spacing: .11em; }
.article-byline strong { display: block; color: var(--ink); font-size: .88rem; }
.article-byline p { margin: 7px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.6; }

.related-insights { background: #f5f8fa; border-top: 1px solid var(--line); }
.related-insights__heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.related-insights__heading h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.related-insights__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: #cddae1; border: 1px solid #cddae1; }
.related-insight { display: flex; min-height: 290px; flex-direction: column; padding: 32px; background: var(--paper); transition: background 180ms ease; }
.related-insight:hover { background: #fafdff; }
.related-insight__visual { display: block; height: 155px; margin: -32px -32px 27px; overflow: hidden; background: var(--mist); }
.related-insight__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.related-insight:hover .related-insight__visual img { transform: scale(1.035); }
.related-insight .editorial-meta { margin-bottom: 28px; }
.related-insight .editorial-meta > * + *::before { margin-right: 12px; color: #b0bdc4; content: "/"; }
.related-insight h3 { margin-bottom: 28px; font-size: 1.35rem; line-height: 1.2; }
.related-insight h3 a:hover { color: var(--blue); }
.article-cta { padding: 96px 0; color: var(--paper); background: linear-gradient(120deg, #0d65ec, #07356a 65%, var(--navy)); text-align: center; }
.article-cta .eyebrow { justify-content: center; }
.article-cta h2 { margin-bottom: 20px; font-size: clamp(2.4rem, 4.5vw, 4rem); }
.article-cta p:not(.eyebrow) { max-width: 700px; margin: 0 auto 30px; color: rgba(255,255,255,.7); }

.section--faq { background: #f7fafb; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10%; }
.faq-layout__heading { position: sticky; top: 130px; align-self: start; }
.faq-layout__heading h2 { font-size: clamp(2.4rem, 3.8vw, 3.8rem); }
.faq-layout__heading > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid #b9cbd4; }
.accordion__item { border-bottom: 1px solid #b9cbd4; }
.accordion__item h3 { margin: 0; }
.accordion__item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 0; border: 0; background: transparent; font-size: 1.02rem; font-weight: 720; text-align: left; cursor: pointer; }
.accordion__item button i { position: relative; flex: 0 0 24px; width: 24px; height: 24px; }
.accordion__item button i::before,
.accordion__item button i::after { position: absolute; top: 50%; right: 0; left: 0; height: 1px; background: var(--blue); content: ""; transition: transform 180ms ease; }
.accordion__item button i::after { transform: rotate(90deg); }
.accordion__item button[aria-expanded="true"] i::after { transform: rotate(0deg); }
.accordion__panel { padding: 0 52px 25px 0; color: var(--muted); font-size: .91rem; }
.accordion__panel p { margin: 0; }

.section--final-cta { padding: 80px 0; background: var(--paper); }
.final-cta { padding: 80px; color: var(--paper); background: linear-gradient(120deg, #0d65ec 0%, #0a4ba7 54%, #06223b 100%); }
.final-cta h2 { max-width: 920px; margin-bottom: 20px; }
.final-cta > p:not(.eyebrow) { max-width: 750px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.final-cta > div { display: flex; flex-wrap: wrap; gap: 12px; }

/* Subpages */
.subhero { position: relative; overflow: hidden; padding: 180px 0 100px; color: var(--paper); background: radial-gradient(circle at 80% 10%, rgba(18,103,241,.34), transparent 36%), var(--navy); }
.subhero::after { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, transparent 0%, black 55%); content: ""; }
.subhero__simple { position: relative; z-index: 1; max-width: 1000px; margin-inline: auto; text-align: center; }
.subhero__simple .eyebrow { justify-content: center; }
.subhero__simple h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 6rem); }
.subhero__simple > p:last-child { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.subhero--compact { padding: 150px 0 70px; }
.subhero--contact { padding-bottom: 140px; }
.subhero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .55fr; gap: 10%; align-items: end; }
.subhero__grid h1 { margin-bottom: 28px; font-size: clamp(3.2rem, 5.6vw, 5.8rem); }
.subhero__grid > div > p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.subhero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.subhero__aside { padding: 36px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.subhero__aside > span { display: block; margin-bottom: 28px; color: #6de6da; font-size: .66rem; font-weight: 800; letter-spacing: .13em; }
.subhero__aside > strong { display: block; margin-bottom: 22px; font-size: 1.35rem; line-height: 1.4; }
.subhero__aside p { margin: 0; color: rgba(255,255,255,.6); font-size: .83rem; }
.breadcrumb-bar { border-bottom: 1px solid var(--line); background: #f8fbfc; }
.breadcrumb-bar .shell { display: flex; flex-wrap: wrap; gap: 12px; padding-block: 15px; color: var(--muted); font-size: .7rem; }
.breadcrumb-bar a:hover { color: var(--blue); }
.breadcrumb-bar strong { color: var(--ink); font-weight: 650; }

.service-overview__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 11%; align-items: start; }
.service-overview__grid h2 { font-size: clamp(2.5rem, 4vw, 4.1rem); }
.service-overview__grid > div:first-child > p:last-child { color: var(--muted); }
.benefit-list { border-top: 1px solid var(--line); }
.benefit-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center; min-height: 70px; border-bottom: 1px solid var(--line); }
.benefit-list span { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.benefit-list strong { font-size: .94rem; }
.service-process { background: var(--mist); }
.service-process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: #ccdae2; border: 1px solid #ccdae2; }
.service-process__grid article { min-height: 260px; padding: 30px; background: var(--paper); }
.service-process__grid article > span { display: block; margin-bottom: 56px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.service-process__grid h3 { margin-bottom: 12px; font-size: 1.12rem; }
.service-process__grid p { color: var(--muted); font-size: .83rem; }
.service-assurance { color: var(--paper); background: var(--navy); }
.service-assurance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
.service-assurance__statement h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.service-assurance__statement > p:last-child { color: rgba(255,255,255,.65); }
.service-assurance__points { border-top: 1px solid rgba(255,255,255,.2); }
.service-assurance__points > div { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-assurance__points strong { color: #6de6da; font-size: .68rem; letter-spacing: .1em; }
.service-assurance__points p { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.service-assurance__points b { display: block; margin-bottom: 3px; color: var(--paper); }
.related-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-services__grid > a { position: relative; min-height: 260px; padding: 32px; background: #f7fafb; border: 1px solid var(--line); transition: transform 180ms ease, border-color 180ms ease; }
.related-services__grid > a:hover { transform: translateY(-5px); border-color: var(--blue); }
.related-services__grid span { display: block; margin-bottom: 38px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.related-services__grid h3 { margin-bottom: 12px; }
.related-services__grid p { color: var(--muted); font-size: .83rem; }
.related-services__grid i { position: absolute; right: 28px; bottom: 22px; color: var(--blue); font-size: 1.2rem; font-style: normal; }

.services-directory__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; margin-bottom: 70px; }
.services-directory__intro h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.services-directory__intro > p { align-self: end; color: var(--muted); }
.services-directory__list { border-top: 1px solid var(--line); }
.directory-row { display: grid; grid-template-columns: 60px 260px 1fr 30px; gap: 28px; align-items: center; min-height: 134px; border-bottom: 1px solid var(--line); transition: padding 180ms ease, color 180ms ease, background 180ms ease; }
.directory-row:hover { padding-inline: 20px; color: var(--paper); background: var(--navy-2); }
.directory-row__number { color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.directory-row:hover .directory-row__number { color: #6de6da; }
.directory-row p { margin: 0 0 5px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.directory-row:hover p { color: #6de6da; }
.directory-row h3 { margin: 0; font-size: 1.25rem; }
.directory-row > strong { color: var(--muted); font-size: .83rem; font-weight: 500; }
.directory-row:hover > strong { color: rgba(255,255,255,.65); }
.directory-row i { color: var(--blue); font-style: normal; }
.directory-row:hover i { color: #6de6da; }

/* About */
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11%; }
.about-story h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.about-story__grid > div:last-child { color: var(--ink-soft); font-size: 1.04rem; }
.about-principles { background: var(--mist); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #cddde5; border: 1px solid #cddde5; }
.principle-grid > div { min-height: 290px; padding: 32px; background: var(--paper); }
.principle-grid span { display: block; margin-bottom: 52px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.principle-grid h3 { font-size: 1.15rem; }
.principle-grid p { color: var(--muted); font-size: .84rem; }
.about-audience { color: var(--paper); background: var(--navy); }
.about-audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; align-items: center; }
.about-audience h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.about-audience p:last-child { color: rgba(255,255,255,.65); }
.about-audience ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.about-audience li { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .95rem; font-weight: 650; }

/* Contact */
.contact-section { padding-top: 0; background: #f7fafb; }
.contact-layout { position: relative; z-index: 3; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7%; align-items: start; margin-top: -70px; }
.contact-layout__aside { padding: 130px 0 0; }
.contact-layout__aside h2 { font-size: clamp(2.3rem, 3.6vw, 3.5rem); }
.contact-layout__aside > p:not(.eyebrow) { color: var(--muted); }
.contact-layout__aside ul { margin: 34px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contact-layout__aside li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .85rem; font-weight: 650; }
.contact-layout__aside li span { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.contact-layout__note { padding: 25px; color: var(--paper); background: var(--navy); }
.contact-layout__note strong { display: block; margin-bottom: 5px; }
.contact-layout__note p { margin: 0; color: rgba(255,255,255,.65); font-size: .8rem; }
.quote-card { padding: 48px; background: var(--paper); box-shadow: var(--shadow); }
.quote-card__heading { margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.quote-card__heading > span { display: block; margin-bottom: 12px; color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.quote-card__heading h2 { margin-bottom: 8px; font-size: clamp(2rem, 3vw, 3rem); }
.quote-card__heading p { margin: 0; color: var(--muted); font-size: .8rem; }
.form-notice { margin-bottom: 28px; padding: 18px 20px; border-left: 4px solid; font-size: .84rem; }
.form-notice strong { display: block; }
.form-notice--success { color: #07584f; background: #e3f8f4; border-color: var(--success); }
.form-notice--error { color: #7e1e29; background: #fff0f1; border-color: var(--danger); }
.quote-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: .76rem; font-weight: 750; }
.quote-form input,
.quote-form select,
.quote-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfdfe; border: 1px solid #c6d4db; border-radius: 3px; outline: 0; transition: border-color 160ms ease, box-shadow 160ms ease; }
.quote-form input,
.quote-form select { min-height: 50px; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,103,241,.12); }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #91a0a9; }
.quote-form__honeypot { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.quote-form__footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 8px; }
.quote-form__footer p { max-width: 360px; margin: 0; color: var(--muted); font-size: .68rem; }

/* Footer */
.site-footer { padding: 90px 0 30px; color: var(--paper); background: #041421; }
.site-footer__cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 80px; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.15); }
.site-footer__cta h2 { max-width: 820px; margin: 0; font-size: clamp(2.4rem, 4vw, 4.2rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .6fr; gap: 7%; padding-bottom: 70px; }
.brand--footer { margin-bottom: 24px; }
.brand--footer { width: 255px; }
.site-footer__brand > p { max-width: 390px; color: rgba(255,255,255,.55); font-size: .84rem; }
.site-footer__status { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: rgba(255,255,255,.7); font-size: .72rem; }
.site-footer__status span { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(19,184,166,.12); }
.site-footer h3 { margin-bottom: 22px; color: rgba(255,255,255,.45); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 12px; }
.site-footer li a { color: rgba(255,255,255,.72); font-size: .8rem; }
.site-footer li a:hover { color: #6de6da; }
.site-footer__legal { display: flex; justify-content: space-between; gap: 40px; padding-top: 24px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.12); font-size: .66rem; }
.site-footer__legal p { max-width: 620px; margin: 0; }

/* Generic content */
.prose-content { min-height: 420px; }
.prose-content h2 { margin-top: 1.5em; font-size: 2.2rem; }
.prose-content h3 { margin-top: 1.5em; }
.prose-content p, .prose-content li { color: var(--ink-soft); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { padding: 30px; border: 1px solid var(--line); }
.post-card > span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.post-card h2 { margin: 25px 0 18px; font-size: 1.5rem; }
.post-card p { color: var(--muted); font-size: .85rem; }
.error-page { display: grid; min-height: 80vh; place-items: center; padding: 160px 0 100px; text-align: center; }
.error-page h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.error-page p:not(.eyebrow) { color: var(--muted); }
.error-page .eyebrow { justify-content: center; }
.error-page .button { margin: 10px 4px 0; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1060px); }
  .site-header__cta { display: none; }
  .site-nav__list { gap: 23px; }
  .hero__copy { width: 70%; }
  .brand--header-logo { width: 200px; }
  .scene-grid { grid-template-rows: repeat(2, 240px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(5, minmax(160px, 1fr)); overflow-x: auto; padding-bottom: 15px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid > div { border-bottom: 1px solid var(--line); }
  .service-process__grid { grid-template-columns: repeat(3, 1fr); }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .news-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .featured-story { grid-template-columns: 1fr 1fr; }
  .featured-story__content { padding: 42px; }
  .insight-hero__grid { grid-template-columns: minmax(0, 1fr) 270px; gap: 5%; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 800px); }
  .section { padding: 88px 0; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 76px; right: 0; bottom: 0; left: 0; overflow-y: auto; visibility: hidden; margin: 0; padding: 26px 0; opacity: 0; color: var(--ink); background: var(--paper); transform: translateY(-10px); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-header__inner { min-height: 76px; }
  .site-nav__list { display: block; width: var(--shell); margin-inline: auto; }
  .site-nav__list > li { border-bottom: 1px solid var(--line); }
  .site-nav__list > li > a { min-height: 56px; font-size: .9rem; }
  .site-nav__list > li > a::after { display: none; }
  .site-nav__submenu,
  .site-nav__list .sub-menu { position: static; display: grid; grid-template-columns: 1fr 1fr; width: auto; visibility: visible; padding: 0 0 18px; opacity: 1; border: 0; box-shadow: none; transform: none; }
  .site-nav__submenu a,
  .site-nav__list .sub-menu a { padding: 8px 0; color: var(--muted); }
  .hero { min-height: 820px; background-position: 60% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(4,20,34,.98), rgba(4,20,34,.78) 65%, rgba(4,20,34,.45)); }
  .hero__copy { width: 82%; }
  .hero__rail-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__rail-inner > div { min-height: 78px; padding: 15px 20px; }
  .hero__rail-inner > div:nth-child(3), .hero__rail-inner > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .trust-bar span:nth-child(3), .trust-bar span:nth-child(4) { border-top: 1px solid var(--line); }
  .scene-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .scene-card { min-height: 310px; }
  .scene-card--lead { grid-row: auto; grid-column: 1 / -1; min-height: 420px; }
  .scene-card--wide { grid-column: 1 / -1; }
  .intro-grid, .section-heading, .feature-panel, .included-grid, .markets-grid, .faq-layout, .subhero__grid, .service-overview__grid, .service-assurance__grid, .services-directory__intro, .about-story__grid, .about-audience__grid, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .section-heading > p { max-width: 650px; }
  .feature-panel__content { padding: 55px; }
  .included-grid__heading, .faq-layout__heading { position: static; }
  .included-grid, .faq-layout { gap: 50px; }
  .market-list { margin-top: 10px; }
  .subhero__aside { max-width: 500px; }
  .service-overview__grid, .service-assurance__grid { gap: 55px; }
  .related-services__grid { grid-template-columns: 1fr; }
  .services-directory__intro { gap: 20px; }
  .directory-row { grid-template-columns: 50px 220px 1fr 20px; }
  .contact-layout { margin-top: -70px; }
  .contact-layout__aside { padding: 0; order: 2; }
  .quote-card { order: 1; }
  .site-footer__cta { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .news-masthead { grid-template-columns: 1fr; gap: 48px; }
  .news-masthead__brief { max-width: 560px; }
  .archive-heading { grid-template-columns: 1fr; gap: 22px; }
  .featured-story { grid-template-columns: 1fr; }
  .featured-story__visual { min-height: 420px; }
  .featured-story__content { min-height: 420px; }
  .insight-hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .article-brief { max-width: 560px; }
  .insight-body__layout { grid-template-columns: 1fr; }
  .article-rail { position: static; display: grid; grid-template-columns: 1fr 220px; gap: 30px; margin-bottom: 18px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .article-rail__block { padding: 0; border: 0; }
  .article-toc { grid-template-columns: 1fr 1fr; }
  .article-rail__actions { align-content: end; padding: 0; }
  .related-insights__grid { grid-template-columns: 1fr; }
  .related-insight { min-height: 230px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 26px); }
  body { font-size: 15px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .button { width: 100%; }
  .hero { min-height: 840px; background-position: 66% center; }
  .hero__inner { align-items: flex-start; padding-top: 130px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero__lead { font-size: .98rem; }
  .brand--header-logo { width: 178px; }
  .hero__signals { gap: 12px 20px; }
  .hero__rail-inner > div { gap: 10px; padding: 12px; }
  .hero__rail span { font-size: .66rem; }
  .trust-bar span { padding: 16px 8px; font-size: .56rem; }
  .section--intro { padding: 78px 0; }
  .intro-grid { gap: 32px; }
  .scene-grid { grid-template-columns: 1fr; }
  .scene-card, .scene-card--lead, .scene-card--wide { grid-column: auto; min-height: 290px; }
  .scene-card--lead { min-height: 340px; }
  .scene-card figcaption, .scene-card--lead figcaption { padding: 26px; }
  .scene-card--lead h3 { font-size: 2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 295px; padding: 30px; }
  .feature-panel__content { padding: 42px 26px; }
  .feature-panel__list > div { padding: 25px 26px; }
  .included-grid__items { grid-template-columns: 1fr; }
  .market-list > div { grid-template-columns: 1fr; gap: 5px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid > div { min-height: 220px; border-right: 0; }
  .final-cta { padding: 52px 26px; }
  .subhero { padding: 140px 0 75px; }
  .subhero__simple h1, .subhero__grid h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .subhero__aside { padding: 28px; }
  .service-process__grid { grid-template-columns: 1fr; }
  .service-process__grid article { min-height: 220px; }
  .related-services__grid > a { min-height: 230px; }
  .directory-row { grid-template-columns: 38px 1fr 20px; gap: 12px; padding: 22px 0; }
  .directory-row > strong { grid-column: 2 / -1; }
  .directory-row:hover { padding-inline: 12px; }
  .principle-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 30px 20px; }
  .quote-form__footer { align-items: stretch; flex-direction: column; }
  .site-footer { padding-top: 70px; }
  .site-footer__cta { margin-bottom: 60px; padding-bottom: 55px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__legal { flex-direction: column; gap: 12px; }
  .post-grid { grid-template-columns: 1fr; }
  .subhero--news { padding: 138px 0 70px; }
  .news-masthead__copy h1 { font-size: clamp(3rem, 13vw, 4.2rem); }
  .news-masthead__brief { padding: 27px 0 0; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .topic-nav a { min-height: 56px; padding: 0 13px; }
  .archive-heading { margin-bottom: 42px; }
  .archive-heading h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .featured-story { min-height: 0; margin-bottom: 20px; }
  .featured-story__visual { min-height: 310px; }
  .editorial-visual { padding: 30px; }
  .editorial-visual i { top: 22px; right: 25px; font-size: 4rem; }
  .featured-story__content { min-height: 0; padding: 34px 27px; }
  .featured-story h2 { font-size: 2.1rem; }
  .news-grid, .news-grid--archive { grid-template-columns: 1fr; }
  .news-card { min-height: 320px; padding: 28px; }
  .news-card--editorial { min-height: 390px; }
  .insight-hero { padding: 138px 0 75px; }
  .insight-hero h1 { font-size: clamp(2.8rem, 13vw, 4.15rem); }
  .article-brief { padding: 25px; }
  .article-featured-media { margin-top: -28px; }
  .article-featured-media + .breadcrumb-bar { margin-top: 25px; }
  .breadcrumb-bar strong { display: none; }
  .article-rail { grid-template-columns: 1fr; gap: 24px; }
  .article-toc { grid-template-columns: 1fr; }
  .article-rail__actions { padding-top: 20px; border-top: 1px solid var(--line); }
  .insight-body .prose-content > p:first-child { font-size: 1.08rem; }
  .article-byline { grid-template-columns: 50px 1fr; gap: 17px; }
  .article-byline__mark { width: 50px; height: 50px; }
  .related-insights__heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .related-insight { min-height: 220px; padding: 27px; }
  .related-insight__visual { margin: -27px -27px 24px; }
  .article-cta { padding: 76px 0; }
}

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