/* ==========================================================================
   Sauter Investments GmbH — Bauleitung & Baumanagement
   Design system: anthracite · warm paper · brass
   ========================================================================== */

:root {
  --ink: #1F2226;
  --ink-2: #272B30;
  --ink-3: #33383E;
  --ink-deep: #17191C;
  --paper: #F5F2EC;
  --paper-2: #ECE6DC;
  --white: #FBFAF7;
  --brass: #A8865A;
  --brass-text: #7F6238;
  --brass-light: #C9AA7C;
  --concrete: #8A8F94;
  --muted: #5B6066;
  --muted-light: #A9ADB1;
  --line: rgba(31, 34, 38, .14);
  --line-strong: rgba(31, 34, 38, .28);
  --line-light: rgba(245, 242, 236, .16);

  --font-display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --container: 1320px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --section: clamp(88px, 11vw, 168px);
  --header-h: 88px;

  --ease: cubic-bezier(.2, .7, .15, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brass-light); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: inherit;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  left: 16px; top: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: .875rem;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip-link:focus { transform: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }
.section--sand { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }

/* ---------- Typography ---------- */

.display {
  font-size: clamp(2.6rem, 1.2rem + 4.7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 500;
}

.h2 {
  font-size: clamp(2.05rem, 1.25rem + 2.9vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.032em;
}

.h3 {
  font-size: clamp(1.2rem, 1.05rem + .45vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -.012em;
  font-weight: 600;
}

.accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--brass-text);
}
.section--dark .accent,
.on-dark .accent { color: var(--brass-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-text);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.section--dark .eyebrow,
.on-dark .eyebrow { color: var(--brass-light); }

.lead {
  font-size: clamp(1.125rem, 1.02rem + .35vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
}
.section--dark .lead { color: var(--muted-light); }

.muted { color: var(--muted); }

/* ---------- Buttons & links ---------- */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleY(1); }
.btn:hover,
.btn:focus-visible { color: var(--ink); border-color: var(--brass); }

.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--brass { --btn-bg: var(--brass-light); --btn-fg: var(--ink); }
.btn--brass::before { background: var(--paper); }
.btn--brass:hover,
.btn--brass:focus-visible { border-color: var(--paper); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}

.arrow { width: 18px; height: 10px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .9375rem;
  padding-block: 6px;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .5s var(--ease);
}
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow .arrow { transition: transform .45s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Brand ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.brand-mark { width: 44px; height: 44px; flex: none; --mark-accent: var(--brass); }
.brand-divider {
  width: 1px;
  height: 30px;
  background: currentColor;
  opacity: .18;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .24em;
  margin-right: -.24em;
}
.brand-sub {
  margin-top: 6px;
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brass-text);
}
.on-dark .brand { color: var(--paper); }
.on-dark .brand-mark { --mark-accent: var(--brass-light); }
.on-dark .brand-sub { color: var(--brass-light); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height .45s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease), transform .5s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(245, 242, 236, .86);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}
.site-header.is-scrolled::after { opacity: 1; }
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }

.nav-list {
  display: flex;
  gap: clamp(18px, 2.2vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  position: relative;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: 8px;
  opacity: .78;
  transition: opacity .3s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-list a:hover,
.nav-list a.is-active { opacity: 1; }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); transform-origin: left; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-switch button {
  min-width: 36px;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  color: var(--muted);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.lang-switch button:not([aria-pressed="true"]):hover { color: var(--ink); }

.header-cta { padding: 14px 20px; font-size: .875rem; }

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .45s var(--ease), top .45s var(--ease), opacity .3s;
}
.menu-toggle span:nth-child(1) { top: 19px; }
.menu-toggle span:nth-child(2) { top: 28px; width: 16px; }
body.nav-open .menu-toggle span:nth-child(1) { top: 23.5px; transform: rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { top: 23.5px; width: 24px; transform: rotate(-45deg); }

/* Mobile navigation overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
  background: var(--paper);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease), visibility 0s linear .7s;
}
body.nav-open .mobile-nav {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path .7s var(--ease), visibility 0s;
}
.mobile-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: m;
}
.mobile-nav li {
  counter-increment: m;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
body.nav-open .mobile-nav li { opacity: 1; transform: none; }
body.nav-open .mobile-nav li:nth-child(1) { transition-delay: .18s; }
body.nav-open .mobile-nav li:nth-child(2) { transition-delay: .23s; }
body.nav-open .mobile-nav li:nth-child(3) { transition-delay: .28s; }
body.nav-open .mobile-nav li:nth-child(4) { transition-delay: .33s; }
body.nav-open .mobile-nav li:nth-child(5) { transition-delay: .38s; }
.mobile-nav li a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.mobile-nav li a::before {
  content: "0" counter(m);
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--brass-text);
}
.mobile-nav-foot {
  display: grid;
  gap: 18px;
  font-size: .9375rem;
  color: var(--muted);
}
.mobile-nav-foot .btn { justify-content: center; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(100vh, 980px);
  min-height: min(100svh, 980px);
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  width: 100%;
}
.hero-content {
  grid-column: 1 / span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(48px, 7vh, 96px) clamp(40px, 6vh, 72px);
  position: relative;
  z-index: 2;
}
.hero .display { margin-bottom: clamp(24px, 3vw, 36px); }
.hero .display .line { display: block; }
.hero .lead { max-width: 34em; margin-bottom: clamp(32px, 4vw, 48px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(48px, 7vh, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero-facts dt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.hero-facts dd { margin: 0; font-size: .82rem; line-height: 1.45; color: var(--muted); }

/* Photo stays inside the grid: columns 8–12, right edge on the container line */
.hero-media {
  grid-column: 8 / -1;
  align-self: center;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: calc(100svh - var(--header-h) - 96px);
}
.hero-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 100%;
  filter: saturate(.66) sepia(.08) contrast(1.03);
}
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 34, 38, .08) 0%, rgba(31, 34, 38, 0) 40%, rgba(31, 34, 38, .35) 100%);
}

