:root {
  --yellow: #e1b70b;
  --yellow-bright: #f1c500;
  --green: #314d28;
  --green-dark: #23381d;
  --ink: #252525;
  --muted: #6e716c;
  --paper: #f6f5f1;
  --white: #ffffff;
  --line: rgba(37, 37, 37, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 60px rgba(26, 38, 22, 0.13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--yellow-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(35, 56, 29, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.brand { display: block; height: 58px; width: 218px; overflow: hidden; }
.brand img { width: 218px; height: 58px; object-fit: contain; }

.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.65); }
.nav-cta { border-radius: 999px; }
.nav-cta:hover { background: var(--white); color: var(--green); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: center;
  padding: 100px 10vw 48px;
  background: var(--green-dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav a {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 10vw, 4.8rem);
  line-height: 1.15;
  text-decoration: none;
}
.mobile-menu p { margin-top: 46px; color: rgba(255,255,255,.68); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 33, 18, .76) 0%, rgba(21, 33, 18, .48) 46%, rgba(21, 33, 18, .10) 78%),
    url("assets/verena-hero.webp") center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 27, 14, .26), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
  padding: 132px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow-bright);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--ink); }
.eyebrow-green { color: var(--green); }

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.4vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-top: 12px;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: .04em;
  left: -10px;
  height: .16em;
  background: var(--yellow-bright);
  content: "";
}

.hero-copy {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow-bright); color: var(--ink); }
.button-primary:hover { background: var(--white); }
.button-light { background: var(--white); color: var(--green-dark); }
.button-light:hover { background: var(--yellow-bright); }

.text-link { font-weight: 800; text-underline-offset: 6px; }
.text-link-light { color: var(--white); }
.text-link span { margin-left: 6px; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  transform: translateX(-50%);
}

.section-yellow {
  background:
    radial-gradient(circle at 6% 14%, rgba(225,183,11,.18), transparent 20%),
    radial-gradient(circle at 94% 86%, rgba(49,77,40,.07), transparent 23%),
    #f8f5ed;
}
.intro { position: relative; padding: 130px 0; }
.intro h2, .intro h3 { color: var(--green-dark); }
.intro .solution-number { color: #9f7f00; font-weight: 800; }
.intro-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 9vw; align-items: start; }

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.section-heading > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; }

.solution-list { border-top: 1px solid rgba(37,37,37,.28); }
.solution-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(37,37,37,.28);
}
.solution-number { font-family: var(--serif); font-size: 1.1rem; }
.solution-item h3 { margin: 0 0 10px; font-size: 1.28rem; }
.solution-item p { margin: 0; color: rgba(37,37,37,.76); }

.services { padding: 130px 0; background: var(--paper); }
.section-heading-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 7vw; align-items: end; }
.section-heading-row > p { margin: 0 0 7px !important; color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-dark { background: var(--green); color: var(--white); }
.service-card::after {
  position: absolute;
  right: -82px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(49,77,40,.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.service-card-dark::after { border-color: rgba(255,255,255,.1); }
.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  color: var(--green);
  font-size: 1.45rem;
}
.service-card-dark .service-icon { color: var(--yellow-bright); }
.card-kicker { margin: 48px 0 9px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card-dark .card-kicker { color: var(--yellow-bright); }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.service-card > p:not(.card-kicker) { color: var(--muted); }
.service-card-dark > p:not(.card-kicker) { color: rgba(255,255,255,.76); }
.service-card.service-card-dark li { color: var(--white); }
.service-card ul { margin: 26px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; padding-left: 18px; color: var(--muted); }
.service-card li::before { position: absolute; left: 0; color: var(--yellow); content: "•"; }

.fit { padding: 130px 0; background: var(--white); }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.fit-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.fit-card > span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1rem;
}
.fit-card h3 {
  margin: 52px 0 14px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.12;
}
.fit-card p { margin: 0; color: var(--muted); }
.continuity-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: end;
  margin-top: 18px;
  padding: 46px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
}
.continuity-note .eyebrow { margin-bottom: 12px; }
.continuity-note h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}
.continuity-note > p { margin: 0; color: rgba(255,255,255,.76); }

.principles { padding: 58px 0; background: var(--green-dark); color: var(--white); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principles p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem); text-align: center; }
.principles p + p { border-left: 1px solid rgba(255,255,255,.25); }

