/* ==========================================================================
   BVO Vastgoed B.V. — institutional real estate identity
   Navy on off-white. Inter. Architectural, precise, understated.
   Single stylesheet, no framework. Mobile-responsive, desktop-first intent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette (authoritative — brand document) */
  --navy:      #1A2340;   /* primary text, headings, dark zones */
  --mid-blue:  #4A6FA5;   /* secondary text, rules, hover */
  --brass:     #C9A84C;   /* decorative accent only — never body text */
  --deep-blue: #2E3F6E;   /* card / surface on light, button hover */
  --ice:       #E8EDF5;   /* light section background, alt rows */
  --off-white: #F5F6F8;   /* page background — warm paper */
  --white:     #FFFFFF;

  --navy-80:   rgba(26, 35, 64, 0.80);
  --navy-60:   rgba(26, 35, 64, 0.62);
  --white-85:  rgba(255, 255, 255, 0.85);
  --white-60:  rgba(255, 255, 255, 0.60);
  --hairline:  rgba(74, 111, 165, 0.30);

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-pad: 48px;
  --header-h: 78px;

  /* Section rhythm */
  --section-y: 96px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--mid-blue); }

h1, h2, h3, h4, p { margin: 0; }

/* Visible, consistent focus state for keyboard users */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* Honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; color: var(--white); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--ice { background: var(--ice); }
.section--navy { background: var(--navy); color: var(--white-85); }
.section--tight { padding-block: calc(var(--section-y) * 0.7); }

/* --------------------------------------------------------------------------
   4. Typography scale
   -------------------------------------------------------------------------- */
