/* ============================================================
   Werthold — editorial light theme
   Display: Fraunces · Body: Inter · Accent: Emerald
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #f5f4f2;
  --ink: #0a0a0a;
  --ink-2: #2e2e2e;
  --muted: #5f6368;
  --border: #e2e1de;
  --accent: #059669;
  --accent-bright: #10b981;
  --accent-dark: #047857;
  --accent-soft: #e8faf3;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --on-dark-muted: #9ca3af;
  --radius: 6px;
  --shadow-md: 0 14px 40px -16px rgba(0, 0, 0, .22);
  --shadow-lg: 0 32px 80px -28px rgba(0, 0, 0, .35);
  --container: 1280px;
  --header-h: 76px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
/* <picture> is a wrapper only: let the inner <img> inherit the layout box. */
picture { display: contents; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .55em;
  font-weight: 600;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; line-height: 1.35; }
p { margin: 0 0 1em; }
a { color: var(--accent-dark); text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }

/* Lucide icons inherit these classes after createIcons() swap */
.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
i[data-lucide] { display: inline-block; width: 24px; height: 24px; }
i[data-lucide].icon-sm { width: 18px; height: 18px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 400; background: var(--ink); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: 0; }

/* Hide reveal targets until GSAP takes over (html.js set inline in head) */
html.js .reveal { visibility: hidden; }
html.js.no-anim .reveal { visibility: visible; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  transition: transform .8s var(--ease-out), visibility .8s;
}
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader__mark { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.preloader__logo { height: 28px; width: auto; filter: brightness(0) invert(1); }
.preloader__bar { width: 180px; height: 2px; background: rgba(255, 255, 255, .15); overflow: hidden; }
.preloader__bar::after { content: ""; display: block; height: 100%; width: 40%; background: var(--accent-bright); animation: loadbar 1.1s ease-in-out infinite; }
@keyframes loadbar { 0% { transform: translateX(-100%); } 100% { transform: translateX(450%); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s ease, box-shadow .35s ease;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 3rem, var(--container)); margin-inline: auto; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; height: 21px; width: auto; transition: filter .35s ease; }
/* The wordmark is dark teal, so it is rendered white on every dark surface. */
.site-header:not(.is-scrolled) .brand__logo,
.site-footer .brand__logo { filter: brightness(0) invert(1); }
/* Same filter functions in both states so the swap can animate. */
.site-header.is-scrolled .brand__logo { filter: brightness(1) invert(0); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav ul { display: flex; align-items: center; gap: .2rem; }
.site-nav li { position: relative; }
.site-nav a:not(.btn) {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .9rem;
  color: rgba(255, 255, 255, .88); font-weight: 500; font-size: .95rem;
  border-bottom: 2px solid transparent;
  transition: color .25s ease;
}
.site-nav a:not(.btn):hover { color: #fff; }
.site-nav > ul > li > a.is-active { color: #fff; border-bottom-color: var(--accent-bright); }
.chev, i.chev { width: 15px !important; height: 15px !important; transition: transform .3s ease; }
.has-dropdown:hover .chev, .has-dropdown:focus-within .chev { transform: rotate(180deg); }

/* Scrolled state: solid white, dark text */
.site-header.is-scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 1px 0 var(--border), 0 12px 40px -20px rgba(0, 0, 0, .18); }
.site-header.is-scrolled .site-nav a:not(.btn) { color: var(--ink-2); }
.site-header.is-scrolled .site-nav a:not(.btn):hover,
.site-header.is-scrolled .site-nav > ul > li > a.is-active { color: var(--ink); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.dropdown {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex !important; width: 100%; gap: .65rem !important; color: var(--ink-2) !important; border-bottom: 0 !important; border-radius: 4px; }
.dropdown a:hover { background: var(--surface); color: var(--ink) !important; }
.dropdown .icon, .dropdown i[data-lucide] { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5.5px; background: none; border: 0; padding: .6rem; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform .3s ease, opacity .3s ease, background-color .35s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost { border-color: var(--border); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { color: var(--accent-dark); box-shadow: var(--shadow-md); }
.btn--outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.nav-cta { padding: .75rem 1.4rem; font-size: .92rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: 1rem;
  border-bottom: 1px solid var(--accent); padding-bottom: .2rem;
  transition: color .25s ease, border-color .25s ease;
}
.link-arrow .icon, .link-arrow i[data-lucide] { color: var(--accent); transition: transform .25s var(--ease-out); }
.link-arrow:hover { color: var(--accent-dark); }
.link-arrow:hover .icon, .link-arrow:hover i[data-lucide] { transform: translateX(4px); }
.link-arrow--light { color: #fff; border-color: var(--accent-bright); }
.link-arrow--light:hover { color: var(--accent-bright); }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(4.5rem, 10vw, 8rem); }
.section--alt { background: var(--surface); }
.section--dark { background: var(--dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); line-height: 1.65; }
.section--dark .lead { color: var(--on-dark-muted); }

/* Used sparingly: at most a couple of times per page. */
.eyebrow {
  display: block;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .9rem;
}
.section--dark .eyebrow { color: var(--on-dark-muted); }

/* ---------- Hero slider ---------- */
.hero-slider { position: relative; height: 100svh; min-height: 620px; background: var(--dark); }
.hero-slider .swiper { height: 100%; }
.hero-slider .swiper-slide { position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.slide-bg { position: absolute; inset: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.swiper-slide-active .slide-bg img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(75deg, rgba(0, 0, 0, .78) 8%, rgba(0, 0, 0, .45) 48%, rgba(0, 0, 0, .18) 100%),
              linear-gradient(0deg, rgba(0, 0, 0, .62) 0%, transparent 45%);
}
.slide-content { position: relative; z-index: 2; padding-bottom: clamp(6rem, 13vh, 9rem); max-width: 940px; }
.slide-kicker {
  display: block;
  font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; color: rgba(255, 255, 255, .72);
  margin-bottom: 1rem;
}
.slide-title { color: #fff; margin-bottom: .45em; font-size: clamp(2.3rem, 5.6vw, 4.3rem); font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.012em; max-width: 17ch; }
.slide-sub { color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 560px; margin-bottom: 1.8rem; }
.slide-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

/* staggered slide-content entrance */
.slide-anim { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.swiper-slide-active .slide-anim { opacity: 1; transform: none; }
.swiper-slide-active .slide-anim:nth-child(1) { transition-delay: .2s; }
.swiper-slide-active .slide-anim:nth-child(2) { transition-delay: .32s; }
.swiper-slide-active .slide-anim:nth-child(3) { transition-delay: .44s; }
.swiper-slide-active .slide-anim:nth-child(4) { transition-delay: .56s; }

.hero-slider .swiper-pagination {
  position: absolute; left: max(1.5rem, calc((100% - var(--container)) / 2)); right: auto; bottom: 2.6rem;
  display: flex; gap: .6rem; width: auto;
}
.hero-slider .swiper-pagination-bullet {
  width: 44px; height: 3px; border-radius: 0; background: rgba(255, 255, 255, .35);
  opacity: 1; transition: background-color .3s ease; margin: 0 !important;
}
.hero-slider .swiper-pagination-bullet-active { background: var(--accent-bright); }

.hero-scroll-hint {
  position: absolute; right: max(1.5rem, calc((100% - var(--container)) / 2)); bottom: 2.4rem; z-index: 5;
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255, 255, 255, .6); font-size: .8rem; letter-spacing: .06em;
  font-family: var(--font-body);
}

/* ---------- Statement + facts ---------- */
.statement__grid { display: grid; gap: 2rem; margin-bottom: clamp(2.8rem, 6vw, 4.5rem); }
.statement__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.32; color: var(--ink);
  letter-spacing: -.01em; margin: 0;
}
.statement__meta p { color: var(--muted); font-size: 1rem; max-width: 42ch; }

.facts { display: grid; gap: 1.6rem; border-top: 1px solid var(--border); padding-top: 1.8rem; }
.facts li b { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.facts li span { display: block; margin-top: .2rem; font-size: .9rem; color: var(--muted); }

/* ---------- Featured service + service rows ---------- */
.service-feature { display: grid; gap: 2.5rem; align-items: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.service-feature + .service-feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.service-feature__media .parallax-frame { aspect-ratio: 4 / 3; }
.service-feature__body h2, .service-feature__body h3 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); margin-bottom: .5rem; }
.service-feature__body h2 a, .service-feature__body h3 a { color: var(--ink); }
.service-feature__body h2 a:hover, .service-feature__body h3 a:hover { color: var(--accent-dark); }

.tick-list { margin: 1.3rem 0 1.6rem; display: grid; gap: .55rem; }
.tick-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .96rem; color: var(--ink-2); }
.tick-list .icon, .tick-list i[data-lucide] { color: var(--accent); margin-top: .28rem; }

.service-rows { border-top: 1px solid var(--border); }
.service-row { border-bottom: 1px solid var(--border); }
.service-row a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: .5rem 1.2rem; padding: 1.5rem .4rem;
  color: var(--ink); transition: padding-left .3s var(--ease-out), color .25s ease;
}
.service-row a:hover { padding-left: 1rem; color: var(--accent-dark); }
.service-row__icon { color: var(--accent); grid-row: span 2; }
.service-row__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.service-row__desc { grid-column: 2; font-size: .95rem; color: var(--muted); }
.service-row__go { grid-row: span 2; color: var(--accent); transition: transform .3s var(--ease-out); }
.service-row a:hover .service-row__go { transform: translateX(5px); }

/* ---------- Work mosaic ---------- */
.work-intro { display: grid; gap: 1rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.work-intro p { color: var(--muted); max-width: 60ch; margin: 0; }
.work-mosaic { display: grid; gap: 1.4rem; }
.work-tile {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.work-tile:hover { border-color: #c9c8c4; box-shadow: var(--shadow-md); }
.work-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.work-tile--wide img { aspect-ratio: 16 / 9; }
.work-tile__body { padding: 1.4rem 1.5rem 1.6rem; }
.work-tile__tag { font-family: var(--font-body); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.work-tile h3 { margin: .5rem 0 .4rem; font-size: 1.25rem; }
.work-tile p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------- Process timeline (dark) ---------- */
.process-layout { display: grid; gap: 3rem; }
.process-intro .lead { max-width: 34ch; }
.timeline { border-left: 1px solid #2a2a2a; }
.timeline__item { position: relative; padding: 0 0 2.4rem 2rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -4px; top: .6rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright);
}
.timeline__item h3 { color: #fff; margin-bottom: .35rem; font-size: 1.2rem; }
.timeline__item p { color: var(--on-dark-muted); font-size: .96rem; margin: 0; max-width: 52ch; }

/* ---------- Reason list ---------- */
.reason-list { display: grid; gap: 1.7rem; margin-top: 2rem; }
.reason { display: flex; gap: .9rem; align-items: flex-start; }
.reason > .icon, .reason > i[data-lucide] { color: var(--accent); margin-top: .35rem; }
.reason h3 { margin-bottom: .3rem; font-size: 1.1rem; }
.reason p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Team ---------- */
.team-list { display: grid; gap: 2rem; }
.team-member { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.team-member h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: .25rem; }
.team-member p { margin: 0; color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.section--dark .team-member { border-top-color: var(--accent-bright); }

/* ---------- Expectations ---------- */
.expect-grid { display: grid; gap: 2.2rem; }
.expect { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.expect h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.expect p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Cards (generic box) ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3, .grid--2 { grid-template-columns: 1fr; }
.card {
  position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.card:hover { border-color: #c9c8c4; box-shadow: var(--shadow-md); }
.card p { color: var(--muted); font-size: .97rem; }
.card__list { margin: 1.1rem 0 1.3rem; display: grid; gap: .5rem; }
.card__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--ink-2); }
.card__list .icon, .card__list i[data-lucide] { color: var(--accent); margin-top: .2rem; }
.card__link { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.card__link .icon, .card__link i[data-lucide] { color: var(--accent); transition: transform .3s var(--ease-out); }
.card:hover .card__link .icon, .card:hover .card__link i[data-lucide] { transform: translateX(4px); }

/* ---------- Split / parallax media ---------- */
.split { display: grid; gap: 3rem; align-items: center; }
/* Fixed ratio keeps the frame stable while the photo inside is scaled for parallax. */
.parallax-frame { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 2; }
.parallax-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); will-change: transform; }
.split__media { position: relative; }

/* ---------- Article list ---------- */
.post-list { border-top: 1px solid var(--border); }
.post-item { border-bottom: 1px solid var(--border); }
.post-item a {
  display: grid; gap: .35rem 2rem; padding: 1.6rem .3rem;
  color: var(--ink); transition: padding-left .3s var(--ease-out);
}
.post-item a:hover { padding-left: 1rem; }
.post-item__meta {
  display: flex; flex-wrap: wrap; gap: .55rem;
  font-family: var(--font-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.post-item__title { display: block; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; line-height: 1.32; transition: color .25s ease; }
.post-item a:hover .post-item__title { color: var(--accent-dark); }
.post-item__excerpt { display: block; margin-top: .35rem; color: var(--muted); font-size: .95rem; max-width: 70ch; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: 2.5rem; }
.faq-intro p { color: var(--muted); max-width: 34ch; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem .2rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--accent); line-height: 1; transition: transform .3s var(--ease-out); flex: none; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq div { padding: 0 .2rem 1.5rem; color: var(--muted); font-size: .98rem; max-width: 65ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--dark); color: var(--on-dark-muted);
  padding: clamp(2.6rem, 6vw, 4.5rem); text-align: left;
}
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { max-width: 54ch; }
.cta-band .btn { margin-top: 1.2rem; }

/* ---------- Page hero (inner pages, full-bleed) ---------- */
.page-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(460px, 60vh, 620px);
  background: var(--dark); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); will-change: transform; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(75deg, rgba(0, 0, 0, .8) 10%, rgba(0, 0, 0, .48) 55%, rgba(0, 0, 0, .22) 100%),
              linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, transparent 50%);
}
.page-hero__content { position: relative; z-index: 2; padding-block: clamp(3rem, 7vh, 4.5rem); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.9rem); max-width: 19ch; }
.page-hero .lead { color: rgba(255, 255, 255, .85); max-width: 620px; }
.page-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.page-hero__note { color: rgba(255, 255, 255, .68); font-size: .88rem; margin: 0; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .86rem; color: rgba(255, 255, 255, .7); margin-bottom: 1.4rem; }
.breadcrumbs a { color: rgba(255, 255, 255, .7); font-weight: 500; transition: color .2s ease; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: rgba(255, 255, 255, .35); }
.breadcrumbs [aria-current] { color: rgba(255, 255, 255, .95); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }

/* ---------- Article body ---------- */
.article-body { max-width: 68ch; }
.article-body p { font-size: 1.06rem; }
.article-body h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-top: 2.2rem; }
.article-body > h2:first-child { margin-top: 0; }

.side-panel { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: clamp(1.5rem, 3vw, 2rem); }
.side-panel h2 { font-size: 1.2rem; margin-bottom: .8rem; }
.side-panel p { font-size: .93rem; color: var(--muted); }
.side-panel .tick-list { margin-bottom: 1.2rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; font-size: .9rem; color: var(--muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: .9rem; margin-bottom: 2rem; }
.article-meta b { color: var(--ink); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2.5rem; }
.contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); }
.form-grid { display: grid; gap: 1.2rem; }
.form-field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .45rem; }
.form-field .req { color: var(--accent); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .95rem 1.05rem; font: inherit; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(5, 150, 105, .14);
}
.form-note { font-size: .85rem; color: var(--muted); }
.alert { padding: 1rem 1.3rem; border-radius: var(--radius); font-weight: 600; margin-bottom: 1.2rem; display: flex; gap: .6rem; align-items: flex-start; }
.alert--ok { background: var(--accent-soft); color: #065f46; border: 1px solid #a7f3d0; }
.alert--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-details { display: grid; gap: 1.5rem; }
.contact-detail { display: flex; gap: .9rem; align-items: flex-start; border-top: 1px solid var(--border); padding-top: 1.2rem; }
.contact-detail > .icon, .contact-detail > i[data-lucide] { color: var(--accent); margin-top: .3rem; }
.contact-detail b { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.contact-detail a, .contact-detail span { color: var(--muted); font-size: .95rem; }
.contact-detail a:hover { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-muted); margin-top: clamp(4rem, 9vw, 7rem); }
.footer-cta { border-bottom: 1px solid #222; padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.footer-cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; }
.footer-cta h2 { color: #fff; margin: 0; font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 20ch; }
.site-footer .brand__logo { height: 25px; }
.footer-grid { display: grid; gap: 2.4rem; padding-block: clamp(2.8rem, 6vw, 4rem) 2.5rem; }
.footer-brand p { margin-top: 1.1rem; font-size: .95rem; color: var(--on-dark-muted); max-width: 320px; }
.footer-contact { display: grid; gap: .65rem; }
.footer-contact li { display: flex; align-items: center; gap: .65rem; font-size: .93rem; }
.footer-contact .icon, .footer-contact i[data-lucide] { color: var(--accent-bright); }
.footer-contact a { color: var(--on-dark-muted); transition: color .2s ease; }
.footer-contact a:hover { color: #fff; }
.footer-title { font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: var(--on-dark-muted); font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-cta-col p { font-size: .95rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; align-items: center;
  border-top: 1px solid #222; padding-block: 1.5rem; font-size: .87rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 3rem; }
  .team-list { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .work-intro { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end; }
  .work-intro h2 { margin-bottom: 0; }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .split--flip .split__media { order: 2; }
  .split--aside { grid-template-columns: 1.6fr 1fr; align-items: start; gap: 3.5rem; }
  .statement__grid { grid-template-columns: 1.55fr 1fr; gap: 4rem; align-items: end; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .service-feature { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-feature--flip .service-feature__media { order: 2; }
  .service-row a { grid-template-columns: auto minmax(220px, 1fr) 2fr auto; align-items: center; }
  .service-row__desc { grid-column: auto; }
  .post-item a { grid-template-columns: 190px 1fr; align-items: baseline; }
  .work-mosaic { grid-template-columns: repeat(3, 1fr); }
  .work-tile--wide { grid-column: span 2; }
  .process-layout { grid-template-columns: 1fr 1.5fr; gap: 4.5rem; }
  .process-intro { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
  .faq-layout { grid-template-columns: 1fr 1.7fr; gap: 4rem; }
  .faq-intro { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 4rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 3rem; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 899.98px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1.1rem 1.5rem 1.6rem; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .45s var(--ease-out);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .site-nav a:not(.btn) { padding: .85rem .9rem; font-size: 1.05rem; color: var(--ink-2) !important; border-bottom: 0; }
  .site-nav > ul > li > a.is-active { color: var(--accent-dark) !important; }
  .site-header:not(.is-scrolled):has(.site-nav.is-open) { background: #fff; }
  .site-header:has(.site-nav.is-open) .brand__logo { filter: brightness(1) invert(0); }
  .site-header:has(.site-nav.is-open) .nav-toggle span { background: var(--ink); }
  .brand__logo { height: 19px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--accent-soft);
    border-radius: 0; margin: .2rem 0 .5rem 1rem; padding: 0;
  }
  .nav-cta { margin-top: .7rem; }
  .hero-slider { min-height: 560px; }
  .service-row__icon, .service-row__go { grid-row: auto; }
  .service-row__go { justify-self: end; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.js .reveal { visibility: visible; }
  .swiper-slide-active .slide-bg img { animation: none; }
  .slide-anim { opacity: 1; transform: none; }
  .parallax-frame img, .page-hero__bg img { transform: none; }
}