.work { padding: 130px 0; background: var(--white); }
.filter-group { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
}
.filter-button:hover, .filter-button.is-active { border-color: var(--green); background: var(--green); color: var(--white); }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 22px; margin-top: 64px; }
.project-card { margin: 0; transition: opacity 180ms ease, transform 180ms ease; }
.project-card[hidden] { display: none; }
.project-link { display: flex; height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); color: var(--ink); flex-direction: column; text-decoration: none; transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.project-card img { width: 100%; height: clamp(235px, 24vw, 330px); object-fit: cover; background: var(--white); filter: saturate(.9); transition: filter 240ms ease, transform 240ms ease; }
.project-card img.project-image-top { object-position: center 18%; }
.project-link:hover, .project-link:focus-visible { border-color: rgba(49,77,40,.45); box-shadow: 0 18px 42px rgba(26,38,22,.12); transform: translateY(-4px); }
.project-link:hover img, .project-link:focus-visible img { filter: saturate(1.05); transform: scale(1.015); }
.project-link:focus-visible { outline: 3px solid var(--yellow-bright); outline-offset: 3px; }
.project-meta { display: flex; padding: 22px 22px 24px; flex: 1; flex-direction: column; }
.project-meta .project-type { margin: 0 0 7px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-meta h3 { margin: 0; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; line-height: 1.2; }
.project-summary { margin: 13px 0 22px; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.project-cta { margin-top: auto; color: var(--green); font-size: .86rem; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(49,77,40,.35); text-underline-offset: 5px; }
.project-card.is-clamped { display: none; }
.work-more { display: none; margin-top: 34px; justify-content: center; }
.work-more.is-visible { display: flex; }
.work-more-button { width: 100%; max-width: 320px; }

.about { padding: 130px 0; overflow: hidden; background: var(--green); color: var(--white); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: center; }
.about-image { position: relative; }
.about-image::before { position: absolute; inset: -22px 32% 46% -100vw; background: var(--yellow); content: ""; }
.about-image img { position: relative; width: 100%; max-height: 720px; border-radius: 18px; object-fit: cover; object-position: 50% 26%; box-shadow: var(--shadow); }
.experience-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: grid;
  width: 146px;
  height: 146px;
  padding: 20px;
  border-radius: 50%;
  background: var(--yellow-bright);
  color: var(--ink);
  line-height: 1.2;
  place-content: center;
  text-align: center;
}
.experience-badge strong { display: block; font-family: var(--serif); font-size: 2.5rem; }
.about-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 3.9vw, 4.1rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.about-content > p { color: rgba(255,255,255,.75); }
.about-content .about-lead { margin-top: 30px; color: var(--white); font-size: 1.18rem; }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 38px 0; }
.about-facts div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); }
.about-facts strong { display: block; color: var(--yellow-bright); font-family: var(--serif); font-size: 1.9rem; }
.about-facts span { color: rgba(255,255,255,.65); font-size: .82rem; }
.about details { border-top: 1px solid rgba(255,255,255,.25); }
.about details:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.about summary { padding: 18px 4px; cursor: pointer; font-weight: 750; }
.about details p { margin: 0; padding: 0 4px 20px; color: rgba(255,255,255,.7); }

.trust { padding: 120px 0; background: var(--paper); }
.centered { max-width: 770px; margin-inline: auto; text-align: center; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 68px; align-items: center; }
.trust-item { display: grid; aspect-ratio: 1; border: 4px solid var(--green); border-radius: 50%; place-content: center; color: var(--green); text-align: center; }
.trust-item span { font-family: var(--serif); font-size: .78rem; }
.trust-item strong { font-size: clamp(1.1rem, 2vw, 1.7rem); line-height: 1.05; }
.certification-logos { display: grid; gap: 18px; justify-items: center; }
.certification-logos img { width: min(210px, 100%); max-height: 94px; object-fit: contain; }

.contact {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 91% 12%, rgba(255,255,255,.08), transparent 22%),
    var(--green);
  color: var(--white);
}
.contact::after {
  position: absolute;
  right: -190px;
  bottom: -300px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}
.contact .eyebrow { color: var(--yellow-bright); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; }
.contact h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.2vw, 5.25rem); font-weight: 400; letter-spacing: -.05em; line-height: .98; }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 34px; color: rgba(255,255,255,.78); }
.contact-copy .contact-personal { margin: 15px 0 0 !important; font-size: .84rem; font-weight: 700; }
.contact .button-light { background: var(--yellow-bright); color: var(--green-dark); }
.contact .button-light:hover { background: var(--white); }
.contact-details { padding: 34px; border-left: 1px solid rgba(255,255,255,.24); font-style: normal; }
.contact-details p { margin: 0 0 25px; }
.contact-details a { color: var(--white); font-weight: 800; text-underline-offset: 5px; }

