:root {
  --jade-950: #073f36;
  --jade-800: #0c5547;
  --jade-600: #2c7965;
  --jade-300: #90cbb1;
  --mint: #dff1e6;
  --ivory: #f7f4ea;
  --sand: #e9d6ab;
  --bronze: #9b7648;
  --ink: #17352f;
  --white: #fffdf7;
  --line: rgba(12, 85, 71, .18);
  --shadow: 0 24px 60px rgba(8, 64, 53, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(144, 203, 177, .2), transparent 22rem),
    linear-gradient(115deg, rgba(255,255,255,.5), transparent 35%),
    var(--ivory);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Newsreader", serif;
  font-weight: 500;
  line-height: 1.05;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.1rem); letter-spacing: -.035em; }
h3 { font-size: 1.65rem; }
.sr-only, .skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.skip:focus {
  width: auto; height: auto; clip: auto; z-index: 100;
  padding: .7rem 1rem; background: var(--white); left: 1rem; top: 1rem;
}
.site-header {
  width: min(1440px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; font-weight: 600; letter-spacing: -.02em; }
.brand-mark {
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  border-radius: 42% 58% 51% 49%;
  background: linear-gradient(135deg, var(--jade-950), var(--jade-600));
  color: var(--sand); font-size: .72rem; box-shadow: inset 0 1px 8px rgba(255,255,255,.25);
}
.main-nav { display: flex; align-items: center; gap: 2rem; font-size: .88rem; }
.main-nav a:not(.nav-cta) { border-bottom: 1px solid transparent; }
.main-nav a:hover { border-color: var(--jade-600); }
.nav-cta { padding: .65rem 1.2rem; border: 1px solid var(--jade-600); border-radius: 100px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 1.6rem; height: 1px; background: var(--ink); margin: .4rem; }

.hero { width: min(1440px, calc(100% - 4rem)); margin: 0 auto; padding: 2rem 0 4rem; }
.hero-kicker { display: flex; justify-content: space-between; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2.5rem; color: var(--jade-600); }
.hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 620px; }
.hero-copy {
  position: relative; z-index: 2; align-self: center;
  background: linear-gradient(140deg, rgba(255,253,247,.97), rgba(223,241,230,.88));
  margin-right: -5rem; padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 4px 80px 4px 80px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero h1 { font-size: clamp(3.2rem, 6vw, 6.2rem); margin-bottom: 1.5rem; }
.eyebrow, .meta {
  color: var(--jade-600); text-transform: uppercase; letter-spacing: .16em;
  font-size: .7rem; font-weight: 600;
}
.standfirst { font-size: 1.1rem; max-width: 42rem; }
.hero-visual { margin: 0; min-height: 620px; position: relative; overflow: hidden; border-radius: 100px 4px 100px 4px; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(9,74,61,.05), rgba(9,74,61,.35));
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual figcaption {
  position: absolute; z-index: 2; bottom: 1.5rem; right: 1.5rem;
  color: white; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
}
.text-link { display: inline-flex; gap: .6rem; align-items: center; font-size: .84rem; font-weight: 600; border-bottom: 1px solid var(--jade-600); padding-bottom: .25rem; }
.ticker {
  display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--jade-950); color: var(--mint); padding: 1.1rem 2rem;
  font-size: .78rem; letter-spacing: .03em;
}
.ticker span { color: var(--sand); text-transform: uppercase; letter-spacing: .15em; }
.ticker p { margin: 0; }
.section { width: min(1240px, calc(100% - 4rem)); margin: 0 auto; padding: 7rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-head h2 { max-width: 720px; margin-bottom: 0; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.article-card { border-top: 1px solid var(--line); padding-top: 1rem; }
.article-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; border-radius: 3px 28px 3px 28px; margin-bottom: 1.4rem; }
.article-card h3 { margin-bottom: .8rem; }
.article-card p:last-child { color: #4c655f; font-size: .9rem; }
.analysis-band {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 620px; background: var(--jade-800); color: var(--white);
}
.analysis-band > div { padding: clamp(3rem, 8vw, 8rem); align-self: center; }
.analysis-band .eyebrow { color: var(--jade-300); }
.analysis-band img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .82; }
.button {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 100px; padding: .85rem 1.5rem;
  background: var(--jade-800); color: white; cursor: pointer; font-size: .83rem; font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.button::before {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.18); transform: scale(0); transition: transform .8s ease;
}
.button:hover::before { transform: scale(12); }
.button.sand { background: var(--sand); color: var(--jade-950); margin-top: 1rem; }
.button.secondary { background: transparent; color: var(--jade-950); border: 1px solid var(--line); }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.newsletter h2 { margin-bottom: 1rem; }
label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: .45rem; }
.form-row { display: flex; gap: .6rem; }
input, textarea, select {
  width: 100%; padding: .9rem 1rem; border: 1px solid var(--line);
  background: rgba(255,255,255,.55); border-radius: 3px 16px 3px 16px; color: var(--ink);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--jade-600); box-shadow: 0 0 0 3px rgba(44,121,101,.1); }
