@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-300-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/RobotoSlab-300-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/RobotoSlab-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  /* The house font from the Webflow build, uploaded there as "ict-font.woff"
     (the face itself is Netto Pro). It carries the logo lockup and the header,
     which is why _Layout.cshtml preloads it. It ships a single weight — never
     ask for bold on it or the browser synthesises a faux bold. Not subsetted,
     so no unicode-range: the whole face is only 19 KB. */
  font-family: 'Ict Font';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/IctFont-400-latin.woff2) format('woff2');
}

/* Font faces are inlined here so the stylesheet stays a single request.
   Keeping them in one file also avoids an @import round-trip on first paint. */

/* ---------------------------------------------------------------
   Design tokens. Palette taken from the previous Webflow build so
   the brand reads identically after the migration.
   --------------------------------------------------------------- */
:root {
  --brand: #0000e6;
  --brand-dark: #0000b4;
  --accent: #489fd9;
  --ink: #16181d;
  --ink-soft: #4a4f5a;
  --line: #d7dee4;

  --bg: #fff;
  --bg-tint: #cee3ff;
  --bg-muted: #cbd9d8;
  --footer-bg: #2b2c2e;
  --footer-ink: #e4e8eb;

  /* The house font carries the whole site, exactly as it did in the Webflow
     build. It ships a single weight, so hierarchy has to come from size, case
     and colour — never from font-weight, which would only buy a faux bold.
     --font-display stays Roboto Slab and is now used where the old site used
     it as well: the buttons. Roboto is only the fallback. */
  --font: "Ict Font", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-fallback: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Roboto Slab", Georgia, serif;

  --wrap: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 6px;
  --shadow: 0 2px 10px rgb(22 24 29 / 8%);
  --shadow-lift: 0 8px 28px rgb(22 24 29 / 14%);
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }
/* Belt and braces against horizontal panning on iOS: nothing that leaks past
   the viewport may widen the page. Root causes are fixed where they occur
   (see the grid columns below); this stops the next over-long German compound
   from bringing the sideways wobble back. clip, not hidden: hidden would turn
   body into a scroll container and break the sticky navigation. */
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brand-dark); }

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

h1, h2, h3, h4 { font-weight: 400; line-height: 1.18; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 5.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--brand); padding: .8rem 1.2rem;
}
.skip-link:focus { left: .5rem; top: .5rem; }