.legal-page { background: var(--white); }
.legal-main { min-height: 70vh; }
.legal-hero {
  padding: 176px 0 86px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.08), transparent 22%),
    var(--green);
  color: var(--white);
}
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.legal-hero > .section-shell > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
}
.legal-content {
  max-width: 900px;
  padding-top: 92px;
  padding-bottom: 110px;
}
.legal-content-wide { max-width: 1180px; }
.legal-content section {
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 400;
  line-height: 1.12;
}
.legal-content h3 {
  margin: 34px 0 10px;
  color: var(--green-dark);
  font-size: 1.08rem;
}
.legal-content p,
.legal-content li,
.legal-content address,
.legal-content dd { color: #555a53; }
.legal-content address { font-style: normal; }
.legal-content a { color: var(--green); text-underline-offset: 4px; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 6px; }
.legal-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}
.legal-data { margin: 0; }
.legal-data > div {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) 1.3fr;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.legal-data dt { color: var(--green-dark); font-weight: 800; }
.legal-data dd { margin: 0; }
.legal-source { margin-top: 42px; font-size: .88rem; }
.document-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 38px;
}
.document-intro h2 { margin-bottom: 10px; }
.document-intro p { max-width: 690px; margin: 0; }
.document-intro .button { flex: 0 0 auto; color: var(--ink); text-decoration: none; }
.pdf-preview {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--green-dark) !important;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.12;
  text-decoration: none;
}
.pdf-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(26,38,22,.15);
  transition: transform 200ms ease;
}
.pdf-preview:hover img { transform: translateY(-5px); }
.pdf-preview > span > span { color: var(--yellow); }

.site-footer {
  padding: 54px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  background: #182a16;
  color: rgba(255,255,255,.92);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 42px; align-items: center; }
.footer-grid p { margin: 0; }
.footer-grid > div:first-child > p:not(.footer-brand) { margin-top: 5px; color: rgba(255,255,255,.84); font-size: .95rem; }
.footer-brand { display: block; width: 210px; height: auto; max-width: 100%; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer-links a {
  padding: 7px 0;
  color: var(--white);
  font-size: .94rem;
  font-weight: 750;
  text-decoration-color: rgba(255,255,255,.62);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.footer-links a:hover,
.footer-links a[aria-current="page"] { color: var(--yellow-bright); text-decoration-color: var(--yellow-bright); }
.footer-grid > p:last-child { color: rgba(255,255,255,.82); font-size: .92rem; white-space: nowrap; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { background-position: 62% center; }
  .hero::before { position: absolute; inset: 0; background: rgba(22,34,19,.15); content: ""; }
  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; }
  .continuity-note { grid-template-columns: 1fr; gap: 28px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 26px; }
  .section-heading-row > p { max-width: 640px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card img { height: min(44vw, 340px); }
  .about-image { max-width: 520px; margin-inline: auto; }
  .about-image img { max-height: 650px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { max-width: 280px; width: 100%; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-details { padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.24); border-left: 0; }
  .legal-content { padding-top: 72px; padding-bottom: 88px; }
  .document-intro { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { height: 74px; padding-inline: 16px; }
  .site-header.is-scrolled { height: 66px; }
  .brand, .brand img { width: 180px; height: 48px; }
  .hero { min-height: 760px; background-position: 64% center; }
  .hero { background-image: linear-gradient(90deg, rgba(21,33,18,.82), rgba(21,33,18,.36)), url("assets/verena-hero.webp"); }
  .hero-content { padding-top: 112px; }
  .hero h1 { font-size: clamp(2.9rem, 13.5vw, 4.7rem); }
  .hero-copy { max-width: 92%; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .scroll-cue { display: none; }
  .intro, .services, .fit, .work, .about, .trust, .contact { padding: 88px 0; }
  .solution-item { grid-template-columns: 44px 1fr; padding: 28px 0; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .project-card img { height: min(calc(100vw - 32px), 480px); }
  .service-grid { margin-top: 46px; }
  .service-card { min-height: auto; padding: 30px 26px; }
  .fit-grid { margin-top: 42px; }
  .fit-card, .continuity-note { padding: 30px 26px; }
  .fit-card h3 { margin-top: 34px; }
  .card-kicker { margin-top: 34px; }
  .principles-grid { grid-template-columns: 1fr; gap: 18px; }
  .principles p + p { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .filter-group { justify-content: flex-start; }
  .project-grid { margin-top: 42px; }
  .experience-badge { right: -4px; width: 124px; height: 124px; }
  .about-facts { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { max-width: 260px; }
  .legal-hero { padding: 138px 0 66px; }
  .legal-columns { grid-template-columns: 1fr; gap: 22px; }
  .legal-data > div { grid-template-columns: 1fr; gap: 4px; }
  .pdf-preview { grid-template-columns: 1fr; gap: 28px; padding: 26px; }
  .pdf-preview img { max-width: 420px; }
  .footer-links { flex-wrap: wrap; }
}

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