:root {
  --ink: #0f2a21;
  --ink-2: #17382d;
  --ink-3: #24483a;
  --paper: #edf5ef;
  --paper-2: #f8fbf7;
  --white: #ffffff;
  --accent: #c8f53e;
  --accent-2: #a9d928;
  --muted: #6c7c74;
  --line: rgba(15, 42, 33, .16);
  --line-light: rgba(255, 255, 255, .16);
  --shadow: 0 22px 60px rgba(9, 31, 23, .12);
  --radius: 22px;
  --container: 1280px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.container-wide { width: min(1480px, 100%); margin-inline: auto; }
.section { position: relative; padding: 118px 0; overflow: hidden; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark p { color: rgba(237, 245, 239, .72); }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
}
.nav-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
}
.brand-name { font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: 13px; font-weight: 700; color: rgba(15, 42, 33, .74); transition: color .25s ease; }
.site-nav a:hover { color: var(--ink); }
.nav-cta { justify-self: end; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-menu-label,
.site-nav .nav-mobile-cta { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); box-shadow: 0 9px 24px rgba(15, 42, 33, .2); }
.button-dark:hover { background: var(--ink-2); }
.button-accent { background: var(--accent); color: var(--ink); box-shadow: 0 12px 28px rgba(182, 233, 43, .22); }
.button-accent:hover { background: #d3ff4c; box-shadow: 0 14px 34px rgba(182, 233, 43, .32); }
.button-outline-light { border-color: rgba(255,255,255,.42); color: var(--paper); }
.button-outline-light:hover { background: var(--paper); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(15,42,33,.4); padding-bottom: 3px; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: var(--paper); border-color: rgba(255,255,255,.4); }

.eyebrow {
  margin: 0 0 13px;
  color: #6a7b52;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .01em;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 10px 5px 0; background: currentColor; }
.eyebrow-light { color: var(--accent); }

h1, h2, h3, h4 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; }
h1 { font-size: clamp(52px, 6.5vw, 96px); font-weight: 600; }
h2 { font-size: clamp(44px, 5vw, 74px); font-weight: 600; }
h1 em, h2 em { color: #6f8d31; font-style: normal; }
.section-dark h1 em, .section-dark h2 em, .cta-section h2 em { color: var(--accent); }
h3 { font-size: 24px; letter-spacing: -.025em; }
p { margin: 0 0 20px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-heading > div { max-width: 790px; }
.section-heading > p { max-width: 390px; margin: 0 0 8px; color: var(--muted); }
.section-dark .section-heading > p { color: rgba(237,245,239,.66); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split-wide { gap: 100px; }
.section-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 17px; }
.section-dark .section-copy > p:not(.eyebrow) { color: rgba(237,245,239,.72); }
.section-copy h2 { margin-bottom: 30px; }

.hero {
  position: relative;
  min-height: 880px;
  padding-top: 176px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(198,245,62,.18), transparent 25%),
    linear-gradient(180deg, #f6fbf4 0%, var(--paper) 76%, #e4eee7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,42,33,.08) .7px, transparent .7px);
  background-size: 15px 15px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
  opacity: .45;
}
.hero-glow { position: absolute; width: 520px; height: 520px; left: 50%; top: 80px; transform: translateX(-50%); background: radial-gradient(circle, rgba(200,245,62,.28), transparent 68%); filter: blur(35px); }
.hero-copy { position: relative; z-index: 2; text-align: center; }
.hero-copy h1 { max-width: 1050px; margin: 0 auto; }
.hero-lead { max-width: 760px; margin: 24px auto 0; color: #5e7267; font-size: 18px; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 26px; margin-top: 31px; }
.hero-art { position: relative; z-index: 1; margin-top: 27px; }
.hero-art img { width: 100%; height: auto; }
.metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248,251,247,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.metrics div { display: flex; flex-direction: column; align-items: center; padding: 23px 18px; border-right: 1px solid var(--line); }
.metrics div:last-child { border-right: 0; }
.metrics strong { font-family: var(--serif); font-size: 36px; line-height: 1; }
.metrics span { color: var(--muted); font-size: 12px; font-weight: 700; }

.section-rail { position: fixed; z-index: 90; right: 18px; top: 50%; display: flex; flex-direction: column; gap: 11px; transform: translateY(-50%); }
.section-rail a { position: relative; width: 10px; height: 10px; border: 2px solid rgba(15,42,33,.6); border-radius: 50%; background: rgba(237,245,239,.75); }
.section-rail a::before { content: attr(data-label); position: absolute; right: 18px; top: 50%; padding: 3px 8px; border-radius: 5px; background: var(--ink); color: white; font-size: 10px; opacity: 0; transform: translateY(-50%) translateX(5px); pointer-events: none; transition: .2s; }
.section-rail a:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.section-rail a.active { background: var(--accent); border-color: var(--ink); transform: scale(1.25); }

.about { padding-top: 105px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 29px 0 33px; }
.chip-row span, .tag-row span { padding: 6px 10px; border: 1px solid var(--line-light); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.visual-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); box-shadow: var(--shadow); overflow: hidden; }
.section-dark .visual-card { border-color: var(--line-light); background: rgba(255,255,255,.03); box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.globe-card { padding: 24px; }
.globe-card::after { content: "GLOBAL WORDPRESS DELIVERY"; position: absolute; left: 26px; bottom: 20px; color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .18em; }

.capabilities { background: var(--paper-2); }
.infrastructure-card { padding: 25px; background: #e8f1eb; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0; border-block: 1px solid var(--line); }
.mini-stats article { padding: 18px 14px 18px 0; }
.mini-stats strong { display: block; font-family: var(--serif); font-size: 30px; line-height: 1; }
.mini-stats span { color: var(--muted); font-size: 11px; }
.section-copy blockquote { margin: 28px 0 0; padding-left: 20px; border-left: 2px solid var(--accent-2); color: #40554a; font-family: var(--serif); font-size: 22px; font-style: italic; }

.services::before, .industries::before, .process::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent); }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-item { min-height: 355px; padding: 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s, transform .3s; }
.service-item:hover { background: rgba(255,255,255,.045); }
.service-no { color: rgba(255,255,255,.38); font-size: 11px; font-weight: 800; }
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; margin: 32px 0 22px; border: 1px solid rgba(200,245,62,.45); border-radius: 12px; color: var(--accent); font-size: 22px; }
.service-item h3 { max-width: 260px; margin-bottom: 15px; font-family: var(--serif); font-size: 31px; font-weight: 600; }
.service-item p { color: rgba(237,245,239,.64); font-size: 13px; }
.service-item ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0 0; padding: 0; list-style: none; }
.service-item li { padding: 5px 8px; border-radius: 4px; background: rgba(200,245,62,.1); color: #d9f8a2; font-size: 9px; font-weight: 800; text-transform: uppercase; }

.evidence { background: #f3f8f4; }
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 28px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.proof-stats div { padding: 21px 24px; border-right: 1px solid var(--line); }
.proof-stats div:last-child { border-right: 0; }
.proof-stats strong { display: block; font-family: var(--serif); font-size: 32px; line-height: 1; }
.proof-stats span { color: var(--muted); font-size: 11px; }
.case-list { display: grid; gap: 18px; }
.case-card { display: grid; grid-template-columns: 70px minmax(0, 1fr) minmax(350px, .9fr); align-items: center; gap: 28px; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 12px 35px rgba(15,42,33,.06); }
.case-number { align-self: start; color: #84948b; font-family: var(--serif); font-size: 34px; }
.case-type { margin-bottom: 8px; color: #79922e; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-info h3 { margin-bottom: 13px; font-family: var(--serif); font-size: 39px; font-weight: 600; }
.case-info > p:not(.case-type) { color: var(--muted); font-size: 13px; }
.case-info .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.case-info .tag-row span { border-color: var(--line); color: #53675d; }
.browser-mock { align-self: stretch; min-height: 220px; border-radius: 13px; overflow: hidden; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 16px 30px rgba(15,42,33,.12); }
.browser-top { display: flex; align-items: center; gap: 5px; height: 29px; padding: 0 10px; background: #e8ede9; }
.browser-top i { width: 6px; height: 6px; border-radius: 50%; background: #9eaaa3; }
.browser-top b { margin-left: auto; margin-right: auto; color: #7c8982; font-size: 8px; font-weight: 700; }
.browser-body { height: calc(100% - 29px); padding: 30px; }
.browser-lime .browser-body { background: #111b16; color: white; }
.meal-ui > span { color: var(--accent); font-family: var(--serif); font-size: 29px; }
.meal-ui > div { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 25px 0; }
.meal-ui b { display: grid; place-items: center; height: 54px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; font-family: var(--serif); font-size: 24px; }
.meal-ui b:nth-child(2) { border-color: var(--accent); color: var(--accent); }
.meal-ui small { color: rgba(255,255,255,.55); }
.browser-stone .browser-body { background: #ede7df; }
.calendar-ui strong, .portal-ui strong { font-family: var(--serif); font-size: 24px; }
.calendar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; margin: 24px 0; }
.calendar-grid span { display: grid; place-items: center; height: 44px; background: white; border-radius: 8px; font-size: 12px; }
.calendar-grid .active { background: var(--ink); color: var(--accent); }
.calendar-ui small { padding: 6px 8px; border-radius: 5px; background: white; }
.browser-rust .browser-body { background: #f9f3ec; }
.portal-ui > div { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 24px 0; }
.portal-ui > div span { padding: 15px; border: 1px solid #ded1c3; border-radius: 10px; color: #816c5c; font-size: 9px; text-transform: uppercase; }
.portal-ui b { color: #9f5636; font-size: 16px; text-transform: none; }
.case-card-cta { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.case-card-cta .case-info > p { color: rgba(237,245,239,.64); }
.code-panel { display: flex; flex-direction: column; justify-content: center; min-height: 210px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: #0b2119; color: #9fb0a7; font-family: monospace; font-size: 12px; line-height: 1.9; }
.code-panel b { color: var(--accent); }
.code-panel em { padding-left: 20px; color: #e9f3eb; font-style: normal; }

.testimonial-section { padding-block: 100px; }
.testimonial-feature { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; min-height: 340px; padding: 45px; border: 1px solid var(--line-light); border-radius: 18px; background: rgba(255,255,255,.025); }
.quote-mark { position: absolute; left: 28px; top: 20px; color: var(--accent); font-family: var(--serif); font-size: 70px; line-height: 1; }
.testimonial-feature blockquote { align-self: center; margin: 40px 0 20px; max-width: 660px; font-family: var(--serif); font-size: clamp(27px, 3vw, 40px); line-height: 1.15; }
.client-meta { display: flex; align-items: center; gap: 13px; align-self: end; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 900; }
.client-meta strong, .client-meta span { display: block; }
.client-meta span { color: rgba(237,245,239,.55); font-size: 11px; }
.testimonial-visual { grid-column: 2; grid-row: 1 / span 2; }
.video-frame { display: grid; place-items: center; align-content: center; gap: 15px; height: 100%; min-height: 250px; border-radius: 12px; background: radial-gradient(circle at 50% 35%, rgba(200,245,62,.25), transparent 34%), linear-gradient(135deg, #315747, #122d23); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.play { display: grid; place-items: center; width: 58px; height: 58px; padding-left: 3px; border-radius: 50%; background: var(--accent); color: var(--ink); box-shadow: 0 0 0 10px rgba(200,245,62,.1); }
.video-frame span { color: rgba(255,255,255,.62); font-size: 11px; }

.engagement { background: #eff5f0; }
.engagement-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.grid-label { margin-bottom: 14px; color: #6e7e75; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.engagement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.engagement-card { min-height: 278px; padding: 22px; border: 1px solid var(--line); border-radius: 13px; background: var(--ink); color: var(--paper); box-shadow: 0 10px 24px rgba(15,42,33,.1); transition: transform .25s, box-shadow .25s; }
.engagement-card:hover { transform: translateY(-5px); box-shadow: 0 18px 30px rgba(15,42,33,.18); }
.engagement-card > span { color: rgba(255,255,255,.35); font-size: 10px; }
.engagement-card i { display: block; margin: 20px 0 4px; color: var(--accent); font-family: var(--serif); font-size: 15px; }
.engagement-card h4 { min-height: 56px; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.engagement-card p { margin-top: 14px; color: rgba(237,245,239,.6); font-size: 11px; }
.engagement-card a { color: var(--accent); font-size: 10px; font-weight: 800; }
.package-stack { display: grid; gap: 11px; }
.package-card { padding: 21px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.package-card span { color: #76912e; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.package-card h4 { margin: 7px 0; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.package-card p { margin: 0; color: var(--muted); font-size: 11px; }
.package-button { width: 100%; margin-top: 12px; }

.industry-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.industry-grid article { min-height: 230px; padding: 27px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.industry-grid span, .audience-grid span { color: var(--accent); font-size: 10px; font-weight: 800; }
.industry-grid h3 { margin: 45px 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 600; }
.industry-grid p { margin: 0; color: rgba(237,245,239,.6); font-size: 12px; }

.audiences { background: #f8fbf8; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.audience-grid article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); background: white; }
.audience-grid article:last-child { border-right: 0; }
.audience-grid h3 { margin: 65px 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 600; }
.audience-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.why-visual { position: relative; min-height: 500px; border: 1px solid var(--line-light); border-radius: 20px; overflow: hidden; background: #142f25; }
.pattern-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(200,245,62,.42) 1px, transparent 1.5px); background-size: 22px 22px; transform: perspective(520px) rotateX(48deg) scale(1.2); transform-origin: center bottom; opacity: .45; }
.why-card { position: absolute; left: 32px; bottom: 32px; max-width: 360px; padding: 28px; border-radius: 14px; background: rgba(15,42,33,.88); backdrop-filter: blur(12px); box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.why-card span { color: var(--accent); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.why-card h3 { margin: 10px 0 14px; font-family: var(--serif); font-size: 35px; font-weight: 600; }
.why-card p { margin: 0; font-size: 12px; }
.reason-list { display: grid; margin-top: 35px; border-top: 1px solid var(--line-light); }
.reason-list article { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.reason-list article > span { color: var(--accent); font-size: 10px; }
.reason-list h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.reason-list p { margin: 0; font-size: 12px; }

.founder { background: #eef5ef; }
.founder-card { display: grid; grid-template-columns: 430px 1fr; gap: 55px; max-width: 1000px; margin: auto; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
.founder-image { border-radius: 14px; background: var(--accent); overflow: hidden; }
.founder-copy { align-self: center; padding-right: 30px; }
.founder-copy h3 { margin: 4px 0 20px; font-family: var(--serif); font-size: 48px; font-weight: 600; }
.founder-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.founder-copy .tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0; }
.founder-copy .tag-row span { border-color: var(--line); color: #60736a; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.process-grid article { min-height: 360px; padding: 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-meta { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.process-meta span { color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.process-meta b { color: rgba(255,255,255,.37); font-size: 9px; text-transform: uppercase; }
.process-grid h3 { margin: 70px 0 18px; font-family: var(--serif); font-size: 34px; font-weight: 600; }
.process-grid p { font-size: 12px; }
.process-grid a { display: inline-block; margin-top: 20px; color: var(--accent); font-size: 11px; font-weight: 800; }

.faq { background: #f8fbf8; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro h2 { margin-bottom: 22px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.ask-card { display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: center; margin-top: 35px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.ask-card img { border-radius: 10px; background: var(--accent); }
.ask-card strong { font-family: var(--serif); font-size: 22px; }
.ask-card p { margin: 5px 0 9px; color: var(--muted); font-size: 11px; }
.ask-card a { font-size: 10px; font-weight: 800; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 27px; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-family: var(--sans); font-size: 22px; font-weight: 400; transition: transform .25s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 55px 20px 0; color: var(--muted); font-size: 13px; }

.cta-section { position: relative; padding: 105px 0; overflow: hidden; background: var(--ink); color: var(--paper); text-align: center; }
.cta-lines { position: absolute; inset: -40% -10%; background: repeating-radial-gradient(ellipse at center, transparent 0 20px, rgba(200,245,62,.12) 21px 22px); transform: scaleY(.55); opacity: .55; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { max-width: 940px; margin: auto; }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 33px; }
.cta-note { margin: 16px 0 0; color: rgba(237,245,239,.5); font-size: 11px; }

.site-footer { position: relative; padding-top: 82px; background: var(--paper); overflow: hidden; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.6fr 1fr 1fr .8fr; gap: 50px; padding-bottom: 90px; }
.footer-about p { max-width: 380px; margin: 23px 0 15px; color: var(--muted); font-size: 13px; }
.footer-about > a:last-child { font-weight: 800; }
.footer-grid h3 { margin-bottom: 17px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid > div:not(.footer-about) a { display: block; margin: 9px 0; color: #607169; font-size: 12px; }
.footer-grid a:hover { color: var(--ink); }
.footer-landscape { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: linear-gradient(175deg, transparent 0 38%, #d8e8da 39% 45%, #a9c7a9 46% 49%, #789b7a 50% 58%, #486f55 59% 63%, #244b37 64% 100%); opacity: .95; }
.footer-landscape::before { content: ""; position: absolute; left: 0; right: 0; top: 58px; height: 34px; background-image: radial-gradient(ellipse at bottom, #214f36 0 55%, transparent 56%); background-size: 45px 35px; background-repeat: repeat-x; }
.footer-bottom { position: relative; z-index: 3; display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(15,42,33,.23); color: rgba(237,245,239,.75); font-size: 10px; }
.footer-brand .brand-mark { background: var(--ink); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .section { padding: 95px 0; }
  .split-wide { gap: 55px; }
  .service-grid, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .engagement-layout { grid-template-columns: 1fr; }
  .package-stack { grid-template-columns: repeat(2,1fr); }
  .case-card { grid-template-columns: 55px 1fr; }
  .case-card > :last-child { grid-column: 2; }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid article:nth-child(2) { border-right: 0; }
  .audience-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .faq-layout { gap: 50px; }
  .founder-card { grid-template-columns: 360px 1fr; }
}

@media (max-width: 1024px) {
  .container { width: min(100% - 36px, var(--container)); }
  .site-header { overflow: visible; }
  .nav-wrap { position: relative; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
  .brand { position: relative; z-index: 122; min-width: 0; max-width: calc(100% - 58px); }
  .nav-toggle {
    position: relative;
    z-index: 122;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(15,42,33,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    box-shadow: 0 8px 24px rgba(15,42,33,.10);
    cursor: pointer;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .nav-toggle:hover { transform: scale(1.04); border-color: rgba(15,42,33,.22); box-shadow: 0 11px 28px rgba(15,42,33,.14); }
  .nav-toggle span { width: 20px; height: 2px; margin: 0; border-radius: 99px; transition: transform .35s cubic-bezier(.2,.75,.2,1), opacity .22s ease, width .25s ease; }
  .nav-cta { display: none; }
  .site-nav {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    left: auto;
    z-index: 121;
    display: grid;
    width: min(440px, calc(100vw - 36px));
    max-height: calc(100vh - 110px);
    gap: 6px;
    padding: 16px;
    overflow-y: auto;
    border: 1px solid rgba(15,42,33,.12);
    border-radius: 24px;
    background: rgba(248,251,247,.97);
    box-shadow: 0 30px 80px rgba(9,31,23,.22), 0 10px 30px rgba(9,31,23,.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.97);
    transform-origin: top right;
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
    transition: opacity .28s ease, visibility .28s ease, transform .4s cubic-bezier(.16,.8,.2,1);
    counter-reset: nav-item;
  }
  .nav-menu-label {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 2px 7px;
    padding: 4px 4px 13px;
    border-bottom: 1px solid rgba(15,42,33,.10);
  }
  .nav-menu-label strong { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .nav-menu-label small { color: var(--muted); font-size: 10px; font-weight: 650; }
  .site-nav > a:not(.nav-mobile-cta) {
    counter-increment: nav-item;
    display: grid;
    grid-template-columns: 34px minmax(0,1fr) 22px;
    align-items: center;
    min-height: 52px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--ink) !important;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 750;
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity .24s ease, transform .34s cubic-bezier(.16,.8,.2,1), background .2s ease, border-color .2s ease;
  }
  .site-nav > a:not(.nav-mobile-cta)::before { content: counter(nav-item, decimal-leading-zero); color: #78903e; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
  .site-nav > a:not(.nav-mobile-cta)::after { content: "↗"; color: #718078; font-size: 15px; text-align: right; transition: transform .2s ease, color .2s ease; }
  .site-nav > a:not(.nav-mobile-cta):hover,
  .site-nav > a:not(.nav-mobile-cta):focus-visible { border-color: rgba(15,42,33,.09); background: #edf5ef; }
  .site-nav > a:not(.nav-mobile-cta):hover::after { color: var(--ink); transform: translate(2px,-2px); }
  .site-nav .nav-mobile-cta {
    display: inline-flex;
    min-height: 50px;
    margin-top: 8px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--paper) !important;
    font-family: var(--sans);
    font-size: 13px;
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity .24s ease, transform .34s cubic-bezier(.16,.8,.2,1), background .2s ease;
  }
  .site-nav .nav-mobile-cta:hover { background: var(--ink-2); }
  .nav-open .site-header { background: rgba(248,251,247,.92) !important; border-color: rgba(255,255,255,.72); box-shadow: 0 18px 46px rgba(9,31,23,.14); -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%); }
  .nav-open .site-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-open .site-nav > a { opacity: 1; transform: translateY(0); }
  .nav-open .site-nav > a:nth-of-type(1) { transition-delay: .05s; }
  .nav-open .site-nav > a:nth-of-type(2) { transition-delay: .08s; }
  .nav-open .site-nav > a:nth-of-type(3) { transition-delay: .11s; }
  .nav-open .site-nav > a:nth-of-type(4) { transition-delay: .14s; }
  .nav-open .site-nav > a:nth-of-type(5) { transition-delay: .17s; }
  .nav-open .site-nav > a:nth-of-type(6) { transition-delay: .20s; }
  .nav-open .nav-toggle { background: var(--ink); border-color: var(--ink); box-shadow: 0 10px 26px rgba(15,42,33,.22); }
  .nav-open .nav-toggle span { background: var(--paper) !important; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { width: 0; opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section-rail { display: none; }
  .hero { min-height: auto; padding-top: 145px; }
  .metrics { margin-top: 10px; }
  .split, .faq-layout { grid-template-columns: 1fr; }
  .split-reverse-mobile .section-copy { order: -1; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .testimonial-feature { grid-template-columns: 1fr; }
  .testimonial-visual { grid-column: 1; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; max-width: 620px; }
  .founder-image { max-height: 500px; }
  .founder-image img { width: 100%; height: 100%; object-fit: contain; }
  .founder-copy { padding: 10px 10px 20px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-nav { right: -29px; left: -29px; width: auto; padding: 13px; border-radius: 20px; transform-origin: top center; }
  .site-nav > a:not(.nav-mobile-cta) { min-height: 49px; padding: 7px 10px; font-size: 14px; }
  .nav-menu-label { padding-bottom: 11px; }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  h2 { font-size: clamp(39px, 12vw, 58px); }
  .hero { padding-top: 128px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-art { width: 125%; margin-left: -12.5%; margin-top: 15px; }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .metrics div:nth-child(2) { border-right: 0; }
  .metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { gap: 45px; }
  .mini-stats { grid-template-columns: 1fr; }
  .mini-stats article { border-bottom: 1px solid var(--line); }
  .mini-stats article:last-child { border-bottom: 0; }
  .service-grid, .industry-grid, .engagement-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 320px; }
  .proof-stats { grid-template-columns: repeat(2,1fr); }
  .proof-stats div:nth-child(2) { border-right: 0; }
  .proof-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .case-card { grid-template-columns: 1fr; gap: 15px; padding: 20px; }
  .case-card > :last-child { grid-column: 1; }
  .case-number { font-size: 25px; }
  .case-info h3 { font-size: 34px; }
  .browser-mock { min-height: 235px; }
  .testimonial-feature { padding: 28px 22px; }
  .testimonial-feature blockquote { margin-top: 50px; }
  .package-stack { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-grid article:last-child { border-bottom: 0; }
  .why-visual { min-height: 440px; }
  .why-card { left: 18px; right: 18px; bottom: 18px; }
  .founder-card { padding: 16px; gap: 28px; }
  .founder-copy h3 { font-size: 40px; }
  .ask-card { grid-template-columns: 82px 1fr; }
  .accordion summary { font-size: 23px; }
  .cta-actions { flex-direction: column; align-items: stretch; max-width: 340px; margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 35px; padding-bottom: 110px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

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

/* --------------------------------------------------------------------------
   Trust-focused WordPress visual system update
   -------------------------------------------------------------------------- */
.hero { min-height: 930px; padding-top: 164px; }
.hero-copy h1 { max-width: 1120px; }
.hero-art { max-width: 1540px; margin-top: 18px; padding-inline: 10px; }
.hero-art img { filter: saturate(.98) contrast(1.01); }
.metrics { margin-top: -8px; }
.metrics strong { font-size: 32px; }
.metrics span { max-width: 170px; text-align: center; line-height: 1.35; }

.globe-card { padding: 13px; background: #0b2119; }
.globe-card::after { content: "PROJECT DELIVERY WORKSPACE"; left: 25px; bottom: 17px; z-index: 2; padding: 5px 8px; border-radius: 999px; background: rgba(7,27,20,.76); color: rgba(237,245,239,.62); backdrop-filter: blur(8px); }
.infrastructure-card { padding: 13px; background: #e3eee6; }
.globe-card img, .infrastructure-card img { width: 100%; border-radius: 16px; }

.proof-stats strong { font-size: 26px; letter-spacing: -.02em; }
.proof-stats span { display: block; margin-top: 7px; line-height: 1.35; }
.case-card { grid-template-columns: 52px minmax(280px,.85fr) minmax(460px,1.25fr); min-height: 340px; padding: 24px; gap: 26px; }
.case-info h3 { font-size: 37px; }
.case-info > p:not(.case-type) { font-size: 12.5px; line-height: 1.65; }
.case-highlight { display: grid; gap: 3px; margin-top: 17px; padding: 13px 14px; border-left: 3px solid var(--accent-2); border-radius: 0 10px 10px 0; background: #f1f6f2; }
.case-highlight strong { color: #607168; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.case-highlight span { color: #31483c; font-size: 10px; line-height: 1.5; }
.case-preview-frame { align-self: stretch; display: grid; place-items: center; min-height: 270px; padding: 9px; border: 1px solid #c9d6ce; border-radius: 15px; background: #e8f0ea; box-shadow: 0 18px 38px rgba(15,42,33,.14); overflow: hidden; }
.case-preview { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 11px; }
.work-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 20px; padding: 34px 38px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg,#e4eee7,#f8fbf8); }
.work-cta .eyebrow { margin-bottom: 7px; }
.work-cta h3 { max-width: 780px; font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1.15; }
.work-cta .button { flex: 0 0 auto; }

.collaboration-section { padding-block: 105px; }
.collaboration-feature { display: grid; grid-template-columns: .86fr 1.14fr; gap: 54px; align-items: center; padding: 34px; border: 1px solid var(--line-light); border-radius: 22px; background: rgba(255,255,255,.025); }
.collaboration-lead { margin: 0 0 24px; color: #eef5ef !important; font-family: var(--serif); font-size: clamp(27px,3vw,39px); line-height: 1.16; }
.collaboration-points { display: grid; border-top: 1px solid var(--line-light); }
.collaboration-points article { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line-light); }
.collaboration-points article > span { color: var(--accent); font-size: 9px; font-weight: 800; }
.collaboration-points h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.collaboration-points p { margin: 0; color: rgba(237,245,239,.62); font-size: 10.5px; }
.collaboration-visual { padding: 9px; border: 1px solid var(--line-light); border-radius: 17px; background: rgba(255,255,255,.035); box-shadow: 0 25px 60px rgba(0,0,0,.24); }
.collaboration-visual img { width: 100%; border-radius: 13px; }

.why-visual { min-height: 520px; padding: 11px; background: #0a2119; }
.why-visual > img { width: 100%; height: 100%; min-height: 495px; object-fit: cover; border-radius: 14px; }
.why-proof-strip { position: absolute; left: 27px; right: 27px; bottom: 27px; display: flex; justify-content: space-between; gap: 20px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(8,28,21,.86); backdrop-filter: blur(12px); }
.why-proof-strip strong { color: var(--accent); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.why-proof-strip span { color: rgba(237,245,239,.66); font-size: 9px; }

.founder-card { grid-template-columns: 455px 1fr; max-width: 1060px; }
.founder-image { aspect-ratio: 1 / 1; background: var(--accent); }
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.ask-card img { width: 110px; height: 110px; object-fit: cover; object-position: center 35%; }

.footer-landscape { height: 155px; background: linear-gradient(180deg, transparent 0 24%, rgba(200,245,62,.05) 25% 26%, transparent 27%), linear-gradient(175deg, transparent 0 44%, #dce9df 45% 49%, #b8d0bd 50% 53%, #6f9a78 54% 59%, #244b37 60% 100%); }
.footer-landscape::before { top: 43px; height: 112px; background-image: linear-gradient(rgba(15,42,33,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(15,42,33,.12) 1px, transparent 1px); background-size: 42px 42px; clip-path: polygon(0 40%,12% 22%,24% 37%,36% 14%,50% 35%,63% 20%,77% 39%,90% 18%,100% 32%,100% 100%,0 100%); }

@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .case-card { grid-template-columns: 48px 1fr; }
  .case-card > .case-preview-frame { grid-column: 2; min-height: 320px; }
  .collaboration-feature { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 390px 1fr; }
}

@media (max-width: 900px) {
  .hero { padding-top: 145px; }
  .hero-art { margin-top: 35px; }
  .collaboration-feature { padding: 24px; }
  .why-visual > img { min-height: 430px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-image { max-height: none; }
}

@media (max-width: 680px) {
  .hero { padding-top: 120px; }
  .hero-art { width: 126%; margin-left: -13%; padding: 0; }
  .metrics { margin-top: 10px; }
  .metrics strong { font-size: 27px; }
  .case-card { grid-template-columns: 1fr; }
  .case-card > .case-preview-frame { grid-column: 1; min-height: 210px; }
  .case-preview { min-height: 205px; }
  .case-highlight { margin-top: 13px; }
  .work-cta { align-items: flex-start; flex-direction: column; padding: 25px; }
  .work-cta h3 { font-size: 25px; }
  .collaboration-feature { padding: 19px; gap: 30px; }
  .collaboration-lead { font-size: 29px; }
  .why-visual { min-height: 390px; }
  .why-visual > img { min-height: 365px; }
  .why-proof-strip { left: 18px; right: 18px; bottom: 18px; flex-direction: column; gap: 3px; }
  .why-proof-strip span { line-height: 1.4; }
  .founder-image { aspect-ratio: 1 / 1; }
  .ask-card img { width: 82px; height: 82px; }
}

/* ==========================================================================
   Editorial system — blog archive, taxonomy views and single posts.
   ======================================================================= */

.np-blog-hero {
  position: relative;
  padding: 162px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(200,245,62,.24), transparent 22%),
    linear-gradient(180deg, #f7fbf6 0%, #e8f2eb 100%);
}
.np-blog-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,42,33,.1) .7px, transparent .7px);
  background-size: 17px 17px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  content: "";
  opacity: .36;
}
.np-blog-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(310px, .58fr); align-items: end; gap: clamp(48px, 8vw, 118px); }
.np-blog-hero-copy { max-width: 780px; }
.np-blog-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; color: #658037; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.np-blog-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 6px rgba(169,217,40,.14); }
.np-blog-hero h1 { max-width: 850px; font-size: clamp(58px, 7vw, 94px); line-height: .94; }
.np-blog-hero-copy > p:last-child { max-width: 670px; margin: 27px 0 0; color: #5f7469; font-size: 17px; line-height: 1.75; }
.np-blog-hero-note { position: relative; min-height: 210px; padding: 27px; border: 1px solid rgba(15,42,33,.16); border-radius: 24px; background: rgba(255,255,255,.62); box-shadow: 0 24px 60px rgba(15,42,33,.09); backdrop-filter: blur(12px); }
.np-blog-hero-note::before { position: absolute; right: 23px; bottom: 21px; width: 86px; height: 86px; border: 1px solid rgba(15,42,33,.13); border-radius: 50%; box-shadow: 0 0 0 19px rgba(15,42,33,.025), 0 0 0 40px rgba(15,42,33,.017); content: ""; }
.np-blog-hero-note > span { display: block; color: #6a7a71; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.np-blog-hero-note strong { display: block; max-width: 220px; margin-top: 40px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.05; }
.np-blog-hero-note i { position: absolute; right: 29px; bottom: 26px; z-index: 2; font-size: 26px; font-style: normal; }

.np-blog-archive-section { padding: 72px 0 120px; background: var(--paper-2); }
.np-blog-category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.np-blog-category-nav a { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.68); color: #5e7167; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: background .2s, color .2s, transform .2s; }
.np-blog-category-nav a:hover { transform: translateY(-2px); }
.np-blog-category-nav a.is-current { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.np-blog-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.np-blog-archive-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; box-shadow: 0 18px 48px rgba(15,42,33,.07); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.np-blog-archive-card:hover { transform: translateY(-6px); border-color: rgba(111,141,49,.42); box-shadow: 0 28px 68px rgba(15,42,33,.13); }
.np-blog-archive-card.is-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); }
.np-blog-archive-media { position: relative; display: block; min-height: 240px; overflow: hidden; background: var(--ink); }
.np-blog-archive-card.is-featured .np-blog-archive-media { min-height: 430px; }
.np-blog-archive-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,.7,.2,1); }
.np-blog-archive-card:hover .np-blog-archive-media img { transform: scale(1.035); }
.np-blog-card-fallback { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: space-between; padding: 30px; background: radial-gradient(circle at 78% 22%,rgba(200,245,62,.3),transparent 24%),linear-gradient(145deg,#102d23,#244e3c); color: var(--paper); }
.np-blog-card-fallback::after { position: absolute; right: 34px; bottom: 32px; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,.024),0 0 0 52px rgba(255,255,255,.016); content: ""; }
.np-blog-card-fallback small { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.np-blog-card-fallback strong { font-family: var(--serif); font-size: 40px; font-weight: 500; }
.np-blog-archive-body { display: flex; flex: 1; flex-direction: column; padding: 29px; }
.np-blog-archive-card.is-featured .np-blog-archive-body { justify-content: center; padding: clamp(34px,5vw,62px); }
.np-blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; color: #668052; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.np-blog-archive-body h2 { margin-bottom: 15px; font-size: clamp(27px,2.5vw,35px); line-height: 1.07; }
.np-blog-archive-card.is-featured h2 { font-size: clamp(39px,4.3vw,58px); }
.np-blog-archive-body h2 a { transition: color .2s; }
.np-blog-archive-body h2 a:hover { color: #66862d; }
.np-blog-archive-body > p { color: var(--muted); font-size: 13px; line-height: 1.72; }
.np-blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; }
.np-blog-card-footer > a { color: var(--ink); font-size: 11px; font-weight: 800; }
.np-blog-card-footer > a span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.np-blog-card-footer > a:hover span { transform: translate(3px,-3px); }
.np-blog-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 52px; }
.np-blog-pagination .page-numbers { display: grid; min-width: 42px; min-height: 42px; padding: 0 14px; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 11px; font-weight: 800; }
.np-blog-pagination .page-numbers.current { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.np-blog-empty-state { padding: 70px 30px; border: 1px dashed var(--line); border-radius: 24px; background: #fff; text-align: center; }
.np-blog-empty-state > span { color: #6f8d31; font-size: 30px; }
.np-blog-empty-state h2 { margin: 12px 0; font-size: 44px; }
.np-blog-empty-state p { color: var(--muted); }

.np-article-hero { position: relative; padding: 154px 0 76px; overflow: hidden; background: radial-gradient(circle at 50% 8%,rgba(200,245,62,.22),transparent 22%),linear-gradient(180deg,#f7fbf6,#eaf3ec); text-align: center; }
.np-article-hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(15,42,33,.09) .7px,transparent .7px); background-size: 17px 17px; mask-image: linear-gradient(to bottom,black,transparent 68%); content: ""; opacity: .32; }
.np-article-hero-inner { position: relative; z-index: 2; max-width: 980px; }
.np-article-breadcrumbs { display: flex; justify-content: center; gap: 9px; margin-bottom: 34px; color: #718179; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.np-article-breadcrumbs a:hover { color: var(--ink); }
.np-article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 20px; margin-bottom: 22px; color: #668052; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.np-article-meta span + time::before,.np-article-meta time + span::before { margin-right: 20px; color: rgba(15,42,33,.28); content: "•"; }
.np-article-hero h1 { max-width: 960px; margin-inline: auto; font-size: clamp(52px,7vw,88px); line-height: .98; }
.np-article-deck { max-width: 720px; margin: 27px auto 0; color: #60756a; font-size: 18px; line-height: 1.7; }
.np-article-author-line { display: flex; align-items: center; justify-content: center; gap: 11px; margin-top: 29px; color: #64766d; font-size: 11px; }
.np-article-author-line img { border: 2px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 8px 20px rgba(15,42,33,.12); }
.np-article-author-line strong { color: var(--ink); }
.np-article-featured { margin-top: 54px; }
.np-article-featured img { width: 100%; max-height: 690px; border-radius: 26px; object-fit: cover; box-shadow: var(--shadow); }
.np-article-layout { display: grid; grid-template-columns: 150px minmax(0,760px); justify-content: center; gap: 58px; padding-top: 76px; padding-bottom: 115px; }
.np-article-side { position: sticky; top: 115px; align-self: start; display: grid; gap: 8px; padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.np-article-side strong { color: var(--ink); font-size: 11px; }
.np-article-side a { margin-top: 14px; color: #668052; font-size: 9px; font-weight: 800; }
.np-article-content { min-width: 0; color: #294238; font-family: var(--sans); font-size: 17px; line-height: 1.9; }
.np-article-content > p:first-child::first-letter { float: left; margin: .08em .12em 0 0; color: #648231; font-family: var(--serif); font-size: 4.4em; font-weight: 600; line-height: .72; }
.np-article-content p { margin-bottom: 1.45em; }
.np-article-content h2,.np-article-content h3,.np-article-content h4 { margin: 1.65em 0 .65em; color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.12; }
.np-article-content h2 { font-size: clamp(36px,4vw,50px); }
.np-article-content h3 { font-size: 30px; }
.np-article-content a:not(.wp-block-button__link) { color: #547427; text-decoration: underline; text-decoration-color: rgba(84,116,39,.35); text-underline-offset: 3px; }
.np-article-content img { height: auto; margin: 1em 0; border-radius: 18px; }
.np-article-content blockquote { margin: 2em 0; padding: 28px 30px; border: 0; border-left: 4px solid var(--accent-2); border-radius: 0 16px 16px 0; background: #eef5ef; color: var(--ink); font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.np-article-content ul,.np-article-content ol { margin: 0 0 1.5em; padding-left: 1.25em; }
.np-article-content li { margin-bottom: .55em; }
.np-article-content pre { max-width: 100%; padding: 20px; border-radius: 14px; background: var(--ink); color: var(--paper); overflow-x: auto; }
.np-article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); }
.np-article-tags span { margin-right: 6px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.np-article-tags a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink) !important; font-size: 9px; font-weight: 700; text-decoration: none !important; }
.np-article-author-card { display: grid; grid-template-columns: 80px 1fr; gap: 20px; margin-top: 42px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #f4f8f4; }
.np-article-author-card img { border-radius: 50%; }
.np-article-author-card span { color: #668052; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-article-author-card h2 { margin: 4px 0 8px; font-size: 28px; }
.np-article-author-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.np-article-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 35px; }
.np-article-post-nav > div { min-height: 100px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; }
.np-article-post-nav > div:last-child { text-align: right; }
.np-article-post-nav small { display: block; margin-bottom: 7px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.np-article-post-nav a { color: var(--ink) !important; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.25; text-decoration: none !important; }
.np-related-posts { padding: 95px 0 110px; background: var(--ink); color: var(--paper); }
.np-related-heading { margin-bottom: 40px; }
.np-related-heading .eyebrow { color: var(--accent); }
.np-related-heading h2 { font-size: clamp(42px,5vw,66px); }
.np-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.np-related-grid article { display: flex; min-height: 250px; flex-direction: column; padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.04); }
.np-related-grid article > span { color: rgba(237,245,239,.5); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.np-related-grid h3 { margin: 25px 0; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.1; }
.np-related-grid .text-link { align-self: flex-start; margin-top: auto; color: var(--paper); border-color: rgba(255,255,255,.35); }
.np-related-grid .text-link i { font-style: normal; }
.np-article-comments { padding-bottom: 110px; }
.np-comments-area { padding: clamp(30px,5vw,58px); border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 24px 70px rgba(15,42,33,.09); }
.np-comments-heading { display: grid; max-width: 720px; gap: 9px; margin-bottom: 34px; }
.np-comments-heading .eyebrow { margin: 0 0 4px; color: #668052; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-comments-heading h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(34px,4vw,50px); font-weight: 600; line-height: 1.05; }
.np-comments-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.np-comment-list,.np-comment-list .children { margin: 0; padding: 0; list-style: none; }
.np-comment-list { display: grid; gap: 16px; }
.np-comment-list .children { display: grid; gap: 14px; margin: 14px 0 0 38px; }
.np-comment-list .comment-body { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #f7faf7; }
.np-comment-list .comment-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.np-comment-list .comment-author { display: flex; align-items: center; gap: 12px; min-width: 0; }
.np-comment-list .comment-author img { width: 48px; height: 48px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 7px 18px rgba(15,42,33,.13); }
.np-comment-list .comment-author .fn { color: var(--ink); font-size: 13px; font-style: normal; font-weight: 800; }
.np-comment-list .comment-author .says { display: none; }
.np-comment-list .comment-metadata { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 12px; color: var(--muted); font-size: 9px; font-weight: 700; }
.np-comment-list .comment-metadata a { color: inherit; }
.np-comment-list .comment-metadata a:hover { color: #66852d; }
.np-comment-list .comment-content { padding-left: 60px; color: #42594e; font-size: 14px; line-height: 1.75; }
.np-comment-list .comment-content p:last-child { margin-bottom: 0; }
.np-comment-list .reply { margin: 16px 0 0 60px; }
.np-comment-list .comment-reply-link { display: inline-flex; align-items: center; min-height: 32px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.np-comment-list .comment-reply-link:hover { border-color: #799838; background: #eef5e6; }
.np-comments-area .comment-navigation { display: flex; justify-content: space-between; margin: 22px 0; }
.np-comments-area .comment-navigation a { color: #668052; font-size: 11px; font-weight: 800; }
.np-comments-closed { padding: 18px; border-radius: 12px; background: #f2f6f2; color: var(--muted); text-align: center; }
.np-comments-area .comment-respond { margin-top: 42px; padding: clamp(24px,4vw,40px); border-radius: 20px; background: var(--ink); color: var(--paper); }
.np-comment-form-heading { display: grid; gap: 5px; margin-bottom: 20px; }
.np-comment-form-heading > span { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.np-comment-form-heading h2 { margin: 0; color: var(--paper); font-family: var(--serif); font-size: clamp(31px,4vw,44px); font-weight: 600; line-height: 1.05; }
.np-comment-form-heading small { margin-left: 9px; font-family: var(--sans); font-size: 10px; }
.np-comment-form-heading small a { color: var(--accent); }
.np-comment-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.np-comment-form > p { margin: 0; }
.np-comment-form .logged-in-as,.np-comment-form .comment-notes,.np-comment-form .comment-form-comment,.np-comment-form .form-submit,.np-comment-form .comment-form-cookies-consent { grid-column: 1 / -1; }
.np-comment-form .logged-in-as,.np-comment-form .comment-notes { color: rgba(237,245,239,.62); font-size: 11px; line-height: 1.6; }
.np-comment-form .logged-in-as a { color: var(--accent); }
.np-comment-form label { display: block; margin-bottom: 8px; color: rgba(237,245,239,.84); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.np-comment-form :is(input[type="text"],input[type="email"],input[type="url"],textarea) { display: block; width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; outline: 0; background: rgba(255,255,255,.07); color: #fff; font: inherit; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.np-comment-form :is(input[type="text"],input[type="email"],input[type="url"]) { min-height: 48px; padding: 0 14px; }
.np-comment-form textarea { min-height: 170px; padding: 15px; resize: vertical; }
.np-comment-form :is(input,textarea)::placeholder { color: rgba(237,245,239,.38); }
.np-comment-form :is(input[type="text"],input[type="email"],input[type="url"],textarea):focus { border-color: var(--accent); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(200,245,62,.12); }
.np-comment-form .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 9px; color: rgba(237,245,239,.62); font-size: 10px; }
.np-comment-form .comment-form-cookies-consent label { margin: 0; color: inherit; font-size: inherit; font-weight: 500; letter-spacing: 0; text-transform: none; }
.np-comment-submit { min-height: 46px; padding: 0 21px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease; }
.np-comment-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,245,62,.2); }

@media (max-width: 900px) {
  .np-blog-hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .np-blog-hero-note { min-height: 170px; max-width: 500px; }
  .np-blog-archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .np-article-layout { grid-template-columns: 1fr; gap: 25px; }
  .np-article-side { position: static; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
  .np-article-side a { margin: 0 0 0 auto; }
  .np-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .np-blog-hero { padding: 125px 0 62px; }
  .np-blog-hero h1 { font-size: clamp(48px,14vw,66px); }
  .np-blog-hero-copy > p:last-child { font-size: 15px; }
  .np-blog-hero-note { min-height: 155px; padding: 22px; }
  .np-blog-archive-section { padding: 50px 0 80px; }
  .np-blog-archive-grid { grid-template-columns: 1fr; gap: 18px; }
  .np-blog-archive-card.is-featured { grid-column: auto; }
  .np-blog-archive-media,.np-blog-archive-card.is-featured .np-blog-archive-media { min-height: 245px; }
  .np-blog-archive-body,.np-blog-archive-card.is-featured .np-blog-archive-body { padding: 24px; }
  .np-blog-archive-card.is-featured h2 { font-size: 36px; }
  .np-article-hero { padding: 124px 0 58px; }
  .np-article-hero h1 { font-size: clamp(46px,13vw,64px); }
  .np-article-meta { gap: 8px 12px; }
  .np-article-meta span + time::before,.np-article-meta time + span::before { margin-right: 12px; }
  .np-article-deck { font-size: 16px; }
  .np-article-featured { width: calc(100% - 28px); margin-top: 30px; }
  .np-article-featured img { border-radius: 18px; }
  .np-article-layout { padding-top: 52px; padding-bottom: 80px; }
  .np-article-side a { width: 100%; margin: 5px 0 0; }
  .np-article-content { font-size: 16px; line-height: 1.82; }
  .np-article-content blockquote { padding: 22px; font-size: 24px; }
  .np-article-author-card { grid-template-columns: 58px 1fr; padding: 22px; }
  .np-article-author-card img { width: 58px; height: 58px; }
  .np-article-post-nav { grid-template-columns: 1fr; }
  .np-article-post-nav > div:last-child { text-align: left; }
  .np-related-posts { padding: 75px 0 85px; }
  .np-related-grid { grid-template-columns: 1fr; }
  .np-related-grid article { min-height: 210px; }
  .np-article-comments { width: calc(100% - 28px); padding-bottom: 80px; }
  .np-comments-area { padding: 24px 20px; border-radius: 20px; }
  .np-comment-list .comment-meta { align-items: flex-start; flex-direction: column; }
  .np-comment-list .comment-metadata { justify-content: flex-start; padding-left: 60px; }
  .np-comment-list .comment-content { padding-left: 0; }
  .np-comment-list .reply { margin-left: 0; }
  .np-comment-list .children { margin-left: 16px; }
  .np-comments-area .comment-respond { padding: 24px 18px; }
  .np-comment-form { grid-template-columns: 1fr; }
  .np-comment-form > p { grid-column: 1 / -1; }
}
