@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/inter-regular.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/inter-medium.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/inter-semibold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/inter-bold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("assets/fonts/inter-extrabold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/inter-black.otf") format("opentype");
}

:root {
  color-scheme: light;
  --petrol: #176a78;
  --turquoise: #489eb5;
  --greige: #ece7e4;
  --orange: #fea62a;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --soft: rgba(17, 17, 17, 0.58);
  --action: var(--petrol);
  --paper: var(--greige);
  --canvas: #f8f6f4;
  --panel: #fbfaf8;
  --line: rgba(23, 106, 120, 0.18);
  --blue: var(--turquoise);
  --blue-deep: var(--petrol);
  --coral: var(--orange);
  --amber: var(--orange);
  --green: var(--petrol);
  --rose: var(--greige);
  --shadow-soft: 0 26px 80px rgba(23, 106, 120, 0.13);
  --shadow-card: 0 18px 55px rgba(23, 106, 120, 0.13);
  --font-body: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(254, 166, 42, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(72, 158, 181, 0.18), transparent 32rem),
    linear-gradient(180deg, var(--paper), #f3efec 52%, var(--paper));
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--ink);
  color: var(--paper);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 30;
}

.skip-link:focus {
  transform: translateY(0);
}

.studio-canvas {
  background: var(--canvas);
  border: 1px solid rgba(23, 106, 120, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin: clamp(1rem, 3vw, 2.6rem) auto 0;
  max-width: min(94vw, 1500px);
  min-height: calc(100vh - clamp(2rem, 6vw, 5.2rem));
  overflow: hidden;
  position: relative;
}

.site-header {
  align-items: center;
  background: transparent;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 104px;
  padding: 0 clamp(1.35rem, 4vw, 3rem);
  position: relative;
  z-index: 20;
}

.legal-page .site-header {
  background: rgba(236, 231, 228, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  left: 0;
  max-width: none;
  min-height: 76px;
  padding: 0 4vw;
  position: sticky;
  right: 0;
  top: 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.78rem;
  min-width: 210px;
}

.brand-mark {
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 520;
  height: 38px;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  width: 38px;
}

.brand-mark::after {
  display: none;
}

.brand strong,
.brand span span {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand span span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.6rem);
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  background: var(--coral);
  border-radius: 999px;
  bottom: -0.5rem;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 2px solid var(--ink);
  border-radius: 999px;
  min-width: 150px;
  padding: 0.58rem 1.1rem;
  text-align: center;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--action);
  color: var(--paper);
}

.legal-page .nav-cta {
  display: none;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  height: 2px;
  left: 9px;
  position: absolute;
  transition: transform 180ms ease, top 180ms ease;
  width: 24px;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-open .nav-toggle span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 160px);
  padding: clamp(1.4rem, 4vw, 3rem) clamp(1.35rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.hero-copy {
  max-width: 630px;
  padding-bottom: clamp(0rem, 4vw, 3rem);
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.eyebrow span {
  border: 2px solid var(--amber);
  border-radius: 999px;
  display: inline-block;
  height: 0.78rem;
  position: relative;
  width: 0.78rem;
}

.eyebrow span::after {
  background: var(--coral);
  border-radius: 999px;
  content: "";
  height: 0.32rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.32rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.4vw, 6.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 760px;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.56;
  margin-top: 1.45rem;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0.88rem 1.35rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  background: var(--action);
  color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 106, 120, 0.16);
}

.button-ghost,
.button-light {
  background: transparent;
  border-color: rgba(23, 106, 120, 0.32);
  color: var(--ink);
}

.mid-cta {
  background: var(--action);
  color: var(--paper);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  padding: clamp(2rem, 5vw, 3.4rem) 4vw;
}

.mid-cta-inner {
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--max);
}

.mid-cta h2 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-weight: 800;
  line-height: 1;
  max-width: 760px;
}

.mid-cta p {
  color: rgba(236, 231, 228, 0.8);
  margin-top: 0.8rem;
  max-width: 650px;
}

.mid-cta .button {
  background: var(--paper);
  color: var(--action);
  white-space: nowrap;
}

.mid-cta .button:hover,
.mid-cta .button:focus-visible {
  background: var(--canvas);
  color: var(--ink);
}

