:root {
  --ink: #14211f;
  --ink-soft: #334440;
  --paper: #f4f0e7;
  --paper-2: #fbfaf6;
  --white: #ffffff;
  --forest: #1f5b52;
  --forest-dark: #17453f;
  --coral: #e56c42;
  --coral-dark: #c95331;
  --sage: #dbe8a2;
  --amber: #edb84f;
  --line: rgba(20, 33, 31, 0.18);
  --shadow: 0 26px 80px rgba(20, 33, 31, 0.12);
  --radius: 2px;
  --container: 1180px;
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
h1 { font-size: clamp(3.4rem, 7.5vw, 7.4rem); }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
p { color: var(--ink-soft); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { max-width: 850px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: var(--white); padding: 12px 16px; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--sage); }
.lead { font-size: 1.25rem; line-height: 1.55; color: var(--ink); }
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}
.text-link:hover { gap: 20px; color: var(--coral-dark); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--coral); color: var(--white); }
.button-accent:hover { background: var(--coral-dark); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--forest); }
.button-light { background: var(--paper-2); color: var(--ink); border-color: var(--line); }
.button-ghost { border-color: rgba(255, 255, 255, 0.68); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.inner-page .site-header,
.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(20, 33, 31, 0.06);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { position: relative; display: block; width: 184px; height: 52px; text-decoration: none; }
.brand img { position: absolute; inset: 0; width: 184px; height: 52px; }
.brand-dark { opacity: 0; }
.inner-page .brand-light,
.site-header.is-scrolled .brand-light { opacity: 0; }
.inner-page .brand-dark,
.site-header.is-scrolled .brand-dark { opacity: 1; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.inner-page .site-nav a,
.site-header.is-scrolled .site-nav a { color: var(--ink); }
.site-nav .nav-cta { padding: 10px 16px; border: 1px solid rgba(255, 255, 255, 0.55); }
.inner-page .site-nav .nav-cta,
.site-header.is-scrolled .site-nav .nav-cta { border-color: var(--ink); }
.site-nav .nav-cta:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); }
.inner-page .menu-toggle > span:not(.sr-only),
.site-header.is-scrolled .menu-toggle > span:not(.sr-only) { background: var(--ink); }