.h1, h1 {
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);   /* 32 → 48px */
  line-height: 1.16;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.h2, h2 {
  font-weight: 500;
  font-size: clamp(1.375rem, 1.1rem + 1.1vw, 1.75rem);  /* 22 → 28px */
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.h3, h3 {
  font-weight: 500;
  font-size: 1.1875rem;  /* 19px */
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.lead {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--navy-80);
}

p + p { margin-top: 1.1em; }

.prose p { color: var(--navy-80); }
.prose p + p { margin-top: 1.25em; }

/* Eyebrow / section label — the architectural signal */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;          /* 12px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mid-blue);
  margin-bottom: 20px;
}
.section--navy .eyebrow { color: var(--brass); }

/* Section heading block */
.section-head { max-width: 760px; }
.section-head .h2 { margin-bottom: 0; }
.section-head .lead { margin-top: 22px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   5. Dividers — echo the logo's hairline rule + brass dot
   -------------------------------------------------------------------------- */
hr.rule {
  border: 0;
  height: 1px;
  background: var(--hairline);
  margin: 0;
}

.rule-dot {
  position: relative;
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}
.rule-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font);
  font-size: 0.8125rem;        /* 13px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--deep-blue); border-color: var(--deep-blue); color: var(--white); }

.btn--secondary {
  background: transparent;
  color: var(--navy);
}
.btn--secondary:hover { background: var(--ice); color: var(--navy); }

/* On dark backgrounds */
.btn--light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn .btn__arrow { font-size: 1.1em; line-height: 1; transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Quiet text link with brass underline reveal */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
}
.textlink:hover { color: var(--mid-blue); }
.section--navy .textlink { color: var(--white); }
.section--navy .textlink:hover { color: var(--brass); }

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo { display: block; flex-shrink: 0; }
.site-header__logo img { height: 34px; width: auto; }
.site-header__logo .logo--light { display: none; }

/* Transparent variant (over the video hero) */
.site-header--transparent { background: transparent; }
.site-header--transparent .logo--dark { display: none; }
.site-header--transparent .logo--light { display: block; }
.site-header--transparent .nav__link { color: var(--white); }
.site-header--transparent .nav__link::after { background: var(--brass); }
.site-header--transparent .nav__toggle span { background: var(--white); }

/* Solid variant (inner pages + scrolled home) */
.site-header--solid,
.site-header.is-scrolled {
  background: var(--off-white);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(26, 35, 64, 0.02);
}
.site-header.is-scrolled .logo--light,
.site-header--solid .logo--light { display: none; }
.site-header.is-scrolled .logo--dark,
.site-header--solid .logo--dark { display: block; }
.site-header.is-scrolled .nav__link,
.site-header--solid .nav__link { color: var(--navy); }
.site-header.is-scrolled .nav__toggle span,
.site-header--solid .nav__toggle span { background: var(--navy); }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__link {
  position: relative;
  font-size: 0.8125rem;     /* 13px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--mid-blue);
  transition: width 0.25s ease;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--mid-blue); }

/* Hamburger (mobile only) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* --------------------------------------------------------------------------
   8. Hero (homepage) — video background, the one dark zone besides the footer
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Navy gradient wash for legibility + institutional restraint */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,35,64,0.62) 0%, rgba(26,35,64,0.40) 40%, rgba(26,35,64,0.74) 100%),
    linear-gradient(90deg, rgba(26,35,64,0.66) 0%, rgba(26,35,64,0.12) 62%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
}
.hero__content { max-width: 760px; }
.hero .eyebrow { color: var(--brass); }
.hero h1 {
  color: var(--white);
  font-weight: 500;
  font-size: clamp(2.25rem, 1.5rem + 3.4vw, 3.75rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hero__sub {
  margin-top: 26px;
  max-width: 580px;
  color: var(--white-85);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.6;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero__brassrule {
  width: 64px; height: 2px; background: var(--brass);
  margin-bottom: 32px;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white-60);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(var(--brass), transparent);
}

/* Page header (inner pages) — light, per brand */
.page-header {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 56px;
  background: var(--off-white);
}
.page-header__inner { max-width: 820px; }
.page-header h1 { margin-bottom: 0; }
.page-header .lead { margin-top: 22px; }
.page-header .eyebrow { margin-bottom: 18px; }

/* --------------------------------------------------------------------------
   9. Intro / two-column prose
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--text-narrow { grid-template-columns: 0.85fr 1.15fr; }
.split__media { position: relative; }
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 3;
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__caption {
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-blue);
}

/* --------------------------------------------------------------------------
   10. Activiteiten cards
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 56px;
}
.card {
  background: var(--white);
  padding: 40px 38px;
  border-left: 3px solid var(--mid-blue);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.card__index {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 18px;
}
.card h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.card p { color: var(--navy-80); font-size: 0.9375rem; }
.card .textlink { margin-top: auto; padding-top: 24px; align-self: flex-start; }

/* Numbered list of activities on the activiteiten page */
.activity {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-block: 48px;
  border-top: 1px solid var(--hairline);
}
.activity:last-child { border-bottom: 1px solid var(--hairline); }
.activity__num {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mid-blue);
  letter-spacing: 0.02em;
}
.activity__num small { display: block; width: 28px; height: 2px; background: var(--brass); margin-top: 14px; }
.activity h2 { font-size: 1.375rem; margin-bottom: 18px; }
.activity__body { max-width: 760px; }

/* --------------------------------------------------------------------------
   11. Stats / facts strip
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
}
.fact { background: var(--off-white); padding: 36px 24px; text-align: center; }
.section--navy .fact { background: var(--navy); }
.fact__value {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.section--navy .fact__value { color: var(--white); }
.fact__label {
  margin-top: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-blue);
}

/* --------------------------------------------------------------------------
   12. Referenties / project cards
   -------------------------------------------------------------------------- */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.project { background: var(--white); display: flex; flex-direction: column; }
.project__media { overflow: hidden; }
.project__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 0.5s ease;
}
.project:hover .project__media img { transform: scale(1.04); }
.project__body { padding: 26px 28px 30px; border-left: 3px solid var(--mid-blue); flex: 1; display: flex; flex-direction: column; }
.project__tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 12px;
}
.project h3 { font-size: 1.0625rem; text-transform: none; margin-bottom: 10px; letter-spacing: 0; }
.project p { font-size: 0.9rem; color: var(--navy-80); }
.project__meta {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-blue);
}