.wrap { width: min(100% - 2 * var(--gap), var(--wrap)); margin-inline: auto; }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--bg-tint); }
.section--muted { background: var(--bg-muted); }
.section__head { text-align: center; max-width: 58ch; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { text-transform: uppercase; }
.section__head p { color: var(--ink-soft); }

/* ------------------------------ navigation ------------------------------ */
.nav { background: var(--brand); color: #fff; position: sticky; top: 0; z-index: 100; }
.nav__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--nav-h); }
.nav__brand { display: flex; align-items: flex-end; gap: 3px; margin-right: auto; text-decoration: none; color: #fff; padding-block: .6rem; }
.nav__brand:hover { color: #fff; }  /* the global a:hover would darken the "365" while the image stays white */
.nav__brand img { width: 52px; }
/* Baseline maths for the lockup: the logo PNG's "ict." baseline sits ~11.6px
   above the image bottom (transparent padding). In the 32px span with
   line-height 1, the digits' baseline sits descent + half-leading =
   7.2px - 3.7px ≈ 3.6px above the span bottom, so 8px of padding puts both
   baselines on the same line. Checked against rendered pixels — adjust there,
   not by theory, if the logo file ever changes. */
.nav__brand span { font-size: 2rem; line-height: 1; letter-spacing: -1px; padding-bottom: 8px; }

.nav__toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: none; border: 1px solid rgb(255 255 255 / 45%); color: #fff;
  font-family: var(--font); font-weight: 400; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em;
  padding: .5rem .8rem; border-radius: var(--radius); cursor: pointer;
}
.nav__toggle:hover { background: rgb(255 255 255 / 12%); }
.nav__burger { width: 18px; height: 2px; background: #fff; position: relative; }
.nav__burger::before, .nav__burger::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; }
.nav__burger::before { top: -6px; } .nav__burger::after { top: 6px; }

.nav__menu { display: none; }
.nav__menu[data-open="true"] { display: block; position: absolute; inset-inline: 0; top: 100%; background: var(--brand); box-shadow: var(--shadow-lift); padding: .5rem 0 1.5rem; max-height: calc(100dvh - var(--nav-h)); overflow-y: auto; }
.nav__list { list-style: none; margin: 0; padding: 0 var(--gap); }
.nav__link { display: block; padding: .85rem 0; color: #fff; text-decoration: none; text-transform: uppercase; font-size: .95rem; letter-spacing: .03em; border-bottom: 1px solid rgb(255 255 255 / 15%); }
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; text-decoration: underline; text-underline-offset: .3em; }

.nav__mega { list-style: none; margin: 0; padding: .4rem 0 .8rem; display: grid; gap: .2rem; }
.nav__mega a { display: block; padding: .55rem .8rem; color: rgb(255 255 255 / 88%); text-decoration: none; border-radius: 8px; font-size: .95rem; }
.nav__mega a:hover { background: rgb(255 255 255 / 12%); color: #fff; }
.nav__mega-icon { display: none; }
.nav__mega-title { display: block; font-family: var(--font-fallback); font-weight: 500; font-size: 1.05rem; }
.nav__mega-teaser { display: none; font-size: .85rem; line-height: 1.45; color: rgb(255 255 255 / 72%); }
.nav__mega-note { display: none; }

.nav__lang { display: flex; gap: .35rem; padding: 1rem var(--gap) 0; }
.nav__lang a { color: rgb(255 255 255 / 80%); text-decoration: none; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; border: 1px solid rgb(255 255 255 / 35%); border-radius: var(--radius); padding: .3rem .6rem; }
.nav__lang a[aria-current="true"] { background: #fff; color: var(--brand); border-color: #fff; }

@media (min-width: 62rem) {
  .nav__toggle { display: none; }
  .nav__menu, .nav__menu[data-open="true"] { display: flex; align-items: center; position: static; background: none; box-shadow: none; padding: 0; overflow: visible; max-height: none; }
  .nav__list { display: flex; align-items: center; gap: .25rem; padding: 0; }
  .nav__link { border: 0; padding: 1.35rem .9rem; }
  .nav__item { position: relative; }
  .nav__item--mega { position: static; }
  .nav__mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; color: var(--ink); box-shadow: var(--shadow-lift);
    grid-template-columns: repeat(4, 1fr); gap: .25rem; padding: 1.5rem;
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s;
  }
  .nav__item--mega:hover .nav__mega, .nav__item--mega:focus-within .nav__mega { opacity: 1; visibility: visible; transform: none; }
  .nav__mega a { color: var(--ink); padding: 1.1rem .9rem; text-align: center; }
  .nav__mega a:hover { background: rgb(2 47 255 / 8%); color: var(--ink); }
  .nav__mega-icon { display: block; width: 72px; height: 72px; margin: 0 auto .5rem; }
  .nav__mega-title { color: var(--ink); margin-bottom: .3rem; }
  .nav__mega-teaser { display: block; color: rgb(40 51 56 / 87%); }
  .nav__mega-note { display: block; grid-column: 1 / -1; background: rgb(5 3 228 / 7%); text-align: center; padding: .8rem; margin: 1rem -1.5rem -1.5rem; font-size: .95rem; color: var(--ink); }
  .nav__lang { padding: 0 0 0 .75rem; }
}

/* ------------------------------ hero ------------------------------ */
.hero { background: var(--bg-muted); padding-block: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.hero h1 { text-transform: uppercase; letter-spacing: 0; line-height: 1.02; }
.hero__lead { max-width: 62ch; margin-inline: auto; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); }
.hero__img { margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--radius); box-shadow: var(--shadow-lift); }

/* Page heads follow the old site: centred dark heading on the muted ground —
   the old design had no coloured banner sections. */
.page-head { background: var(--bg-muted); text-align: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { text-transform: uppercase; margin-bottom: .4em; }
.page-head p { max-width: 66ch; margin-inline: auto; color: var(--ink-soft); }
.page-head__art { width: min(80%, 1100px); margin: clamp(1.5rem, 4vw, 2.5rem) auto 0; }

/* ------------------------------ buttons ------------------------------ */
.btn {
  display: inline-block; background: var(--brand); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: .95rem; letter-spacing: .03em; padding: .9rem 1.7rem; border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: none; color: var(--brand); border: 2px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: var(--bg-tint); color: var(--brand); }
.cta-row { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ------------------------------ grids & cards ------------------------------ */
.grid { display: grid; gap: 1.25rem; }
/* minmax(0, …) everywhere: a bare 1fr track floors at min-content, and a
   compound like "Prozessautomatisierung" then pushes the second column past
   the edge of a phone screen — the page starts panning sideways. */
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 48rem) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* The offering tiles sit directly on the section background, exactly like the
   old site's ".navigation-link-block": no box, everything centred, a dark
   Roboto-Medium title (the one place the old design used Roboto over the house
   font) and only a whisper of blue on hover. */
.card {
  border-radius: 8px; padding: 1.25rem 1rem; text-decoration: none; color: inherit;
  display: block; text-align: center; transition: background-color .35s;
  /* The columns no longer stretch for long words, so the words have to give:
     hyphenate the German service names on narrow screens. */
  hyphens: auto; overflow-wrap: break-word;
}
a.card:hover { background: rgb(2 47 255 / 8%); }
.card__icon { width: 82px; margin: 0 auto .6rem; }
.card__title { display: block; font-family: var(--font-fallback); font-weight: 500; color: var(--ink); font-size: 1.15rem; margin-bottom: .4rem; }
.card__text { font-size: 1rem; color: rgb(40 51 56 / 87%); line-height: 1.5; margin: 0; }

.process { text-align: center; }
.process img { width: 96px; margin: 0 auto .8rem; }
.process p { font-size: 1.15rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }
.stats__value { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--brand); line-height: 1; }
.stats__label { font-size: .9rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }

/* ------------------------------ scroll reveal ------------------------------ */
/* Both classes are added exclusively by site.js, so without JavaScript nothing
   is ever hidden. Mirrors the old Webflow interaction: 25px up, fade in. */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal--in { opacity: 1; transform: none; }

/* ------------------------------ logo strips ------------------------------ */
/* The customer logos run as a continuous CSS-only marquee (the old Webflow site
   had a logo slider here too). The track holds the full logo set twice; each
   copy slides left by exactly its own width plus one gap, which makes the loop
   seamless. Pauses on hover so a logo can actually be looked at. Falls back to
   a static, wrapped strip when the visitor asks for reduced motion. */
.marquee { overflow: hidden; --marquee-gap: clamp(2.5rem, 5vw, 4.5rem); }
@supports (mask-image: linear-gradient(#000, #000)) {
  .marquee { mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
}
.marquee__track { display: flex; gap: var(--marquee-gap); width: max-content; }
.marquee__group { display: flex; align-items: center; gap: var(--marquee-gap); animation: marquee 80s linear infinite; }
.marquee:hover .marquee__group { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - var(--marquee-gap))); } }
.marquee img { max-height: 110px; width: auto; filter: grayscale(1); opacity: .72; transition: filter .25s, opacity .25s; }
.marquee img:hover { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; }
  .marquee__track { width: auto; justify-content: center; }
  .marquee__group { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 1.5rem; }
  .marquee__group[aria-hidden="true"] { display: none; }
}
.tech { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.tech img { max-height: 64px; width: auto; }  /* per-logo height comes from TechLogos.MaxHeight */

/* ------------------------------ services ------------------------------ */
/* One alternating band per service: large icon in the left column, heading and
   copy on the right — the layout of the old site's #S01…#S08 sections. */
.service { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.service__grid { display: grid; gap: 1.5rem; justify-items: center; }
@media (min-width: 48rem) {
  .service__grid { grid-template-columns: 190px 1fr; gap: 2.5rem; justify-items: start; }
  .service__icon { margin-top: .5rem; }
}
.service__icon { width: 150px; }
.service__body { max-width: 75ch; color: var(--ink-soft); }
.service__body h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.service__benefits-label { color: var(--ink); margin: 1.4rem 0 .4rem; }
.service__benefits { margin: 0; padding-left: 1.3rem; display: grid; gap: .35rem; }
.service__benefits li { font-size: .97rem; }
.label { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--brand); margin-bottom: .5rem; }

/* ------------------------------ case studies ------------------------------ */
/* The "Customer Shorts" slider from the old site: one white card per story,
   customer logo and profile on the left of a divider, the story on the right.
   The track is a CSS scroll-snap carousel — swipe or scroll horizontally, or
   jump with the numbered anchors below it. No JavaScript involved. */
.shorts__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none;
}
.shorts__track::-webkit-scrollbar { display: none; }
.shorts__nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.shorts__nav a {
  display: grid; place-items: center; width: 2.1rem; height: 2.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink); text-decoration: none; font-size: .95rem;
}
.shorts__nav a:hover { border-color: var(--brand); color: var(--brand); }