.hero-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px 20px 20px;
  background: var(--ink);
  color: var(--paper);
}
.hero-card .brand-mark { width: 40px; height: 40px; color: var(--paper); --mark-accent: var(--brass-light); }
.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.005em;
}
.hero-card span { display: block; font-size: .8rem; color: var(--muted-light); }

.hero-coords {
  position: absolute;
  left: calc(100% + 18px);
  bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}


/* ---------- Principles / Haltung ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 48px;
}
.intro-grid .intro-head { grid-column: 1 / span 5; }
.intro-grid .intro-body { grid-column: 7 / span 6; padding-top: 44px; }
.intro-body .lead { color: var(--ink); font-size: clamp(1.2rem, 1.05rem + .6vw, 1.55rem); line-height: 1.5; letter-spacing: -.01em; }
.intro-body .lead + p { margin-top: 24px; color: var(--muted); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
}
.principle {
  padding: 36px clamp(20px, 2.4vw, 40px) 8px 0;
}
.principle + .principle {
  padding-left: clamp(20px, 2.4vw, 40px);
  border-left: 1px solid var(--line);
}
.principle-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--brass);
}
.principle .h3 { margin-bottom: 12px; }
.principle p { color: var(--muted); font-size: 1rem; }

/* ---------- Services ---------- */

.section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head > :first-child { grid-column: 1 / span 7; }
.section-head > :last-child:not(:first-child) { grid-column: 9 / span 4; }

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(28px, 2.8vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color .6s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  left: -1px; top: -1px;
  width: calc(100% + 1px);
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.service:hover { background: var(--white); }
.service:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--concrete);
  margin-bottom: auto;
  padding-bottom: 48px;
  transition: color .5s var(--ease);
}
.service:hover .service-num { color: var(--brass-text); }
.service .h3 { margin-bottom: 14px; }
.service p { font-size: .98rem; color: var(--muted); }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-tags li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
}

.services-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  margin-top: 40px;
  font-size: .9375rem;
  color: var(--muted);
}

/* ---------- Statement band ---------- */