/* Confidentiality / placeholder note block */
.note {
  border-left: 3px solid var(--brass);
  background: var(--ice);
  padding: 28px 32px;
  margin-top: 48px;
}
.note p { color: var(--navy-80); font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   13. Team (over-ons)
   -------------------------------------------------------------------------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.member { background: var(--white); border-left: 3px solid var(--mid-blue); padding: 32px 30px; }
.member__avatar {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white);
  font-size: 1rem; letter-spacing: 0.06em; font-weight: 500;
  margin-bottom: 22px;
}
.member h3 { font-size: 1.0625rem; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.member__role { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid-blue); margin-bottom: 16px; }
.member p { font-size: 0.9rem; color: var(--navy-80); }

/* --------------------------------------------------------------------------
   14. Full-bleed photo band
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,35,64,0.82) 0%, rgba(26,35,64,0.52) 70%, rgba(26,35,64,0.30) 100%);
}
.band__content { position: relative; z-index: 1; max-width: 620px; }
.band .eyebrow { color: var(--brass); }
.band h2 { color: var(--white); }
.band p { color: var(--white-85); margin-top: 20px; }
.band .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-detail { margin-bottom: 30px; }
.contact-detail__label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mid-blue); margin-bottom: 8px;
}
.contact-detail__value { font-size: 1.0625rem; color: var(--navy); }
.contact-detail__value a { border-bottom: 1px solid var(--brass); padding-bottom: 2px; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--navy);
  margin-bottom: 8px;
}
.field label .opt { color: var(--mid-blue); font-weight: 400; letter-spacing: 0.04em; }
.field label .req { color: var(--brass); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mid-blue);
  box-shadow: inset 0 -2px 0 var(--brass);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(26,35,64,0.35); }

.field--error input,
.field--error textarea { border-color: #B23A3A; }
.field__error { display: none; margin-top: 6px; font-size: 0.8125rem; color: #B23A3A; }
.field--error .field__error { display: block; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.8125rem; color: var(--navy-60); margin-top: 4px; }

.form-alert { padding: 18px 22px; margin-bottom: 28px; border-left: 3px solid; font-size: 0.9375rem; }
.form-alert--success { background: var(--ice); border-color: var(--brass); color: var(--navy); }
.form-alert--error { background: #FBEDED; border-color: #B23A3A; color: #7A2424; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--white-85); padding-block: 72px 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer__logo img { height: 30px; width: auto; margin-bottom: 24px; }
.site-footer p { color: var(--white-85); font-size: 0.9375rem; line-height: 1.7; }
.site-footer__col h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brass); margin-bottom: 20px; font-weight: 600;
}
.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 12px; }
.site-footer__links a {
  color: var(--white-85); font-size: 0.9375rem;
}
.site-footer__links a:hover { color: var(--white); }
.site-footer__contact a { color: var(--white); border-bottom: 1px solid rgba(201,168,76,0.6); padding-bottom: 1px; }
.site-footer__contact a:hover { color: var(--brass); }
.site-footer .placeholder { color: var(--white-60); font-style: italic; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p,
.site-footer__bottom a { color: var(--white-60); font-size: 0.8125rem; }
.site-footer__bottom a:hover { color: var(--white-85); }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  :root { --container-pad: 32px; --section-y: 72px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--text-narrow { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .projects, .team { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 32px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { color: var(--white) !important; font-size: 1.25rem; padding: 14px 0; letter-spacing: 0.08em; }
  .nav__link::after { background: var(--brass); }
  .nav__toggle { display: flex; position: relative; z-index: 110; }
  .site-header.nav-open .nav__toggle span { background: var(--white) !important; }
  .site-header.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 680px) {
  :root { --container-pad: 24px; --section-y: 56px; }
  .cards { grid-template-columns: 1fr; }
  .projects, .team { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .activity { grid-template-columns: 1fr; gap: 16px; }
  .activity__num { display: flex; align-items: center; gap: 16px; }
  .activity__num small { margin-top: 0; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__scroll { display: none; }
}

/* --------------------------------------------------------------------------
   18. Static content (no scroll effects — the brand reads like an annual
   report). The .reveal hook is retained for markup stability but never hides
   content, so the page is robust even without JavaScript.
   -------------------------------------------------------------------------- */
.reveal { opacity: 1; transform: none; }
