:root {
  --paper: #f3f4f7;
  --paper-2: #e8eaef;
  --white: #ffffff;
  --ink: #141916;
  --ink-soft: #2a322e;
  --muted: #5c6762;
  --line: #d4d8e0;
  --line-strong: #c2c7d1;
  --mist: #e6e9ef;
  --deep: #12151c;
  --deep-2: #1a2030;
  --teal: #0b756f;
  --teal-bright: #129e98;
  --teal-soft: #d7efec;
  --ember: #e24b16;
  --ember-deep: #c53d10;
  --sun: #d4a017;
  --kern: #c45a2e;
  --shadow: 0 22px 50px rgba(18, 21, 28, 0.12);
  --shadow-soft: 0 10px 28px rgba(18, 21, 28, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --header: 76px;
  --sans: "Schibsted Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: 80;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--sun) 0%, var(--ember) 48%, var(--teal-bright) 100%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 200;
}
.skip:focus { left: 16px; }

.wrap {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}
.wrap-wide {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ember);
}

.display {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 0.98;
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ember);
}

.title {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38rem;
}

.muted { color: var(--muted); }
.serif { font-family: var(--serif); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header);
  background: rgb(243 244 247 / 0.97);
  border-bottom: 1px solid rgb(213 221 215 / 0.85);
}
.header-in {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.brand-name small {
  font-size: 15.5px;
  color: var(--ink);
}
.brand-name span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a:not(.btn) {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--teal-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), top 0.2s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s, border-color 0.18s, color 0.18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-ember {
  background: var(--teal);
  color: #fff;
}
.btn-ember:hover { background: #085750; }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: #000; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--mist); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 28px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(18 158 152 / 0.14), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero .display { margin: 16px 0 20px; }
.hero .lede { margin-bottom: 28px; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta span {
  font-size: 13px;
  color: var(--muted);
}

.mix-wrap {
  max-width: 420px;
  margin-left: auto;
}
.mix {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}
.mix-svg { width: 100%; height: auto; display: block; }
.mix-center {
  position: absolute;
  inset: 29%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mix-center strong {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.mix-center span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.mix-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.mix-legend span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.mix-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 7px;
}

.cert-bar {
  margin: 18px 0 8px;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 55%, transparent);
}
.cert-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.q {
  padding: 16px 8px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.q + .q { border-left: 1px solid var(--line); padding-left: 22px; }
.q b {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ember);
}
.q span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .lede,
.section-head.center .eyebrow { margin-inline: auto; }
.section-head .title { margin: 10px 0 14px; }
.band { background: var(--white); }
.band-mist { background: var(--paper-2); }
.band-deep {
  background: var(--deep);
  color: #e8ecf1;
}
.band-deep .title,
.band-deep .display { color: #fff; }
.band-deep .lede,
.band-deep .muted { color: #b4bdc8; }
.band-deep .eyebrow { color: #e8a078; }
.band-deep .eyebrow::before { background: #e8a078; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cols-content {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.card p { color: var(--muted); font-size: 15.2px; }
.card-link { transition: transform 0.2s var(--ease), border-color 0.2s; }
.card-link:hover {
  transform: translateY(-3px);
  border-color: var(--teal-bright);
}

.pain {
  padding: 22px 22px 20px;
  border-left: 3px solid var(--ember);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-soft);
}
.pain h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pain p { color: var(--muted); font-size: 14.8px; }

.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.icon svg { width: 20px; height: 20px; }

.check { display: grid; gap: 10px; }
.check li {
  position: relative;
  padding-left: 28px;
  font-size: 15.2px;
  color: var(--ink-soft);
}
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}
.check li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.path-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  position: relative;
}
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-dark {
  background: var(--deep);
  color: #e8ecf1;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.path-dark h3 { color: #fff; font-size: 1.55rem; letter-spacing: -0.03em; }
.path-dark p { color: #b4bdc8; }
.path-dark .check li { color: #e0e6ee; }
.path-dark .icon { background: rgb(255 255 255 / 0.08); color: #7ad4cd; }
.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ember);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
}

[data-zoom] { cursor: zoom-in; }

.zoom {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgb(13 21 28 / 0.92);
  overflow: auto;
  padding: 56px 16px 40px;
  cursor: zoom-out;
}
.zoom[hidden] { display: none; }
.zoom img {
  display: block;
  width: min(2200px, 96%);
  max-width: none;
  height: auto;
  margin: 0 auto;
  background: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.45);
  cursor: default;
  image-rendering: -webkit-optimize-contrast;
}
.zoom-hint {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0 auto 14px;
  width: max-content;
  max-width: 90%;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--muted);
  font-size: 12.5px;
  pointer-events: none;
}
.zoom-close {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.shot {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  background: #f9fafb;
}
.shot.contain img {
  object-fit: contain;
  background: #f9fafb;
}
.shot-app,
.shot-app img { background: #f9fafb; }
.shot-doc,
.shot-doc img { background: #fdfcf7; }
.shot-doc img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: top center;
}

.schema {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 20px;
}
.schema-row {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 10px;
  align-items: stretch;
}
.schema-node {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 12px;
}
.schema-src { background: #eef6f5; }
.schema-sum { text-align: center; }
.schema-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.schema-node strong { display: block; font-size: 0.95rem; letter-spacing: -0.02em; }
.schema-node em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.schema-node p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.schema-join {
  align-self: center;
  color: var(--teal);
  font-size: 20px;
  font-weight: 600;
}
.schema-down {
  text-align: center;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 0 10px;
}
.schema-bars { margin-top: 12px; display: grid; gap: 8px; }
.bar-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.bar {
  height: 8px;
  border-radius: 99px;
  background: var(--mist);
  overflow: hidden;
}
.bar i { display: block; height: 100%; border-radius: inherit; }
.schema-assign { margin-top: 28px; }
.schema-orgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 640px) {
  .schema-row,
  .schema-orgs { grid-template-columns: 1fr; }
  .schema-join { transform: rotate(90deg); justify-self: center; }
}

.fn-wheel {
  display: grid;
  justify-items: center;
  gap: 22px;
}
.fn-ring {
  position: relative;
  width: min(100%, 300px);
}
.fn-ring svg { width: 100%; height: auto; display: block; }
.fn-center {
  position: absolute;
  inset: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fn-center b {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.fn-center span { font-size: 12px; color: #b4bdc8; margin-top: 2px; }
.fn-steps {
  list-style: none;
  display: grid;
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 0;
}
.fn-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0e6ee;
  font-size: 14.5px;
  min-height: 36px;
  padding-bottom: 16px;
}
.fn-steps li:last-child { padding-bottom: 0; }
.fn-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 32px;
  width: 2px;
  height: 14px;
  background: rgb(255 255 255 / 0.28);
}
.fn-n {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #122018;
}

.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.client-slot {
  aspect-ratio: 5/3;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 8px;
}

.offer-lg { padding: 32px 28px; min-height: 260px; }
.offer-mid {
  display: block;
  margin-bottom: 18px;
  padding: 28px 32px;
  border-left: 3px solid var(--ember);
}
.offer-small { padding: 20px 22px; }
.offer-small h3 { font-size: 1.05rem; }
.offer-small p { font-size: 14.4px; }
.shot figcaption,
.cap {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.decl {
  position: relative;
  background: #f6f3ea;
  border: 1px solid #e0dacb;
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.decl img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #f6f3ea;
}
.decl-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid #e0dacb;
  background: #faf8f2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.decl-bar b { color: var(--ink); font-weight: 600; letter-spacing: 0.04em; }

.shot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.shot-pair figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
}
.shot-equal {
  flex: 1;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot-equal img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: top center;
  background: inherit;
  display: block;
}
.shot-equal.shot-doc { background: #fdfcf7; }
.gallery-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gallery-4 .shot-equal img { height: 340px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.8px; }

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
}
.quote footer {
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}
.quote footer b { color: var(--ink); display: block; font-style: normal; }

.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.person img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 12%;
  background: var(--mist);
}
.person-body { padding: 20px 22px 24px; }
.person h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
.person .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 6px 0 10px;
}
.person p { color: var(--muted); font-size: 14.6px; }

.pub {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  gap: 8px;
}
.pub-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}
.tag-ves { background: #1f6f5c; }
.tag-vas { background: #c4532c; }
.tag-swiss { background: #3f7da8; }
.tag-aib { background: #8a6a32; }
.kind {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.soon {
  display: inline-flex;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  margin: 0;
  background: #f3d36a;
  color: #5a4b00;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
}
.pub h3 { font-size: 1.02rem; line-height: 1.35; }
.pub time {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.news-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 22px;
}
.news-date {
  text-align: center;
  background: var(--paper-2);
  border-radius: 12px;
  padding: 12px 0;
  height: max-content;
}
.news-date b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.news-date span { font-size: 12px; color: var(--muted); }
.kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.news-item h3 { font-size: 1.2rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ember);
  font-weight: 600;
  font-size: 14.5px;
}

.cta-band {
  background: var(--deep);
  color: #fff;
  border-radius: 28px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
}
.cta-band p { color: #b4bdc8; margin: 10px 0 0; font-family: var(--serif); font-size: 1.15rem; }
.cta-band .cta-row { justify-content: flex-end; }

.page-hero { padding: 56px 0 12px; }
.page-hero .display { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin: 12px 0 16px; }
.crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.crumbs a:hover { color: var(--ink); }

.prose {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose p + p { margin-top: 1em; }
.prose h2 {
  font-family: var(--sans);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1.6em 0 0.5em;
}
.prose h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  margin: 1.3em 0 0.4em;
  color: var(--ink);
}
.prose ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}
.prose li {
  position: relative;
  padding-left: 18px;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 2px;
  background: var(--teal);
}
.prose a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 22px 0;
  padding: 8px 0 8px 18px;
  border-left: 3px solid var(--teal-bright);
  font-style: italic;
}

.form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 14px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgb(18 158 152 / 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-ok {
  display: none;
  background: var(--teal-soft);
  color: var(--deep);
  padding: 22px 18px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.form-ok strong { display: block; margin-bottom: 6px; font-size: 1.15rem; }
.form-err {
  display: none;
  background: #fde8e1;
  color: var(--ember-deep);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}
.form-err a { text-decoration: underline; }
.form.is-error .form-err { display: block; }
.form.is-busy button { opacity: 0.55; pointer-events: none; }
.form .hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form .check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.45;
}
.form .check-line input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--teal);
}
.form .check-line a { text-decoration: underline; }
.form .fields { display: grid; gap: 14px; }
.form.is-sent .fields { display: none; }
.form.is-sent .form-ok { display: block; }

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-line p { color: var(--muted); }
.contact-line a:hover { color: var(--teal); }

.site-footer {
  background: var(--deep);
  color: #b8c0cb;
  padding: 56px 0 28px;
  margin-top: 20px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer .brand-name small,
.site-footer .brand-name span { color: #fff; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: #fff; }
.foot-copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #2a3140;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8b929c;
}

.legal { max-width: 760px; }

.article-hero time { color: var(--muted); font-size: 14px; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
}
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.nav a:focus-visible,
.btn:focus-visible,
.brand:focus-visible,
input:focus-visible,
textarea:focus-visible,
.card-link:focus-visible {
  outline: 3px solid rgb(18 158 152 / 0.55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  body::before {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sun), var(--ember), var(--teal-bright));
  }
  .hero-grid,
  .grid-split,
  .grid-2,
  .grid-3,
  .cta-band,
  .foot-grid,
  .cols-content,
  .shot-pair,
  .gallery-4 { grid-template-columns: 1fr; }
  .shot-equal img { height: 300px; }
  .gallery-4 .shot-equal img { height: 240px; }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .grid-4,
  .steps,
  .cert-bar .wrap { grid-template-columns: 1fr 1fr; }
  .q + .q { border-left: 0; padding-left: 0; }
  .cta-band .cta-row { justify-content: flex-start; }
  .mix { margin: 10px auto 0; }
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow: auto;
  }
  .nav.is-open { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav a:not(.btn) { padding: 10px 0; }
  .nav .btn { width: 100%; }
  .site-header { position: sticky; }
}

@media (max-width: 640px) {
  .wrap, .wrap-wide { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .hero { padding-top: 36px; }
  .grid-4, .steps, .cert-bar .wrap, .form .row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 72px 1fr; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .mix-wrap { margin-inline: auto; }
  .cta-band { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}