.statement {
  position: relative;
  min-height: clamp(520px, 86vh, 860px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.statement-media { position: absolute; inset: -12% 0; }
.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(.7) contrast(1.05) brightness(.92);
  will-change: transform;
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 25, 28, .25) 0%, rgba(23, 25, 28, 0) 35%, rgba(23, 25, 28, .78) 100%),
    linear-gradient(90deg, rgba(23, 25, 28, .55) 0%, rgba(23, 25, 28, 0) 70%);
}
.statement .container { position: relative; z-index: 2; padding-bottom: clamp(56px, 8vw, 112px); }
.statement blockquote { margin: 0; }
.statement blockquote p {
  max-width: 13.5em;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.1rem + 3.2vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -.034em;
  font-weight: 500;
}
.statement blockquote footer {
  margin-top: 28px;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ---------- Spotlight (Bauen unter Betrieb) ---------- */

.spotlight {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 56px;
  align-items: center;
}
.spotlight-media { grid-column: 1 / span 6; position: relative; }
.spotlight-body { grid-column: 8 / span 5; }
.spotlight-media .frame { aspect-ratio: 4 / 5; }
.spotlight-media figcaption {
  position: absolute;
  left: 0;
  bottom: -36px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.spotlight-body .h2 { margin-bottom: 28px; }
.spotlight-body .lead { margin-bottom: 36px; }

.checklist {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid var(--line-light);
}
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 1rem;
  line-height: 1.5;
}
.checklist svg { width: 18px; height: 18px; margin-top: 3px; color: var(--brass-light); }

.reference-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--ink-2);
  border-left: 2px solid var(--brass-light);
  font-size: .95rem;
  color: var(--muted-light);
}
.reference-note strong { color: var(--paper); font-weight: 500; }

/* ---------- Frames / image reveals ---------- */

.frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.section--dark .frame { background: var(--ink-2); }
.section--dark .frame img { filter: saturate(.55) contrast(1.06) brightness(.92); }
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) sepia(.08) contrast(1.03);
}

/* ---------- Process ---------- */

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process-wrap { position: relative; }
.process-line {
  position: absolute;
  left: 0; right: 0;
  top: 7px;
  height: 1px;
  background: var(--line);
}
.process-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2.2s var(--ease) .2s;
}
.process-wrap.is-visible .process-line::after { transform: scaleX(1); }

.step { position: relative; counter-increment: step; padding-top: 48px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  transition: background-color .5s var(--ease), border-color .5s var(--ease);
}
.process-wrap.is-visible .step::before { background: var(--brass); border-color: var(--brass); }
.process-wrap.is-visible .step:nth-child(2)::before { transition-delay: .5s; }
.process-wrap.is-visible .step:nth-child(3)::before { transition-delay: .95s; }
.process-wrap.is-visible .step:nth-child(4)::before { transition-delay: 1.4s; }
.process-wrap.is-visible .step:nth-child(5)::before { transition-delay: 1.85s; }
.step-num {
  display: block;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--brass-text);
}
.step .h3 { margin-bottom: 12px; }
.step p { font-size: .96rem; color: var(--muted); }

/* ---------- Projects ---------- */

.projects {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: clamp(56px, 7vw, 104px);
}
.project { position: relative; }
.project:nth-child(1) { grid-column: 1 / span 7; }
.project:nth-child(2) { grid-column: 9 / span 4; margin-top: clamp(80px, 10vw, 168px); }
.project:nth-child(3) { grid-column: 1 / span 5; }
.project:nth-child(4) { grid-column: 7 / span 6; margin-top: clamp(48px, 9vw, 152px); }

.project-link { display: block; }
.project .frame { aspect-ratio: 4 / 3; }
.project:nth-child(2) .frame,
.project:nth-child(3) .frame { aspect-ratio: 4 / 5; }
.project .frame img { transition: transform 1.4s var(--ease), filter .8s var(--ease); }


.project-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: start;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}
.project-place {
  grid-column: 1 / -1;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-text);
}
.project .h3 { font-size: clamp(1.25rem, 1.05rem + .7vw, 1.75rem); letter-spacing: -.02em; font-weight: 500; }
.project-role {
  grid-column: 1 / -1;
  font-size: .92rem;
  color: var(--muted);
}
.project-index {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--concrete);
  align-self: center;
}

.projects-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 40px;
  margin-top: clamp(64px, 8vw, 112px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 56px;
  align-items: start;
}
.about-visual { grid-column: 1 / span 5; position: sticky; top: 112px; }
.about-body { grid-column: 7 / span 6; }

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
}
/* fine plan grid, like drafting paper */
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 242, 236, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 236, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 85%);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-mark {
  position: relative;
  width: 62%;
  max-width: 280px;
  margin: auto;
  color: var(--paper);
  opacity: .95;
}
.portrait-top,
.portrait-bottom { position: relative; display: flex; justify-content: space-between; gap: 16px; }
.portrait-top { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-light); }
.portrait-bottom { align-items: flex-end; }
.portrait-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + .6vw, 1.7rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.portrait-name small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: 0;
  color: var(--brass-light);
}

