:root {
  --bg: #030504;
  --surface: rgba(7, 12, 10, 0.78);
  --surface-strong: rgba(10, 16, 13, 0.92);
  --text: #f3fff8;
  --muted: #94b7a3;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #63f598;
  --primary-deep: #2fdc72;
  --accent: #d9fff0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(99, 245, 152, 0.1), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(99, 245, 152, 0.12), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #020403 0%, #050907 100%);
  background-size: auto, auto, 42px 42px, 42px 42px, 14px 14px, 14px 14px, auto;
}

html.is-locked,
body.is-locked {
  background: #ffffff !important;
  overflow: hidden;
}

body.is-locked .site-shell {
  display: none !important;
}

body.is-locked::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 999999;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.hero,
.section,
.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  padding: 6.5rem 0 2rem;
}

.hero-intro {
  min-height: calc(100vh - 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
}

.navbar {
  --nav-progress: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding:
    calc(0.55rem + 0.35rem * var(--nav-progress))
    calc(0.9rem + 0.3rem * var(--nav-progress));
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(7 12 10 / calc(0.58 + 0.16 * var(--nav-progress)));
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(99, 245, 152, 0.06) inset;
  position: fixed;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), calc(760px + 420px * var(--nav-progress)));
  transform: translateX(-50%);
  z-index: 10;
  transition:
    width 120ms linear,
    padding 120ms linear,
    background 120ms linear;
}

.brand,
.hero h1,
.section-heading h2,
.portfolio-copy h3,
.process-step h3,
.references-list h3 {
  font-family: "Syne", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: calc(1.5rem + 0.65rem * var(--nav-progress));
  object-fit: contain;
  transition: height 120ms linear;
}

.nav-links {
  display: flex;
  gap: calc(0.95rem + 0.25rem * var(--nav-progress));
  color: var(--muted);
  font-size: calc(0.92rem + 0.08rem * var(--nav-progress));
  transition: gap 120ms linear, font-size 120ms linear;
}

.navbar-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.language-globe {
  width: 1rem;
  height: 1rem;
}

.language-globe svg {
  width: 100%;
  height: 100%;
  display: block;
}

.language-current {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 9.25rem;
  display: grid;
  gap: 0.3rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 12, 10, 0.96);
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(99, 245, 152, 0.1);
  color: var(--text);
}

.nav-links a:hover,
.footer a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  font-size: calc(0.9rem + 0.1rem * var(--nav-progress));
  transition: font-size 120ms linear;
}

.hero-content {
  display: block;
  padding: 3.2rem 0 0;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(99, 245, 152, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.5rem 0 0.3rem;
  font-size: clamp(3.25rem, 6.2vw, 5.6rem);
  line-height: 0.94;
  max-width: 15ch;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p,
.lead,
.contact-copy p,
.portfolio-copy p,
.references-list p,
.process-step p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.8fr);
  gap: 2rem 3.5rem;
  align-items: start;
}

.hero p {
  max-width: 34ch;
  margin: 0;
  font-size: 1.08rem;
}

.hero-side {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.25rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  color: #d9fbe7;
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(99, 245, 152, 0.65);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: #021a0a;
  box-shadow: 0 12px 30px rgba(99, 245, 152, 0.24);
}

.button-secondary {
  background: transparent;
  border-color: rgba(99, 245, 152, 0.2);
  color: var(--text);
}