.home-hero {
  position: relative;
  display: flex;
  min-height: min(920px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; background: url("/images/zhiqiao-hero.png") center center / cover no-repeat; transform: scale(1.015); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 22, 20, 0.87) 0%, rgba(10, 22, 20, 0.55) 48%, rgba(10, 22, 20, 0.12) 78%), linear-gradient(0deg, rgba(10,22,20,.35), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-content h1 { max-width: 920px; margin-bottom: 24px; color: var(--white); }
.hero-content h1 em { color: var(--sage); font-style: normal; }
.hero-copy { max-width: 690px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.55; }
.hero-scroll { position: absolute; z-index: 2; right: 36px; bottom: 36px; display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.signal-strip { background: var(--ink); border-top: 1px solid rgba(255,255,255,.12); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid p { margin: 0; padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.74); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.signal-grid p:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.signal-grid span { margin-right: 12px; color: var(--coral); }

.story-section { padding: 120px 0; background: var(--paper-2); }
.story-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 86px; align-items: center; }
.story-copy h2 { max-width: 650px; margin-bottom: 32px; }
.story-copy p:not(.eyebrow) { max-width: 640px; }
.story-copy .text-link { margin-top: 18px; }
.story-image-wrap { position: relative; }
.story-image-wrap::before { position: absolute; z-index: 1; top: -18px; right: -18px; width: 32%; height: 44%; border-top: 8px solid var(--sage); border-right: 8px solid var(--sage); content: ""; }
.story-image-wrap img { position: relative; z-index: 0; width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; z-index: 2; right: -26px; bottom: -26px; min-width: 255px; padding: 22px 26px; background: var(--coral); color: var(--white); box-shadow: 0 18px 50px rgba(20,33,31,.22); }
.image-note span { display: block; margin-bottom: 4px; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.image-note strong { font-size: .92rem; }

.services-section, .content-section, .featured-section { padding: 110px 0; }
.services-section { background: var(--paper); }
.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.6fr .7fr; gap: 80px; align-items: end; }
.split-heading > p { max-width: 420px; margin-bottom: 4px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 290px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.2); transition: background 180ms ease, transform 180ms ease; }
.service-card:hover { z-index: 1; background: var(--paper-2); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(20,33,31,.08); }
.service-number { display: inline-block; margin-bottom: 70px; color: var(--coral-dark); font-size: .74rem; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { margin-bottom: 16px; font-size: 1.55rem; }
.service-card p { margin-bottom: 0; font-size: .94rem; }
.section-action { margin-top: 34px; text-align: right; }

.categories-section { padding: 110px 0; background: var(--ink); color: var(--white); }
.categories-section .section-heading h2 { color: var(--white); }
.categories-section .eyebrow { color: var(--sage); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card { position: relative; display: flex; min-height: 470px; padding: 30px; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--ink); transition: transform 180ms ease; }
.category-card:hover { transform: translateY(-5px); }
.category-card::before { position: absolute; right: -55px; top: -55px; width: 190px; height: 190px; border: 1px solid rgba(20,33,31,.18); border-radius: 50%; content: ""; }
.category-card.coral { background: #ef8a66; }
.category-card.sage { background: var(--sage); }
.category-card.amber { background: var(--amber); }
.category-number { margin: 0; color: var(--ink); font-family: "Arial Black", Arial, sans-serif; font-size: 4.8rem; line-height: 1; }
.category-card .eyebrow { color: var(--ink); opacity: .68; }
.category-card h3 { margin-bottom: 18px; font-size: 2.1rem; }
.category-card h3 a { text-decoration: none; }
.category-card h3 a::after { position: absolute; inset: 0; content: ""; }
.category-card p { color: rgba(20,33,31,.78); }
.category-card .text-link { position: relative; z-index: 1; }
.categories-first { padding-top: 40px; }

.featured-section { background: var(--paper-2); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: var(--paper-2); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.article-card:hover { border-color: rgba(20,33,31,.4); transform: translateY(-4px); box-shadow: 0 20px 54px rgba(20,33,31,.1); }
.article-visual, .article-feature { position: relative; display: block; overflow: hidden; aspect-ratio: 16/10; color: var(--ink); text-decoration: none; }
.article-visual::before, .article-feature::before { position: absolute; inset: 18%; border: 1px solid rgba(20,33,31,.35); border-radius: 50%; content: ""; }
.article-visual::after, .article-feature::after { position: absolute; left: 23%; top: 26%; width: 54%; height: 45%; border: 10px solid rgba(20,33,31,.8); border-top-color: transparent; content: ""; transform: rotate(-11deg); }
.article-visual > span, .article-feature > span { position: absolute; z-index: 2; right: 20px; bottom: 14px; font-family: "Arial Black", Arial, sans-serif; font-size: 3.8rem; line-height: 1; }
.visual-1 { background: #ef8a66; }
.visual-2 { background: var(--sage); }
.visual-3 { background: #e9d8b7; }
.visual-4 { background: var(--amber); }
.visual-5 { background: #9dc8bd; }
.visual-6 { background: #d9b7d4; }
.article-card-body { display: flex; padding: 26px; flex: 1; flex-direction: column; }
.article-meta { display: flex; margin-bottom: 20px; gap: 12px; justify-content: space-between; color: var(--ink-soft); font-size: .7rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.article-meta a { color: var(--forest); }
.article-card h3 { margin-bottom: 18px; font-size: 1.55rem; line-height: 1.08; }
.article-card h3 a { text-decoration: none; }
.article-card p:not(.article-meta) { font-size: .92rem; }
.article-card .text-link { margin-top: auto; align-self: flex-start; }

.cta-section { padding: 84px 0; background: var(--paper-2); }
.cta-panel { display: grid; padding: 66px; grid-template-columns: 1fr auto; gap: 50px; align-items: center; background: var(--forest); color: var(--white); box-shadow: var(--shadow); }
.cta-panel h2 { max-width: 760px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.3rem, 4vw, 4rem); }
.cta-panel p:not(.eyebrow) { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,.76); }
.cta-panel .eyebrow { color: var(--sage); }

.page-hero { padding: 190px 0 100px; background: var(--paper); }
.page-hero-inner { display: grid; grid-template-columns: 1fr .55fr; gap: 80px; align-items: end; }
.page-hero .eyebrow { grid-column: 1 / -1; margin-bottom: 2px; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.6rem, 7vw, 7.2rem); }
.page-intro { max-width: 500px; margin-bottom: 10px; font-size: 1.18rem; }
.page-hero-compact { padding-bottom: 80px; }
.page-hero-compact h1 { font-size: clamp(3.5rem, 6vw, 6.2rem); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-detail { padding: 50px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-detail .service-number { margin-bottom: 80px; }
.service-detail h2 { margin-bottom: 24px; font-size: 2.2rem; }
.service-detail ul { margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-detail li { position: relative; margin: 10px 0; padding-left: 20px; color: var(--ink-soft); }
.service-detail li::before { position: absolute; left: 0; color: var(--coral); content: "↗"; }
.method-section { padding: 110px 0; background: var(--ink); color: var(--white); }
.method-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.method-grid h2 { color: var(--white); }
.method-grid .eyebrow { color: var(--sage); }
.method-list { margin: 0; padding: 0; list-style: none; }
.method-list li { display: grid; padding: 28px 0; grid-template-columns: 70px 1fr; gap: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.method-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.method-list span { color: var(--coral); font-weight: 800; letter-spacing: .12em; }
.method-list h3 { margin-bottom: 8px; color: var(--white); font-size: 1.6rem; }
.method-list p { margin: 0; color: rgba(255,255,255,.68); }
.faq-section { padding: 110px 0; background: var(--paper-2); }
.faq-section h2 { margin-bottom: 46px; }
.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-section summary::after { position: absolute; right: 4px; content: "+"; font-size: 1.6rem; font-weight: 400; }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { max-width: 700px; padding-bottom: 24px; }
.related-categories { padding: 70px 0; background: var(--paper); }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-links a { display: grid; padding: 22px; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line); font-weight: 800; text-decoration: none; }
.related-links a:hover { background: var(--white); }
.related-links span { color: var(--coral-dark); font-size: .72rem; }

.article-header { padding: 180px 0 90px; background: var(--paper); }
.article-header-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.article-header h1 { margin-bottom: 26px; font-size: clamp(3.1rem, 5.7vw, 6rem); }
.article-dek { max-width: 760px; font-size: 1.22rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 32px; font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.article-feature { aspect-ratio: 1/1; box-shadow: var(--shadow); }
.article-layout { display: grid; padding-top: 100px; padding-bottom: 110px; grid-template-columns: 290px minmax(0, 720px); gap: 110px; justify-content: center; align-items: start; }
.article-aside { position: sticky; top: 120px; padding: 26px 0; border-top: 4px solid var(--coral); border-bottom: 1px solid var(--line); }
.article-aside a { color: var(--forest); font-weight: 800; }
.article-content section { margin-bottom: 58px; }
.article-content h2 { margin-bottom: 22px; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.05; }
.article-content p { font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; line-height: 1.85; }
.article-note { margin-top: 70px; padding: 28px; border-left: 5px solid var(--coral); background: var(--paper); }
.article-note p { margin-bottom: 8px; font-family: inherit; font-size: .9rem; line-height: 1.6; }
.related-articles { padding: 100px 0; background: var(--paper); }
.related-articles .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.about-story { background: var(--paper-2); }
.principles-section { padding: 110px 0; background: var(--ink); color: var(--white); }
.principles-section .section-heading h2 { color: var(--white); }
.principles-section .eyebrow { color: var(--sage); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.principle-grid article { min-height: 310px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.principle-grid span { color: var(--coral); font-size: .72rem; font-weight: 800; }
.principle-grid h3 { margin: 70px 0 18px; color: var(--white); font-size: 1.45rem; }
.principle-grid p { color: rgba(255,255,255,.66); font-size: .92rem; }
.identity-section { padding: 100px 0; background: var(--paper); }
.identity-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.identity-grid h2 { font-size: 3rem; }
.identity-grid dl { margin: 0; }
.identity-grid dl div { display: grid; padding: 18px 0; grid-template-columns: 180px 1fr; border-top: 1px solid var(--line); }
.identity-grid dl div:last-child { border-bottom: 1px solid var(--line); }
.identity-grid dt { color: var(--ink-soft); font-size: .75rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.identity-grid dd { margin: 0; font-weight: 700; }

.contact-section { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.contact-details h2 { margin-bottom: 24px; font-size: 3rem; }
.contact-email { display: inline-block; margin-bottom: 50px; color: var(--forest); font-size: 1.18rem; font-weight: 800; }
.contact-details dl { margin: 0; }
.contact-details dl div { display: grid; padding: 18px 0; grid-template-columns: 145px 1fr; border-top: 1px solid var(--line); }
.contact-details dt { color: var(--ink-soft); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-details dd { margin: 0; }
.contact-note { margin-top: 34px; font-size: .87rem; }
.inquiry-form { padding: 46px; background: var(--paper); box-shadow: var(--shadow); }
.form-heading h2 { margin-bottom: 36px; font-size: 2.7rem; }
.inquiry-form > label:not(.checkbox-label) { display: block; margin-bottom: 22px; color: var(--ink); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 0; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: 0; background: transparent; color: var(--ink); text-transform: none; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-bottom-color: var(--coral); box-shadow: 0 2px 0 var(--coral); }
.checkbox-label { display: grid; margin: 28px 0; grid-template-columns: auto 1fr; gap: 12px; align-items: start; color: var(--ink-soft); font-size: .84rem; }
.checkbox-label input { width: 18px; height: 18px; margin: 3px 0 0; }
.form-help { margin: 18px 0 0; font-size: .8rem; }

.legal-layout { display: grid; padding-top: 90px; padding-bottom: 120px; grid-template-columns: 240px minmax(0, 760px); gap: 100px; justify-content: center; align-items: start; }
.legal-layout > aside { position: sticky; top: 120px; padding-top: 18px; border-top: 4px solid var(--coral); }
.legal-layout > aside p { font-size: .9rem; overflow-wrap: anywhere; }
.legal-layout > aside a { color: var(--forest); font-size: .88rem; overflow-wrap: anywhere; }
.legal-section { padding: 0 0 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 22px; font-size: 2rem; }
.legal-section p, .legal-section li { font-size: 1rem; line-height: 1.8; }

.site-footer { padding-top: 76px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; padding-bottom: 66px; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 56px; }
.footer-brand p { max-width: 310px; margin: 22px 0 0; color: rgba(255,255,255,.6); }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main a, .footer-main span { color: rgba(255,255,255,.67); font-size: .84rem; text-decoration: none; }
.footer-main a:hover { color: var(--white); text-decoration: underline; }
.footer-label { margin-bottom: 12px; color: var(--sage) !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-identity { display: grid; padding: 28px 0; grid-template-columns: 1fr 1fr; gap: 50px; border-top: 1px solid rgba(255,255,255,.15); }
.legal-identity p { margin: 0; color: rgba(255,255,255,.7); font-size: .82rem; }
.legal-identity strong { color: var(--white); }
.legal-identity p:last-child { text-align: right; }
.footer-bottom { display: flex; padding: 24px 0 30px; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.footer-bottom p, .legal-links a { margin: 0; color: rgba(255,255,255,.53); font-size: .72rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.legal-links a:hover { color: var(--white); }

.cookie-banner { position: fixed; z-index: 150; right: 24px; bottom: 24px; display: grid; width: min(640px, calc(100% - 48px)); padding: 24px; grid-template-columns: 1fr auto; gap: 26px; align-items: end; background: var(--ink); color: var(--white); box-shadow: 0 24px 90px rgba(0,0,0,.34); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: 8px; color: rgba(255,255,255,.72); font-size: .83rem; line-height: 1.55; }
.cookie-banner .eyebrow { color: var(--sage); }
.cookie-banner a { color: var(--white); font-size: .78rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 44px; padding: 11px 15px; font-size: .68rem; }

@media (max-width: 1040px) {
  .site-nav { gap: 19px; }
  .story-grid, .contact-grid { gap: 54px; }
  .service-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; }
  .footer-main { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 0 0; display: flex; padding: 44px 24px; flex-direction: column; align-items: flex-start; gap: 0; background: var(--paper-2); transform: translateX(100%); transition: transform 220ms ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a, .inner-page .site-nav a, .site-header.is-scrolled .site-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: "Arial Black", Arial, sans-serif; font-size: 1.8rem; letter-spacing: -.03em; text-transform: none; }
  .site-nav .nav-cta, .inner-page .site-nav .nav-cta, .site-header.is-scrolled .site-nav .nav-cta { margin-top: 22px; padding: 16px; border: 0; background: var(--coral); color: var(--white); text-align: center; }
  .home-hero { min-height: 780px; align-items: flex-end; }
  .hero-media { background-position: 60% center; }
  .hero-content { padding: 140px 0 110px; }
  .hero-scroll { display: none; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid p:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .signal-grid p:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .story-section, .services-section, .content-section, .featured-section, .categories-section, .principles-section, .contact-section { padding: 82px 0; }
  .story-grid, .split-heading, .page-hero-inner, .method-grid, .identity-grid, .contact-grid, .article-header-grid, .article-layout { grid-template-columns: 1fr; gap: 46px; }
  .story-image-wrap { margin-right: 18px; }
  .image-note { right: -18px; }
  .section-heading { margin-bottom: 40px; }
  .split-heading { gap: 24px; }
  .page-hero { padding: 150px 0 78px; }
  .page-hero .eyebrow { grid-column: auto; }
  .service-detail { padding: 34px; }
  .service-detail .service-number { margin-bottom: 45px; }
  .cta-panel { padding: 48px; grid-template-columns: 1fr; gap: 30px; }
  .article-header { padding: 145px 0 70px; }
  .article-header-grid { gap: 38px; }
  .article-feature { max-width: 500px; }
  .article-layout { padding-top: 70px; padding-bottom: 80px; }
  .article-aside, .legal-layout > aside { position: static; }
  .legal-layout { padding-top: 68px; padding-bottom: 90px; grid-template-columns: 1fr; gap: 42px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand, .brand img { width: 162px; height: 46px; }
  .hero-content h1 { font-size: clamp(3.15rem, 16vw, 5.4rem); }
  .hero-copy { font-size: 1rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid p { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .signal-grid p:first-child { border-top: 0; }
  .story-grid { gap: 40px; }
  .image-note { position: relative; right: auto; bottom: auto; width: 100%; min-width: 0; }
  .story-image-wrap::before { display: none; }
  .service-grid, .service-detail-grid, .article-grid, .principle-grid, .related-links, .related-articles .article-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .service-number { margin-bottom: 46px; }
  .category-card { min-height: 390px; }
  .article-meta { align-items: flex-start; flex-direction: column; }
  .cta-section { padding: 44px 0; }
  .cta-panel { padding: 34px 26px; }
  .page-hero h1 { overflow-wrap: anywhere; font-size: clamp(3rem, 15vw, 4.6rem); }
  .method-grid { gap: 32px; }
  .principle-grid article { min-height: 270px; }
  .identity-grid dl div, .contact-details dl div { grid-template-columns: 1fr; gap: 5px; }
  .inquiry-form { padding: 30px 22px; }
  .form-heading h2 { font-size: 2.25rem; }
  .article-byline { align-items: flex-start; flex-direction: column; }
  .article-content p { font-size: 1.04rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
  .legal-identity, .footer-bottom { grid-template-columns: 1fr; }
  .legal-identity { display: grid; gap: 14px; }
  .legal-identity p:last-child { text-align: left; }
  .footer-bottom { display: flex; align-items: flex-start; flex-direction: column; }
  .legal-links { justify-content: flex-start; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-actions .button { flex: 1; }
}

@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; }
}