.about-body .h2 { margin-bottom: 32px; }
.about-body .lead { color: var(--ink); margin-bottom: 20px; }
.about-body p + p { margin-top: 18px; }
.about-body > p { color: var(--muted); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 56px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 26px 16px 24px 0; }
.stat + .stat { padding-left: 18px; border-left: 1px solid var(--line); }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label { display: block; font-size: .8rem; line-height: 1.4; color: var(--muted); }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.timeline li:first-child { border-top: 1px solid var(--line); }
.timeline time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
  color: var(--brass-text);
}
.timeline strong { display: block; font-weight: 600; font-size: 1rem; }
.timeline span { display: block; font-size: .92rem; color: var(--muted); }
.timeline li.is-current strong::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--brass);
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(168, 134, 90, .18);
}

.signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.signature-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--ink);
}
.signature-role { font-size: .85rem; color: var(--muted); line-height: 1.45; }

/* ---------- Contact ---------- */

.contact { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  opacity: .2;
  filter: saturate(.6);
}
.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(31, 34, 38, .8) 40%, var(--ink) 100%);
}
.contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 64px;
}
.contact-info { grid-column: 1 / span 5; }
.contact-form-wrap { grid-column: 7 / span 6; }

.contact-info .h2 { margin-bottom: 28px; }
.contact-info .lead { margin-bottom: 48px; }

.contact-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: .98rem;
}
.contact-list .label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding-top: 3px;
}
.contact-list a { background: linear-gradient(var(--brass-light), var(--brass-light)) 0 100% / 0 1px no-repeat; transition: background-size .5s var(--ease), color .3s; }
.contact-list a:hover { background-size: 100% 1px; color: var(--brass-light); }

.regions { margin-top: 40px; }
.regions-title {
  display: block;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li {
  padding: 7px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--paper);
}

.form-card {
  padding: clamp(28px, 3.6vw, 56px);
  background: var(--ink-2);
  border: 1px solid var(--line-light);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { color: var(--muted-light); font-size: .95rem; margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.field { position: relative; display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding-top: 18px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(245, 242, 236, .26);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1rem;
  outline: none;
  transition: border-color .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9AA7C' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}
.field select option { background: var(--ink); color: var(--paper); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(245, 242, 236, .32); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--brass-light); }
.field.has-error input,
.field.has-error textarea { border-bottom-color: #E0826B; }
.field-error {
  min-height: 1.2em;
  margin-top: 6px;
  font-size: .78rem;
  color: #F0A08C;
}

.consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin-top: 20px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted-light);
  cursor: pointer;
}
.consent input {
  width: 20px; height: 20px;
  margin: 1px 0 0;
  border: 1px solid rgba(245, 242, 236, .4);
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  place-content: center;
  transition: background-color .3s, border-color .3s;
}
.consent input::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 1.6px solid var(--ink);
  border-bottom: 1.6px solid var(--ink);
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform .25s var(--ease);
}
.consent input:checked { background: var(--brass-light); border-color: var(--brass-light); }
.consent input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.consent.has-error input { border-color: #E0826B; }
.consent a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(245, 242, 236, .4); }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 32px;
}
.form-hint { font-size: .8rem; color: var(--muted-light); }

.form-status {
  display: none;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--brass-light);
  background: rgba(201, 170, 124, .08);
  font-size: .95rem;
}
.form-status.is-visible { display: flex; }
.form-status.is-error { border-left-color: #E0826B; background: rgba(224, 130, 107, .08); }
.form-status.is-error svg { display: none; }
.consent-error { grid-column: 1 / -1; margin: 6px 0 0 34px; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--brass-light); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: var(--muted-light);
  padding-top: clamp(64px, 8vw, 104px);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 48px;
  padding-bottom: clamp(56px, 7vw, 88px);
}
.footer-brand { grid-column: 1 / span 4; }
.footer-brand p { margin-top: 24px; max-width: 26em; line-height: 1.6; }
.footer-col { grid-column: span 2; }
.footer-col:nth-of-type(2) { grid-column: 6 / span 2; }
.footer-col:nth-of-type(3) { grid-column: 8 / span 3; }
.footer-col:nth-of-type(4) { grid-column: 11 / span 2; }
.footer-col h4 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--brass-light); }
.footer-col address { font-style: normal; line-height: 1.7; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  padding-block: 28px;
  border-top: 1px solid var(--line-light);
  font-size: .8rem;
}
.to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}
.to-top svg { width: 10px; height: 14px; transition: transform .4s var(--ease); }
.to-top:hover svg { transform: translateY(-3px); }