.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); scroll-snap-align: start; scroll-margin-top: calc(var(--nav-h) + 1rem); }
@media (min-width: 62rem) {
  .case { display: grid; grid-template-columns: 1fr 2.1fr; gap: 2.5rem; }
  .case__side { border-right: 1px solid var(--line); padding-right: 2.5rem; }
}
.case__side { display: flex; flex-direction: column; justify-content: center; }
.case__logo { max-height: 110px; max-width: min(20rem, 100%); width: auto; margin: clamp(1rem, 3vw, 2.5rem) auto; }
.case__profile { font-size: .95rem; font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; }
.case__main h3 { text-transform: uppercase; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
/* Section labels inside a story card match the old design: dark Roboto Medium,
   no uppercase — unlike the blue .label used elsewhere. */
.case .label { font-family: var(--font-fallback); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 1.1rem; color: var(--ink); margin: 1.2rem 0 .5rem; }
.case ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .45rem; font-size: .95rem; }
/* More specific than ".case ul" above, which would otherwise force these into a grid. */
.case ul.tags, .tags { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; list-style: none; padding: 0; margin: 0 0 .5rem; }
.tags li { background: var(--bg-tint); color: var(--brand); font-size: .8rem; font-weight: 400; padding: .28rem .7rem; border-radius: 100px; }
.tags li.tags__icon { background: none; padding: 0; border-radius: 0; }
.tags__icon img { width: auto; display: block; }  /* per-icon height comes from TechIcons */

