﻿@import url("assets/local-fonts.css?v=20260605");

/* Active pages use only local font files from /assets. */
@font-face {
  font-family: "CalSans";
  src: url("assets/CalSans-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LabelSans";
  src: url("assets/LabelSansVF.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #f4f0e8;
  --bg-soft: #ece3d4;
  --panel: rgba(255, 255, 255, 0.75);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --ink: #11233a;
  --ink-soft: #516170;
  --line: rgba(17, 35, 58, 0.12);
  --accent: #c56b37;
  --accent-dark: #9f4f24;
  --navy: #123452;
  --navy-deep: #0a1b2e;
  --shadow: 0 28px 60px rgba(10, 27, 46, 0.14);
  --radius: 28px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "LabelSans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 107, 55, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(18, 52, 82, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f0e7db 100%);
}

body.nav-open,
body.cookie-open,
body.intro-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #11233a;
  font-size: 0.85rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(251, 248, 242, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 35, 58, 0.08);
}

.header-inner,
.section,
.footer-inner,
.footer-small {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: auto;
  height: 126px;
  margin-top: 22px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(10, 27, 46, 0.24));
}

.brand-copy {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
}

.brand-kicker,
.brand-name,
.site-nav a,
.mobile-nav a,
.footer-title,
.footer-nav a,
.eyebrow,
.card-index,
.fact-pill,
.stat-value {
  text-transform: uppercase;
}

.brand-kicker {
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.125rem;
  font-weight: 700;
}

.brand-name {
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.site-nav ul,
.mobile-nav ul,
.footer-nav ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.site-nav a,
.footer-nav a {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 88px 0 0;
  z-index: 999;
  padding: 28px 24px;
  background: rgba(244, 240, 232, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-main {
  padding-top: 88px;
}

.page-main--legal {
  padding-top: 120px;
}

.hero,
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.page-hero {
  min-height: 68vh;
}

.hero-video,
.hero-media,
.intro-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video video,
.hero-media img,
.hero-media video,
.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after,
.hero-grid,
.intro-video__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 46, 0.16) 0%, rgba(10, 27, 46, 0.52) 45%, rgba(10, 27, 46, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.hero-content,
.intro-video__content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 72px;
  color: #fff;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 136px 0 96px;
  color: #fff;
}

.page-hero-content .hero-copy {
  margin: 18px 0 0;
}

.page-hero-content .eyebrow,
.page-hero-content h1,
.page-hero-content .hero-copy {
  text-align: left;
}

.page-hero-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-left: -18px;
}

.hero-content .eyebrow {
  margin-left: -18px;
}

.page-main .page-hero .hero-content--narrow {
  padding-top: 136px;
  padding-bottom: 96px;
}

.eyebrow,
.card-index,
.fact-pill {
  letter-spacing: 0.24em;
  font-size: 0.75rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-weight: 700;
}

.section .eyebrow,
.content-card .eyebrow,
.info-card .eyebrow {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0.045em;
  max-width: 1040px;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.3125rem, 3vw, 2.0625rem);
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  letter-spacing: 0;
  font-weight: 700;
}

.hero-copy,
.intro-copy,
.section-head p,
.content-card p,
.info-card p,
.stat-card p,
.service-panel__copy p,
.footer-inner p,
.cookie-banner p {
  line-height: 1.7;
}

.keep-together {
  white-space: nowrap;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero--home .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.hero--home h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  max-width: 760px;
  letter-spacing: 0.03em;
}

.hero--home .hero-copy {
  max-width: 680px;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.55;
}