/* ---------- Legal pages ---------- */

.legal-hero {
  padding: calc(var(--header-h) + clamp(56px, 8vw, 120px)) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.legal-hero .h2 { max-width: 14em; }
.legal-hero p { margin-top: 20px; color: var(--muted); }
.legal {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  padding-block: clamp(48px, 7vw, 104px);
}
.legal-body { grid-column: 4 / span 7; }
.legal-body h2 {
  margin: 56px 0 16px;
  font-size: clamp(1.25rem, 1.1rem + .5vw, 1.55rem);
  letter-spacing: -.02em;
  font-weight: 600;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p,
.legal-body li { color: var(--muted); }
.legal-body p + p { margin-top: 14px; }
.legal-body ul { padding-left: 1.2em; margin: 14px 0; }
.legal-body li + li { margin-top: 6px; }
.legal-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }
.legal-body dl { margin: 0; display: grid; grid-template-columns: 200px 1fr; border-top: 1px solid var(--line); }
.legal-body dt, .legal-body dd { margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); }
.legal-body dt { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-text); padding-top: 19px; }
.legal-body dd { color: var(--ink); }
.legal-aside { grid-column: 1 / span 2; font-size: .8rem; color: var(--muted); }
.legal-aside a { display: inline-flex; gap: 10px; align-items: center; color: var(--ink); }
.legal-aside .arrow { transform: rotate(180deg); }

/* ==========================================================================
   Motion — reveal on scroll
   Hidden states only apply when JS is running (html.js) and the user has
   not asked for reduced motion.
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 1.1s var(--ease) var(--delay, 0s),
      transform 1.2s var(--ease) var(--delay, 0s);
  }
  .js [data-reveal="fade"] { transform: none; }
  .js [data-reveal="left"] { transform: translate3d(-28px, 0, 0); }
  .js [data-reveal].is-visible { opacity: 1; transform: none; }

  /* Image reveal: curtain wipe + gentle settle */
  .js [data-reveal="image"] {
    opacity: 1;
    transform: none;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.4s var(--ease) var(--delay, 0s);
  }
  .js [data-reveal="image"] img {
    transform: scale(1.14);
    transition: transform 2s var(--ease) var(--delay, 0s);
  }
  .js [data-reveal="image"].is-visible { clip-path: inset(0 0 0 0); }
  .js [data-reveal="image"].is-visible img { transform: scale(1); }

  /* Headline lines rise out of a mask */
  .js .reveal-lines .line { overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
  .js .reveal-lines .line > span {
    display: inline-block;
    transform: translate3d(0, 105%, 0);
    transition: transform 1.2s var(--ease);
  }
  .js .reveal-lines .line:nth-child(2) > span { transition-delay: .12s; }
  .js .reveal-lines .line:nth-child(3) > span { transition-delay: .24s; }
  .js .reveal-lines.is-visible .line > span { transform: none; }
}