.quote { background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.2rem); border-left: 4px solid var(--brand); box-shadow: var(--shadow); }
.quote blockquote { margin: 0 0 1rem; font-size: 1.1rem; color: var(--ink); }
.quote figcaption { font-size: .9rem; color: var(--ink-soft); }
.quote figcaption strong { display: block; color: var(--ink); font-weight: 400; }

/* Testimonial slides, styled like the old site: no card, centred, the quote in
   light Roboto Slab with the customer's round portrait beneath it. */
.quote--slide { background: none; border: 0; box-shadow: none; border-radius: 0; text-align: center; padding: 0 clamp(0rem, 4vw, 3rem); }
.quote--slide blockquote { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.45; max-width: 62ch; margin-inline: auto; }
.quote--slide img { width: 116px; height: 116px; object-fit: cover; border-radius: 50%; margin: 1.6rem auto .9rem; border: 3px solid #fff; box-shadow: var(--shadow); }
.quote--slide figcaption { font-size: 1rem; }

/* ------------------------------ contact ------------------------------ */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); }
@media (min-width: 60rem) { .contact-grid { grid-template-columns: 1fr 1.25fr; align-items: start; } }
.contact-details { display: grid; gap: 1.4rem; }
.contact-details dt { text-transform: uppercase; font-size: .85rem; letter-spacing: .08em; color: var(--brand); margin-bottom: .2rem; }
.contact-details dd { margin: 0; font-size: 1.05rem; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.form-embed { position: relative; width: 100%; min-height: 1040px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.form-embed iframe { width: 100%; height: 1040px; border: 0; display: block; }
.form-note { font-size: .88rem; color: var(--ink-soft); margin-top: .8rem; }

.people { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 40rem) { .people { grid-template-columns: repeat(2, 1fr); } }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.person img { width: 116px; height: 116px; object-fit: cover; border-radius: 50%; margin: 0 auto 1rem; }
.person__name { font-size: 1.2rem; }
.person__role { color: var(--brand); font-size: .9rem; }
.person__focus { color: var(--ink-soft); font-size: .9rem; margin-bottom: .9rem; }

/* Variant for the page-footer CTA blocks: no box, large greyscale portrait and
   a request button per person — the layout the old site closed its services
   and customers pages with. */
.people--cta { max-width: 56rem; margin-inline: auto; }
.person--cta { background: none; border: 0; padding: 0; }
.person--cta img { width: 180px; height: 180px; filter: grayscale(1); }
.person--cta .person__name { font-size: 1.5rem; }
.person--cta .person__role, .person--cta .person__focus { color: var(--ink-soft); font-size: 1rem; }
.person--cta .btn { margin-top: .75rem; }

/* ------------------------------ legal pages ------------------------------ */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }

/* ------------------------------ footer ------------------------------ */
.footer { background: var(--footer-bg); color: var(--footer-ink); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer a { color: var(--footer-ink); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: .9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer__brand { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 1rem; }
.footer__brand img { width: 52px; }
.footer__brand span { font-size: 2rem; line-height: 1; letter-spacing: -1px; padding-bottom: 8px; }  /* see .nav__brand span */
.footer__social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer__social img { width: 24px; height: 24px; }
.footer__meta { border-top: 1px solid rgb(255 255 255 / 12%); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: rgb(228 232 235 / 65%); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.footer address { font-style: normal; font-size: .95rem; line-height: 1.7; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