.hero-logo-card {
  position: relative;
  min-height: 180px;
  overflow: visible;
  width: min(100%, 430px);
  margin-top: 0;
  padding: 0 0 1.7rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-logo-card-intro {
  min-height: 0;
  width: min(100%, 560px);
  padding-bottom: 2rem;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3.75rem;
  opacity: 0.8;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-scroll:hover {
  opacity: 1;
  transform: translateY(2px);
}

.hero-scroll-mouse {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 1.5rem;
  height: 2.4rem;
  padding-top: 0.35rem;
  border: 1px solid rgba(217, 255, 240, 0.45);
  border-radius: 999px;
}

.hero-scroll-wheel {
  width: 0.24rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(99, 245, 152, 0.55);
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

.hero-logo-card p {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(217, 255, 240, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  width: 100%;
}

.hero-logo-full {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.18));
}

.hero-isotype-detail {
  position: absolute;
  right: 0;
  top: -0.05rem;
  width: clamp(2.6rem, 6vw, 3.8rem);
  opacity: 0.96;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1080px;
  margin: 0 auto;
}

.service-item,
.process-step,
.reference-item,
.stat-item {
  position: relative;
}

.service-item + .service-item,
.stat-item + .stat-item {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item span,
.process-step span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.service-item strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.25rem;
  line-height: 1.12;
}

.section {
  padding: 2.6rem 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin: 0 auto 1.8rem;
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  max-width: 16ch;
}

.about-layout,
.references-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.lead {
  font-size: 1.2rem;
  margin: 0;
  max-width: 34rem;
  justify-self: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
  padding-top: 0.35rem;
  align-self: start;
}

.stat-item {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  color: var(--primary);
}

.squad-block {
  max-width: 1080px;
  margin: 2.8rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.squad-heading {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 1.8rem;
}

.squad-heading h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  max-width: 22ch;
}

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

.member-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.member-photo {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(155deg, rgba(99, 245, 152, 0.2), rgba(7, 12, 10, 0.96));
  border: 1px solid rgba(99, 245, 152, 0.12);
  font-family: "Syne", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  box-shadow: var(--shadow);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-photo-alt {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(155deg, rgba(99, 245, 152, 0.12), rgba(7, 12, 10, 0.96));
}

.member-copy {
  display: grid;
  gap: 0.45rem;
}

.member-copy strong {
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
}

.member-copy span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

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

.process-step {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step h3,
.portfolio-copy h3,
.references-list h3 {
  margin: 0.7rem 0;
  font-size: 1.4rem;
}

.portfolio-card {
  overflow: hidden;
  padding: 0;
  max-width: 320px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(7, 12, 10, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.portfolio-clickable {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portfolio-clickable:hover,
.portfolio-clickable:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(99, 245, 152, 0.28);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  outline: none;
}

.portfolio-visual {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-image-frame {
  overflow: hidden;
  background: #050907;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-one {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(135deg, #030504, #0b120e 58%, #63f598);
}

.visual-two {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent),
    linear-gradient(135deg, #07100b, #63f598);
  background-size: 36px 36px, auto;
}

.visual-three {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.45), transparent 24%),
    linear-gradient(135deg, #030504, #08110d 70%, #2fdc72);
}

.portfolio-copy {
  padding: 1rem 1rem 1.1rem;
}

.portfolio-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.portfolio-copy p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.portfolio-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-hint-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.portfolio-hint-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.portfolio-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 1.6rem 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(7, 12, 10, 0.96);
  box-shadow: var(--shadow);
}

.portfolio-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.portfolio-modal-close svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.portfolio-modal-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-right: 3.5rem;
}

.portfolio-modal-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(99, 245, 152, 0.08);
  color: var(--primary);
}

.portfolio-modal-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.portfolio-modal-project {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.portfolio-modal-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.references-list {
  display: grid;
  gap: 1.15rem;
  max-width: 32rem;
}

.reference-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-quote {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.6rem 0 1.6rem 1.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.05;
  text-align: center;
}

.quote-isotype {
  width: 3.2rem;
  opacity: 0.95;
  filter: drop-shadow(0 10px 24px rgba(99, 245, 152, 0.18));
}

.contact-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 32rem;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
  max-width: 32rem;
  justify-self: end;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel-label {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel strong {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  line-height: 1.02;
}

.contact-panel p {
  margin: 0;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(7, 12, 10, 0.96);
  box-shadow: var(--shadow);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.contact-modal-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.contact-modal-header h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--text);
  border: 1px solid rgba(99, 245, 152, 0.12);
  background: rgba(3, 7, 5, 0.9);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f8e7c;
}

.contact-form textarea,
.contact-form button,
.contact-checkbox {
  grid-column: 1 / -1;
}

.contact-checkbox {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500 !important;
  color: var(--muted);
}

.contact-checkbox input {
  width: 1.05rem;
  height: 1.05rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@keyframes scroll-wheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(0.45rem);
    opacity: 0.45;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-content,
  .about-layout,
  .references-layout,
  .contact-layout,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .hero h1 {
    max-width: none;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero h1 span {
    white-space: normal;
  }

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

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

  .hero-services {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-item + .service-item,
  .stat-item + .stat-item {
    padding-left: 0;
    border-left: 0;
  }

  .reference-quote {
    padding: 1.2rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero p {
    max-width: none;
  }

  .contact-form {
    justify-self: stretch;
    grid-template-columns: 1fr;
  }

  .contact-panel {
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .navbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 0.6rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-intro {
    min-height: calc(100vh - 5rem);
    gap: 1.4rem;
    padding: 1.25rem 0 0.75rem;
  }

  .brand-logo {
    height: 1.8rem;
  }

  .navbar-tools {
    margin-left: auto;
  }

  .language-toggle {
    min-height: 2.3rem;
    padding: 0.5rem 0.72rem;
  }

  .language-current {
    font-size: 0.76rem;
  }

  .hero-logo-card {
    min-height: 150px;
    width: min(100%, 320px);
    margin-top: 0;
    padding-bottom: 1.8rem;
  }

  .member-card {
    grid-template-columns: 1fr;
  }

  .member-photo {
    max-width: 220px;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 11vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-isotype-detail {
    right: 0;
    top: 0;
    width: 2.9rem;
  }

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