/* hover zoom after reveal has finished */
.project:hover .frame img,
.js .project:hover [data-reveal="image"].is-visible img {
  transform: scale(1.045);
  filter: saturate(.9) sepia(.04) contrast(1.03);
  transition: transform 1.4s var(--ease), filter .8s var(--ease);
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */


@media (max-width: 1180px) {
  .nav-list { gap: 20px; }
  .header-cta { display: none; }
  .hero-content { grid-column: 1 / span 7; }
  .service { min-height: 340px; }
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }

  .nav-list,
  .nav .lang-switch { display: none; }
  .menu-toggle { display: block; }

  /* Flatten the hero so the photo can sit between the call-to-action and the facts */
  .hero { min-height: auto; flex-direction: column; }
  .hero-grid,
  .hero-content { display: contents; }
  .hero-content > * { margin-inline: var(--gutter); }
  .hero .eyebrow { order: 1; align-self: flex-start; margin-top: clamp(32px, 7vw, 56px); }
  .hero .display { order: 2; }
  .hero .lead { order: 3; }
  .hero-actions { order: 4; }
  .hero-media {
    order: 5;
    position: relative;
    top: auto;
    width: auto;
    max-width: none;
    height: clamp(360px, 88vw, 640px);
    margin: clamp(40px, 8vw, 64px) var(--gutter) 0;
    grid-column: auto;
    align-self: stretch;
    aspect-ratio: auto;
    max-height: none;
  }
  .hero .hero-facts { order: 6; margin-top: 8px; margin-bottom: 8px; border-top: 0; }
  .hero-card { left: 16px; bottom: 16px; right: auto; padding: 16px 20px 16px 16px; }
  .hero-coords { display: none; }
  .hero-facts { max-width: none; }

  .intro-grid .intro-head,
  .intro-grid .intro-body { grid-column: 1 / -1; }
  .intro-grid .intro-body { padding-top: 0; }

  .section-head > :first-child,
  .section-head > :last-child:not(:first-child) { grid-column: 1 / -1; }
  .section-head > :last-child:not(:first-child) { margin-top: 24px; }

  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .spotlight-media,
  .spotlight-body { grid-column: 1 / -1; }
  .spotlight-media .frame { aspect-ratio: 4 / 3; }
  .spotlight-body { margin-top: 24px; }

  .process-wrap { padding-left: 40px; }
  .process { grid-template-columns: 1fr; gap: 0; }
  .process-line { left: 7px; right: auto; top: 8px; bottom: 8px; width: 1px; height: auto; }
  .process-line::after { transform: scaleY(0); transform-origin: top; }
  .process-wrap.is-visible .process-line::after { transform: scaleY(1); }
  .step { padding: 0 0 40px; }
  .step::before { left: -40px; top: 3px; }
  .step:last-child { padding-bottom: 0; }

  .projects { row-gap: 64px; }
  .project:nth-child(n) { grid-column: 1 / -1; margin-top: 0; }
  .project:nth-child(2),
  .project:nth-child(3) { grid-column: span 6; }
  .project:nth-child(2) .frame,
  .project:nth-child(3) .frame { aspect-ratio: 4 / 5; }

  .about-visual,
  .about-body { grid-column: 1 / -1; }
  .about-visual { position: relative; top: 0; max-width: 520px; }

  .contact-info,
  .contact-form-wrap { grid-column: 1 / -1; }

  .footer-brand { grid-column: 1 / -1; }
  .footer-col,
  .footer-col:nth-of-type(n) { grid-column: span 4; }

  .legal-body { grid-column: 1 / -1; }
  .legal-aside { grid-column: 1 / -1; margin-bottom: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }

  .hero-facts { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .hero-facts > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-facts dt { margin: 0; font-size: 1.02rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle + .principle { padding: 32px 0; border-left: 0; }
  .principle + .principle { border-top: 1px solid var(--line); }
  .principle-icon { margin-bottom: 20px; }

  .services { grid-template-columns: 1fr; }
  .service { min-height: 0; }
  .service-num { padding-bottom: 32px; }

  .project:nth-child(2),
  .project:nth-child(3) { grid-column: 1 / -1; }
  .project:nth-child(2) .frame,
  .project:nth-child(3) .frame { aspect-ratio: 4 / 3; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

  .timeline li { grid-template-columns: 1fr; gap: 4px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-actions .btn { width: 100%; justify-content: center; }

  .contact-list li { grid-template-columns: 1fr; gap: 4px; }

  .footer-col,
  .footer-col:nth-of-type(n) { grid-column: 1 / -1; }

  .legal-body dl { grid-template-columns: 1fr; }
  .legal-body dt { padding-bottom: 0; border-bottom: 0; }
  .legal-body dd { padding-top: 6px; }
}

@media (max-width: 420px) {
  .brand-divider { display: none; }
  .brand { gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-card { right: 16px; }
}

@media print {
  .site-header, .mobile-nav, .contact-form-wrap, .to-top { display: none !important; }
  .section--dark, .site-footer { background: #fff; color: #000; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
