/* Marketeer Minds — visual system */
:root {
  --navy: #0b1d4d;
  --navy-deep: #071538;
  --blue: #1f73f2;
  --blue-dark: #125ed1;
  --coral: #ff5a4f;
  --cream: #f7f7f3;
  --white: #ffffff;
  --ink-muted: #5f6b87;
  --line: #dce2eb;
  --max-width: 1180px;
  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --section-space: clamp(5.5rem, 10vw, 9.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
}

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

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  background: currentColor;
}

.eyebrow-light {
  color: #8fbaff;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 740px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.95rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  line-height: 1;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-light {
  min-width: 188px;
  color: var(--navy);
  background: var(--white);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 0.84;
}

.brand-mark {
  width: 42px;
  flex: 0 0 42px;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-name strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.75rem);
  font-size: 0.91rem;
  font-weight: 600;
}

.nav-cta {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--navy);
  border-radius: 100px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 243, 0.9);
  content: "";
}

.hero-grid {
  position: relative;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 2.1rem;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.text-link span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.hero-art {
  position: relative;
  min-height: 565px;
}

.art-blue {
  position: absolute;
  top: 5%;
  right: 0;
  width: 78%;
  height: 63%;
  overflow: hidden;
  border-radius: 180px 180px 32px 32px;
  background: var(--blue);
}

.art-blue::before {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.art-label {
  position: absolute;
  top: 25%;
  left: -1.3rem;
  color: var(--white);
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  opacity: 0.17;
  transform: rotate(-90deg);
}

.cursor-line {
  position: absolute;
  top: 21%;
  left: 24%;
  width: 57%;
  fill: none;
  stroke: var(--white);
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.art-coral {
  position: absolute;
  z-index: 2;
  top: 2%;
  right: 4%;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
}

.art-coral svg {
  width: 67%;
}

.art-white {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 6%;
  display: grid;
  width: 210px;
  height: 218px;
  padding: 1.5rem;
  align-content: end;
  border: 2px solid var(--navy);
  border-radius: 28px;
  background: var(--white);
  grid-template-columns: auto 1fr;
}

.mini-kicker {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.28rem 0.55rem;
  border-radius: 100px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.art-white strong {
  font-size: 6.8rem;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.art-white > span:last-child {
  align-self: end;
  margin-left: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
}

.art-ring {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 3%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 30px solid var(--navy);
  border-radius: 50%;
  color: var(--coral);
  background: var(--cream);
  font-size: 2.5rem;
  font-weight: 600;
}

.art-dot-grid {
  position: absolute;
  top: 40%;
  left: 1%;
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(3, 5px);
}

.art-dot-grid i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

/* Specialties */
.heading-split {
  display: grid;
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  grid-template-columns: 1.2fr 0.8fr;
}

.heading-split > p {
  max-width: 470px;
  margin-bottom: 0.6rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.specialty-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialty-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
}

.specialty-card-blue {
  color: var(--white);
  background: var(--blue);
}

.specialty-card-coral {
  color: var(--navy);
  background: var(--coral);
}

.specialty-card-navy {
  color: var(--white);
  background: var(--navy);
}

.specialty-card-navy h3 {
  color: var(--white);
}

.card-number {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-icon {
  position: absolute;
  top: 2.7rem;
  right: 2.7rem;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.card-icon svg {
  width: 65%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.card-copy {
  position: absolute;
  right: clamp(2rem, 4vw, 3.5rem);
  bottom: clamp(2rem, 4vw, 3.5rem);
  left: clamp(2rem, 4vw, 3.5rem);
}

.card-label {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specialty-card h3 {
  margin-bottom: 1.2rem;
  color: inherit;
}

.specialty-card-blue h3 {
  color: var(--white);
}

.specialty-card p:not(.card-label) {
  max-width: 470px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  opacity: 0.87;
}

.specialty-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-card li {
  padding: 0.55rem 0.85rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
}

.process-line {
  display: grid;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--navy);
  grid-template-columns: 0.75fr 2fr;
}

.process-line > p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-line ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-line li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 600;
}

.process-line li span {
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* Markets */
.markets {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.market-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
  grid-template-columns: 0.82fr 1.18fr;
}

.market-copy {
  position: relative;
  z-index: 2;
}

.markets h2 {
  margin-bottom: 2rem;
  color: var(--white);
}

.markets h2 em {
  color: #8fbaff;
}

.market-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 2.4rem;
  color: #c0c9de;
  font-size: 1.05rem;
}

.country-list {
  display: grid;
  gap: 0.6rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.country-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
}

.europe-map {
  position: relative;
  min-height: 600px;
}

.europe-map::before {
  position: absolute;
  top: 3%;
  right: -15%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.europe-map > svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.map-land {
  fill: #132b66;
  stroke: #294785;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-route {
  fill: none;
  stroke: #6fa7ff;
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 2;
}

.map-pins circle:first-child {
  fill: var(--coral);
}

.map-pins circle:nth-child(2) {
  fill: var(--white);
}

.map-pins text {
  fill: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.map-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border: 1px solid #2b457d;
  border-radius: 100px;
  background: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* About */
.about {
  overflow: hidden;
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}

.team-count {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  transform: translate(-50%, -50%);
}

.team-count strong {
  font-size: clamp(8rem, 15vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.68;
}

.team-count span {
  margin: 0 0 0.4rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.team-orbit {
  position: absolute;
  inset: 0;
}

.team-orbit svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-dasharray: 3 7;
  stroke-width: 1.3;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
}

.orbit-dot-1 { top: 5%; left: 46%; }
.orbit-dot-2 { top: 19%; right: 11%; }
.orbit-dot-3 { right: 3%; bottom: 31%; }
.orbit-dot-4 { right: 23%; bottom: 5%; }
.orbit-dot-5 { bottom: 8%; left: 20%; }
.orbit-dot-6 { top: 47%; left: -2%; }
.orbit-dot-7 { top: 15%; left: 15%; }

.about h2 {
  margin-bottom: 2rem;
}

.about-lead {
  margin-bottom: 1.2rem;
  color: var(--navy) !important;
  font-size: clamp(1.3rem, 2vw, 1.65rem) !important;
  font-weight: 600;
  line-height: 1.35;
}

.about-copy > p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.values {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.values div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cdd5e0;
}

.values span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.values strong {
  font-size: 1.03rem;
}

/* Contact */
.contact {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.contact-shell {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue);
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-copy {
  display: flex;
  padding: clamp(2.2rem, 5vw, 5rem);
  flex-direction: column;
}

.contact h2 {
  max-width: 480px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact h2 em {
  color: var(--navy);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: #e0ecff;
  font-size: 1.05rem;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 3rem;
}

.contact-note svg {
  width: 48px;
  flex: 0 0 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-note strong,
.contact-note a {
  display: block;
  color: inherit;
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-form {
  margin: 1rem;
  padding: clamp(2rem, 4.5vw, 4rem);
  border-radius: calc(var(--radius-lg) - 10px);
  color: var(--navy);
  background: var(--navy);
}

.form-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #5e6d96;
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
}

.field input,
.field select {
  height: 50px;
}

.field textarea {
  min-height: 102px;
  padding-top: 0.6rem;
  resize: vertical;
}

.field select {
  appearance: none;
  padding-right: 1.75rem;
}

.field select option {
  color: var(--navy);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--coral);
}

.field [aria-invalid="true"] {
  border-bottom-color: var(--coral);
}

.field-error {
  display: block;
  min-height: 1.2rem;
  padding-top: 0.25rem;
  color: #ff9d96;
  font-size: 0.7rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.form-footer p {
  max-width: 250px;
  margin: 0;
  color: #8f9abb;
  font-size: 0.67rem;
}

.form-status {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--coral);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
}

.contact-note span {
  display: block;
  color: #c8dcff;
  font-size: 0.74rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: #ff9d96;
}

/* Footer */
.site-footer {
  padding-block: 3.5rem;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.3fr 0.9fr;
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-inner > p {
  max-width: 430px;
  margin: 0;
  color: #aab4cd;
  font-size: 0.86rem;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  color: #aab4cd;
  font-size: 0.74rem;
}

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid {
    gap: 2rem;
    grid-template-columns: 1fr 0.75fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .art-blue {
    width: 88%;
  }

  .art-ring {
    width: 120px;
    height: 120px;
    border-width: 24px;
  }

  .art-white {
    width: 180px;
    height: 195px;
  }

  .art-white strong {
    font-size: 5.5rem;
  }

  .specialty-card {
    min-height: 620px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .market-grid {
    gap: 1rem;
  }

  .europe-map {
    min-height: 530px;
  }

  .contact-shell {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 7rem 2rem 3rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--white);
    background: var(--navy);
    font-size: clamp(1.8rem, 7vw, 3rem);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-cta {
    margin-top: auto;
    border-color: var(--white);
    font-size: 1rem;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span {
    position: absolute;
    top: 21px;
    left: 13px;
    background: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .hero-grid,
  .heading-split,
  .market-grid,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-art {
    width: min(100%, 540px);
    min-height: 550px;
    margin-inline: auto;
  }

  .heading-split {
    gap: 2rem;
  }

  .specialty-card {
    min-height: 570px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .market-copy {
    max-width: 640px;
  }

  .europe-map {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .about-visual {
    width: min(100%, 530px);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 620px;
  }

  .contact-copy {
    min-height: 470px;
  }

  .contact-form {
    margin: 0 1rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-meta {
    justify-content: flex-start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 28px;
    --section-space: 5.5rem;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-art {
    min-height: 470px;
  }

  .art-blue {
    top: 7%;
    width: 87%;
    height: 60%;
  }

  .art-coral {
    width: 100px;
    height: 100px;
  }

  .art-white {
    right: 2%;
    width: 170px;
    height: 185px;
  }

  .art-ring {
    bottom: 10%;
    left: 0;
    width: 105px;
    height: 105px;
    border-width: 20px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    min-height: 590px;
  }

  .card-icon {
    top: 2rem;
    right: 2rem;
    width: 78px;
    height: 78px;
  }

  .process-line ol {
    gap: 1rem 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .country-list {
    grid-template-columns: 1fr;
  }

  .europe-map {
    min-height: 390px;
  }

  .map-caption {
    right: auto;
    bottom: 0;
    left: 0;
  }

  .orbit-dot {
    width: 25px;
    height: 25px;
    border-width: 5px;
  }

  .team-count strong {
    font-size: 8.5rem;
  }

  .contact-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .contact-copy {
    min-height: 440px;
    padding: 2rem 1.5rem;
  }

  .contact-note {
    align-items: flex-start;
  }

  .contact-note strong {
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 2rem 1.25rem;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button-light {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