.hero-actions,
.hero-facts,
.cookie-actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-facts {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ef9a5d 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(197, 107, 55, 0.26);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.section {
  padding: 88px 0;
}

.section--stats {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.section--dark {
  background: linear-gradient(180deg, rgba(18, 52, 82, 0.98), rgba(10, 27, 46, 0.98));
  color: #fff;
}

.section--services {
  margin-top: 28px;
  padding: 76px 32px;
  border-radius: 40px;
  overflow: hidden;
}

.section--company-data {
  margin-top: 28px;
  padding: 40px 32px;
  border-radius: 40px;
  overflow: hidden;
}

.section--jobs,
.section--legal-panel {
  margin-top: 28px;
  padding: 72px 32px;
  border-radius: 40px;
  overflow: hidden;
}

.section--services .section-head {
  gap: 18px;
  margin-bottom: 40px;
  padding-left: 18px;
}

.section--company-data .cards-grid {
  gap: 18px;
}

.section--company-data .info-card {
  padding: 30px 28px;
}

.section--company-data .info-card h3,
.section--company-data .info-card p {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.section--jobs .section-head,
.section--legal-panel .section-head {
  gap: 16px;
  margin-bottom: 36px;
  padding-left: 18px;
}

.section--legal-panel .content-card {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.section--legal-panel .content-card p,
.section--legal-panel .content-card a,
.section--legal-panel .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.section--legal-panel .content-card h2 {
  color: #fff;
}

.section--legal-panel .content-card,
.legal-grid .content-card {
  overflow: hidden;
}

.section--legal-panel .content-card h2,
.legal-grid .content-card h2 {
  max-width: 24ch;
  text-wrap: balance;
}

.section--legal-panel .content-card p,
.legal-grid .content-card p {
  max-width: 62ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
}

.section--legal-panel .content-card a,
.legal-grid .content-card a {
  overflow-wrap: anywhere;
}

.section--services .section-head h2 {
  max-width: 560px;
}

.section--dark .eyebrow,
.section--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.stats-grid,
.cards-grid,
.story-grid,
.visual-showcase,
.contact-layout,
.split-layout,
.legal-grid,
.footer-inner {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.info-card,
.story-card,
.content-card,
.service-panel__copy,
.cookie-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat-card,
.info-card,
.content-card,
.service-panel__copy {
  padding: 28px;
}

.stat-value,
.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-weight: 700;
}

.stat-value {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
}

.cards-grid--services .info-card {
  display: grid;
  grid-template-rows: minmax(52px, auto) 1fr;
  align-content: stretch;
  min-height: 288px;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 24px 20px;
}

.cards-grid--services .info-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 52px;
  min-width: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: manual;
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.35;
  letter-spacing: 0.015em;
}

.cards-grid--services .info-card h3.title-stack {
  display: block;
}

.cards-grid--services .info-card h3.title-stack span {
  display: block;
}

.hero-title--singleline {
  white-space: nowrap;
  font-size: clamp(1.9rem, 4vw, 3.9rem);
}

.cards-grid--services .info-card p {
  display: block;
  max-width: 100%;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  hyphens: auto;
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}

.visual-showcase__tile {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  background: var(--panel);
}

.visual-showcase__caption {
  padding: 22px 22px 24px;
  background: var(--panel-strong);
}

.visual-showcase__caption h3 {
  margin-bottom: 10px;
}

.visual-showcase__caption p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.story-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.story-card__body {
  padding: 24px;
}

.service-stack {
  display: grid;
  gap: 28px;
}

.service-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.service-panel--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-panel > img,
.service-panel > video {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-panel--reverse > img,
.service-panel--reverse > video {
  order: 2;
}

.service-panel--reverse .service-panel__copy {
  order: 1;
}

.service-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--panel-strong);
}

.visual-showcase {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.visual-showcase__lead,
.visual-showcase__tile,
.visual-showcase__feature,
.map-frame {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.visual-showcase__lead {
  grid-row: span 2;
}

.visual-showcase__lead img,
.visual-showcase__feature img,
.visual-showcase__tile img,
.visual-showcase__tile video {
  height: 100%;
  object-fit: cover;
}

.visual-showcase__text {
  align-self: center;
  min-width: 0;
}

.visual-showcase__feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--panel);
}

.visual-showcase__feature img {
  width: 100%;
  min-width: 0;
}

.visual-showcase__feature .visual-showcase__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  background: var(--panel);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.check-list li {
  padding-left: 18px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #31597d 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.fact-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.split-layout,
.contact-layout,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card--media {
  overflow: hidden;
  padding: 0;
}

.content-card--media img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 35, 58, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 16px;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field--checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.field--checkbox label {
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-notice {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(66, 129, 83, 0.12);
  color: #215f2f;
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: none;
}

.map-frame iframe.is-active {
  display: block;
}

.map-consent {
  min-height: 420px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.map-consent p {
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 35, 58, 0.08);
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 26px 0 18px;
}

.footer-inner > div,
.footer-inner > nav {
  min-width: 0;
}

.footer-inner > :first-child {
  justify-self: start;
  text-align: left;
}

.footer-inner > :nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-inner > :last-child {
  justify-self: end;
  text-align: right;
}

.footer-title {
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.45;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: manual;
}

.footer-nav ul {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-inner p,
.footer-inner a,
.footer-small {
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-inner p {
  overflow-wrap: break-word;
  word-break: normal;
}

.footer-small {
  padding: 0 0 24px;
  font-size: 0.78rem;
}

.jobs-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.legal-stack {
  display: grid;
  gap: 22px;
}

.job-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.job-tag,
.job-meta span {
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.job-tag {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.job-card h3 {
  min-height: 3.2em;
}

.job-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.job-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ef9a5d 100%);
  color: #fff;
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1200;
  width: min(780px, calc(100% - 24px));
  padding: 20px 22px;
  transform: translateX(-50%);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h3 {
  margin: 0 0 8px;
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.cookie-actions {
  margin-top: 16px;
}

.intro-video {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: #000;
}

.intro-video.is-active {
  display: grid;
}

.intro-video.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.intro-video__content {
  text-align: center;
  max-width: 760px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.intro-copy {
  max-width: 580px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

.intro-audio-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 1120px) {
  .stats-grid,
  .cards-grid,
  .story-grid,
  .visual-showcase,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--services {
    padding: 68px 24px;
  }

  .section--company-data {
    padding: 32px 24px;
  }

  .section--jobs,
  .section--legal-panel {
    padding: 64px 24px;
  }

  .section--services .section-head {
    padding-left: 10px;
  }

  .section--jobs .section-head,
  .section--legal-panel .section-head {
    padding-left: 10px;
  }

  .service-panel,
  .service-panel--reverse,
  .contact-layout,
  .split-layout,
  .legal-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-panel {
    justify-content: start;
  }

  .service-panel--reverse > img,
  .service-panel--reverse > video,
  .service-panel--reverse .service-panel__copy {
    order: initial;
  }

  .visual-showcase__feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 48px;
    overflow: visible;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    position: relative;
    height: 48px;
    min-height: 0;
    grid-template-columns: 48px 1fr 48px;
    overflow: visible;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    align-items: center;
    align-self: start;
    transform: translateY(-2px);
  }

  .brand-logo {
    height: 74px;
    margin-top: 0;
  }

  .brand-copy {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    grid-column: auto;
    justify-self: auto;
    align-self: auto;
    margin-top: 0;
  }

  .mobile-nav {
    inset: 48px 0 0;
  }

  .stats-grid,
  .cards-grid,
  .cards-grid--services,
  .story-grid,
  .visual-showcase,
  .footer-inner,
  .jobs-board {
    grid-template-columns: 1fr;
  }

  .section--services {
    margin-top: 20px;
    padding: 56px 18px;
  }

  .section--company-data {
    margin-top: 20px;
    padding: 24px 18px;
  }

  .section--jobs,
  .section--legal-panel {
    margin-top: 20px;
    padding: 52px 18px;
  }

  .section--services .section-head {
    margin-bottom: 28px;
    padding-left: 0;
  }

  .section--jobs .section-head,
  .section--legal-panel .section-head {
    margin-bottom: 28px;
    padding-left: 12px;
  }

  .page-main {
    padding-top: 48px;
  }

  .hero,
  .page-hero {
    min-height: 66vh;
  }

  .hero-content,
  .intro-video__content {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .cards-grid--services .info-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .cards-grid--services .info-card h3 {
    min-height: 0;
    font-size: 1.15rem;
  }

  .hero-title--singleline {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
    letter-spacing: 0.01em;
  }

  .page-main .page-hero .page-hero-content {
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .page-main .page-hero .page-hero-content h1,
  .hero h1 {
    font-size: clamp(1.32rem, 7.3vw, 1.95rem);
    line-height: 1.02;
    max-width: 12ch;
  }

  .page-main .page-hero .page-hero-content .hero-copy,
  .hero .hero-copy {
    max-width: 26ch;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .page-main .page-hero .page-hero-content .eyebrow,
  .hero .eyebrow {
    margin-left: -10px;
  }

  .cookie-banner {
    width: min(312px, calc(100% - 12px));
    padding: 10px 12px;
    bottom: 4px;
    border-radius: 18px;
  }

  .cookie-banner h3 {
    margin-bottom: 3px;
    font-size: 0.74rem;
  }

  .map-consent {
    min-height: auto;
    padding: 28px 22px;
  }

  .map-consent .button,
  .map-consent .button--ghost {
    background: linear-gradient(135deg, var(--accent) 0%, #ef9a5d 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 30px rgba(197, 107, 55, 0.26);
  }

  .cookie-banner p {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .cookie-actions {
    margin-top: 8px;
    gap: 6px;
  }

  .cookie-actions .button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .stat-card,
  .info-card,
  .content-card,
  .service-panel__copy,
  .job-card {
    padding: 22px;
  }

  .job-card h3 {
    min-height: 0;
  }

  .footer-inner p,
  .footer-inner a,
  .footer-title {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .footer-inner > :first-child,
  .footer-inner > :nth-child(2),
  .footer-inner > :last-child {
    justify-self: center;
    text-align: center;
  }

  .footer-inner > :last-child {
    display: none;
  }

  .cookie-banner {
    bottom: 12px;
  }
}