.hero-meta {
  color: var(--soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.6rem;
}

.hero-meta span {
  align-items: center;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 750;
  gap: 0.45rem;
}

.hero-meta span::before {
  background: var(--coral);
  border-radius: 999px;
  content: "";
  height: 0.42rem;
  width: 0.42rem;
}

.hero-visual {
  align-self: end;
  min-height: min(620px, 62vw);
  position: relative;
}

.visual-shape {
  position: absolute;
  z-index: 0;
}

.visual-shape-blue {
  background: radial-gradient(circle at 28% 26%, var(--turquoise), var(--petrol) 72%);
  border-radius: 50%;
  bottom: -8%;
  box-shadow: 0 28px 70px rgba(23, 106, 120, 0.2);
  height: min(520px, 49vw);
  right: 0;
  width: min(520px, 49vw);
}

.visual-shape-orange {
  background: radial-gradient(circle at 34% 28%, #ffc15c, var(--orange) 74%);
  border-radius: 50%;
  height: clamp(8rem, 15vw, 13.2rem);
  left: 0;
  top: 17%;
  width: clamp(8rem, 15vw, 13.2rem);
}

.portrait-stage {
  aspect-ratio: 1;
  background: radial-gradient(circle at 34% 24%, #fbfaf8 0%, var(--greige) 52%, rgba(72, 158, 181, 0.24) 100%);
  border-radius: 50%;
  bottom: 3%;
  box-shadow: inset 0 0 0 1px rgba(23, 106, 120, 0.12), 0 22px 46px rgba(23, 106, 120, 0.12);
  clip-path: circle(50% at 50% 50%);
  isolation: isolate;
  left: 10%;
  overflow: hidden;
  position: absolute;
  -webkit-mask-image: radial-gradient(circle, #000 99%, transparent 100%);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  width: min(500px, 45vw);
  z-index: 2;
}

.portrait-stage::after {
  display: none;
}

.portrait-cutout {
  border-radius: 50%;
  display: block;
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.quick-facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 1.2rem auto 0;
  max-width: min(94vw, 1180px);
  padding: 0 clamp(0rem, 1vw, 0.2rem);
}

.quick-facts div {
  background: rgba(248, 246, 244, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 132px;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.1vw, 1.9rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.quick-facts span {
  color: var(--muted);
  max-width: 360px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(4rem, 8vw, 6.5rem) 4vw;
}

.section-kicker {
  color: var(--ink);
  margin-bottom: 1rem;
}

.split,
.section-heading {
  align-items: start;
  display: grid;
  gap: clamp(1.8rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  font-weight: 890;
  letter-spacing: 0;
  line-height: 1;
  max-width: 780px;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p,
.content-stack p,
.service-card p,
.contact-section p {
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
}

.capability-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.capability-grid article,
.service-card {
  background: rgba(248, 246, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-grid article {
  min-height: 224px;
  padding: 1.35rem;
}

.capability-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(254, 166, 42, 0.42), rgba(72, 158, 181, 0.16));
  border: 1px solid rgba(254, 166, 42, 0.34);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 2.85rem;
  justify-content: center;
  margin-bottom: 2.15rem;
  width: 2.85rem;
}

.capability-icon svg {
  fill: none;
  height: 1.48rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.48rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 0.75rem;
}

.industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.6rem;
}

.industry-grid article {
  background: var(--canvas);
  border: 1px solid rgba(23, 106, 120, 0.24);
  border-radius: 8px;
  color: var(--ink);
  min-height: 190px;
  padding: 1.25rem;
}

.industry-grid h3 {
  margin-bottom: 1rem;
}

.industry-grid p {
  color: var(--muted);
}

.services-section {
  max-width: none;
  padding-left: 4vw;
  padding-right: 4vw;
}

.services-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 292px;
  overflow: hidden;
  padding: 1.35rem;
  position: relative;
}

.service-card::after {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 0.52rem;
  position: absolute;
  right: 1.35rem;
  top: 1.35rem;
  width: 0.52rem;
}

.service-card:nth-child(2)::after,
.service-card:nth-child(5)::after {
  background: var(--coral);
}

.service-card:nth-child(3)::after,
.service-card:nth-child(6)::after {
  background: var(--amber);
}

.service-card span {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 2.2rem;
}

.clients-section {
  padding-top: clamp(3.5rem, 7vw, 5.8rem);
}

.logo-grid {
  align-items: center;
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.2rem);
  grid-auto-rows: clamp(86px, 8.4vw, 104px);
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
}

.logo-pill {
  align-items: center;
  background: var(--canvas);
  border: 1px solid rgba(23, 106, 120, 0.24);
  border-radius: 999px;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.logo-grid img {
  filter: brightness(0);
  height: auto;
  max-height: 58px;
  max-width: 210px;
  object-fit: contain;
  opacity: 1;
  padding: 0;
  width: min(72%, 210px);
}

.logo-grid .logo-wide {
  max-height: 56px;
  max-width: 225px;
  width: min(82%, 225px);
}

.logo-grid .logo-medium {
  max-height: 58px;
  max-width: 190px;
  width: min(68%, 190px);
}

.logo-grid .logo-stack {
  max-height: 66px;
  max-width: 128px;
  width: min(48%, 128px);
}

.logo-grid .logo-small {
  max-height: 40px;
  max-width: 108px;
  width: min(38%, 108px);
}

.logo-grid .logo-tlgg {
  max-height: 72px;
  max-width: 184px;
  width: min(78%, 184px);
}

.logo-grid .logo-bam {
  max-height: 42px;
  max-width: 188px;
  width: min(66%, 188px);
}

.logo-grid .logo-square {
  max-height: 58px;
  max-width: 92px;
  width: min(38%, 92px);
}

.contact-section {
  margin: 0 auto clamp(1.2rem, 4vw, 2.8rem);
  max-width: min(94vw, 1180px);
}

.contact-inner {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  padding: clamp(2rem, 6vw, 4.5rem);
}

.contact-section .eyebrow {
  color: var(--ink);
}

.contact-section h2 {
  color: var(--ink);
}

.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  max-width: 650px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-links a {
  border-bottom: 2px solid var(--coral);
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  background: rgba(254, 166, 42, 0.13);
  border: 1px solid rgba(254, 166, 42, 0.24);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--panel);
  border: 1px solid rgba(23, 106, 120, 0.28);
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 0.72rem 0.8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--muted);
  outline: 3px solid rgba(72, 158, 181, 0.2);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
}

.site-footer {
  align-items: center;
  background: var(--action);
  color: rgba(236, 231, 228, 0.74);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding: 2rem 4vw;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--paper);
  font-weight: 750;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(3rem, 8vw, 6rem) 4vw;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.95;
  margin-bottom: 2rem;
}

.legal-main h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
  margin-top: 2.6rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main p,
.legal-main ul {
  margin: 0.8rem 0 0;
}

.legal-main a {
  border-bottom: 1px solid var(--coral);
  font-weight: 750;
}

@media (min-width: 1061px) {
  .hero-visual {
    align-self: center;
    transform: translateY(-2.4rem);
  }

  .services-section .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  }

  .services-section .section-heading h2 {
    max-width: 900px;
  }

  .services-section .section-heading p {
    max-width: 500px;
  }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 560px;
  }

  .visual-shape-blue {
    bottom: -6%;
    height: 460px;
    right: 8%;
    width: 460px;
  }

  .portrait-stage {
    left: 50%;
    transform: translateX(-50%);
    width: min(500px, 72vw);
  }

  .split,
  .section-heading,
  .mid-cta-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .industry-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .service-card {
    min-height: auto;
  }

  .capability-icon,
  .service-card span {
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 820px) {
  .studio-canvas {
    border-radius: 0;
    margin: 0;
    max-width: none;
    min-height: 0;
  }

  .site-header,
  .legal-page .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 22;
  }

  .site-nav {
    align-items: stretch;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(23, 106, 120, 0.1);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 0.6rem 4vw 1rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 72px;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    color: var(--ink);
    padding: 0.85rem 0;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0.85rem 0;
    text-align: left;
  }

  .hero {
    padding-bottom: clamp(3.5rem, 12vw, 5rem);
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    margin-top: 1.8rem;
  }

  .hero-visual {
    display: grid;
    gap: 0.8rem;
    margin-bottom: clamp(1.2rem, 4.5vw, 2.2rem);
    min-height: min(102vw, 480px);
  }

  .visual-shape-orange {
    height: 7rem;
    left: auto;
    right: 8%;
    top: 3rem;
    width: 7rem;
  }

  .visual-shape-blue {
    bottom: 0;
    height: min(74vw, 350px);
    right: 6%;
    top: auto;
    width: min(74vw, 350px);
  }

  .portrait-stage {
    border-radius: 50%;
    inset: auto auto auto 50%;
    margin-top: clamp(1rem, 5vw, 2rem);
    position: relative;
    transform: translateX(-50%);
    width: min(82vw, 390px);
  }

  .portrait-cutout {
    height: 100%;
    max-width: none;
    width: 100%;
  }

  .logo-grid {
    grid-auto-rows: 88px;
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid img {
    max-height: 50px;
    width: min(72%, 190px);
  }

  .logo-grid .logo-stack {
    max-height: 60px;
  }

  .logo-grid .logo-small {
    max-height: 36px;
  }

  .logo-grid .logo-tlgg {
    max-height: 66px;
    width: min(76%, 172px);
  }

  .logo-grid .logo-bam {
    max-height: 38px;
    width: min(62%, 172px);
  }

  .logo-grid .logo-square {
    max-height: 54px;
  }

  .contact-section {
    max-width: none;
  }

  .contact-inner {
    border-radius: 0;
  }

  .site-footer {
    align-items: flex-start;
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand span span {
    display: none;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .quick-facts,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-grid {
    grid-auto-rows: 78px;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