.form-message { min-height: 1.6rem; margin-top: .7rem; font-size: .82rem; }
.form-message.success { color: var(--jade-800); }
.form-message.error, .field-error, .inline-error { color: #9b342d; font-size: .78rem; }

.page-header { width: min(1100px, calc(100% - 4rem)); margin: 0 auto; padding: 8rem 0 5rem; }
.page-header > p:not(.eyebrow):not(.updated) { font-size: 1.25rem; max-width: 730px; }
.page-header.compact { padding-bottom: 1rem; }
.article-list { padding-top: 1rem; }
.article-list article { display: grid; grid-template-columns: .65fr 1fr; gap: 3rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.article-list img { aspect-ratio: 1.7; object-fit: cover; width: 100%; border-radius: 3px 35px 3px 35px; }
.article-list h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); margin-bottom: .8rem; }
.feature-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center; padding-top: 1rem; }
.feature-story img { border-radius: 80px 4px 80px 4px; min-height: 560px; object-fit: cover; }
.plain-list { padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-list li { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.note { background: linear-gradient(140deg, var(--mint), rgba(255,255,255,.4)); padding: 3rem; border: 1px solid rgba(255,255,255,.7); border-radius: 4px 50px 4px 50px; }
.note span, .service-number { color: var(--bronze); font-size: .72rem; letter-spacing: .15em; }
.note h2 { font-size: 2.5rem; margin-top: 3rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); padding-top: 1rem; padding-bottom: 1rem; }
.service-grid article { background: var(--ivory); padding: 3rem 2rem; }
.service-grid h2 { margin-top: 4rem; font-size: 2.5rem; }
.detail { border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 2rem; color: var(--jade-600); font-size: .75rem; }
.cta-panel {
  width: min(1240px, calc(100% - 4rem)); margin: 4rem auto 7rem; padding: 4rem;
  border-radius: 4px 70px 4px 70px; background: linear-gradient(115deg, var(--jade-950), var(--jade-600));
  color: white; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-panel h2 { margin-bottom: 0; }
.editorial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: center; padding-top: 1rem; }
.editorial img { border-radius: 60px 4px 60px 4px; }
figcaption { font-size: .75rem; color: var(--jade-600); margin-top: .6rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.values div { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.values strong { color: var(--bronze); font-size: .72rem; }
.values h3 { margin: 2rem 0 .5rem; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7rem; padding-top: 2rem; }
address { font-style: normal; margin: 1rem 0; }
.contact-aside a { border-bottom: 1px solid var(--jade-600); }
.response-time { margin-top: 3rem; color: var(--jade-600); font-size: .8rem; }
.contact-form { padding: 2.5rem; background: rgba(255,255,255,.46); border: 1px solid rgba(255,255,255,.8); border-radius: 4px 45px 4px 45px; }
.field { margin-bottom: 1.2rem; }
.field-error { display: block; min-height: 1.2rem; }
.check { display: flex; gap: .7rem; font-weight: 400; margin-bottom: .2rem; }
.check input { width: auto; margin-top: .4rem; }
.contact-form .button { margin-top: 1rem; }
.legal { max-width: 800px; }
.legal h1 { margin-bottom: 1rem; }
.legal h2 { font-size: 2rem; margin-top: 3rem; }
.updated { font-size: .75rem; color: var(--jade-600); border-bottom: 1px solid var(--line); padding-bottom: 2rem; margin-bottom: 3rem; }
.not-found { min-height: 70vh; display: grid; place-content: center; justify-items: start; width: min(800px, calc(100% - 4rem)); margin: auto; position: relative; overflow: hidden; }
.not-found h1 { font-size: clamp(3rem, 7vw, 6rem); position: relative; }
.ghost-number { position: absolute; font-family: "Newsreader"; font-size: 30vw; color: rgba(144,203,177,.14); z-index: -1; }

.site-footer {
  background: #062f29; color: var(--mint); padding: 5rem max(2rem, calc((100vw - 1240px)/2));
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem;
}
.footer-brand { margin-bottom: 1rem; color: white; }
.site-footer h2 { color: var(--sand); font-family: "Manrope"; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; }
.site-footer a:not(.brand), .site-footer address { display: block; font-size: .8rem; margin-bottom: .55rem; color: #b9d7cc; }
.site-footer p { font-size: .84rem; max-width: 280px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; margin: 1rem 0 0; color: #86aaa0; }
.cookie-banner {
  position: fixed; z-index: 50; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  width: min(900px, calc(100% - 2rem)); padding: 1.3rem 1.5rem;
  background: rgba(247,244,234,.96); border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 80px rgba(7,63,54,.25); border-radius: 4px 28px 4px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .82rem; }
.cookie-banner a { text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 2rem); }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; z-index: 20; left: 1rem; right: 1rem; top: 5rem;
    padding: 1.5rem; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .hero, .section, .page-header, .cta-panel { width: calc(100% - 2rem); }
  .hero { padding-top: 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { margin: 0 0 -3rem; border-radius: 3px 45px 3px 45px; }
  .hero-visual { min-height: 460px; }
  .article-grid, .service-grid, .values { grid-template-columns: 1fr; }
  .analysis-band, .newsletter, .feature-story, .editorial, .contact-layout { grid-template-columns: 1fr; }
  .analysis-band img { max-height: 500px; }
  .newsletter, .contact-layout { gap: 2rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 3.2rem; }
  .hero-grid { min-height: 0; }
  .hero h1 { font-size: 3.2rem; }
  .hero-copy { padding: 1.6rem; }
  .hero-visual { min-height: 360px; }
  .ticker { overflow-x: auto; justify-content: flex-start; }
  .ticker p, .ticker span { white-space: nowrap; }
  .section { padding: 4.5rem 0; }
  .section-head { align-items: start; flex-direction: column; }
  .article-list article, .two-columns { grid-template-columns: 1fr; gap: 1.2rem; }
  .article-list { padding-top: 0; }
  .feature-story { gap: 2rem; }
  .feature-story img { min-height: 360px; }
  .cta-panel { padding: 2rem; flex-direction: column; align-items: start; }
  .contact-form { padding: 1.3rem; }
  .form-row { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 1rem; }
  .cookie-actions .button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
