:root {
  --ink: #191c1e;
  --muted: #44474d;
  --line: rgba(196, 198, 206, 0.3);
  --mist: #f8f9fb;
  --soft: #edeef0;
  --navy: #00152d;
  --deep: #061c34;
  --orange: #ff7900;
  --orange-2: #f97316;
  --steel: #7892b7;
  --green: #4ade80;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 6px;
  font: 600 13px/20px "JetBrains Mono", monospace;
  transform: translateY(calc(-100% - 20px));
  transition: transform 120ms ease;
}

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

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Hanken Grotesk", sans-serif;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #bbd6ff;
  background: var(--deep);
  font: 500 13px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.orange {
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
}

.eyebrow.outline-orange {
  color: var(--orange-2);
  background: transparent;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.section-title {
  font-size: clamp(34px, 3.15vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font: 500 13px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button.dark {
  color: #fff;
  background: #000;
}

.button.light {
  color: #000;
  background: #fff;
}

.button.orange {
  color: #fff;
  background: var(--orange);
  border-radius: 10px;
}

.button.outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.button.outline-dark {
  color: #000;
  background: transparent;
  border-color: #000;
}

.button-arrow {
  width: 20px;
  height: 10px;
  object-fit: contain;
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.home-header {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  background: rgba(248, 249, 251, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}

.main-nav-inner {
  display: flex;
  width: min(var(--max), calc(100% - 128px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.home-nav {
  height: 80px;
}

.home-header.inner-page-header {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: cover;
}

.brand-copy {
  color: var(--navy);
  font: 700 24px/36px "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  font-size: 0.72em;
  letter-spacing: -0.02em;
  text-transform: none;
}

.home-header .brand-copy {
  color: #000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--navy);
  font: 500 16px/24px "JetBrains Mono", monospace;
}

.home-nav .nav-link {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-nav .nav-link.active {
  color: #000;
}

.home-nav .nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #000;
  content: "";
}

.nav-quote {
  min-height: 44px;
  padding: 10px 32px;
  border-radius: 10px;
  font-size: 16px;
}

.home-nav .nav-quote {
  border-radius: 0;
  font-size: 14px;
}

.menu-button {
  display: none;
  min-height: 40px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font: 600 12px/1 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
}

.mobile-panel {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 112px 24px 32px;
  color: #fff;
  background: rgba(0, 21, 45, 0.98);
}

.mobile-panel.open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-panel a {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font: 500 17px/24px "JetBrains Mono", monospace;
}

/* Home V2 */

.home-hero {
  position: relative;
  display: flex;
  min-height: 800px;
  align-items: center;
  padding: 140px 0 60px;
  color: #fff;
  background-color: #050505;
  background-image: url("../assets/home/raw-1.png");
  background-image: image-set(
    url("../assets/home/raw-1.avif") type("image/avif"),
    url("../assets/home/raw-1.webp") type("image/webp"),
    url("../assets/home/raw-1.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  content: "";
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  color: var(--ink);
  background: #f2f4f6;
  border: 1px solid #c4c6ce;
  font: 500 12px/16px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--green);
  border-radius: 50%;
}

.home-hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-hero h1 span {
  display: table;
  padding: 0 8px 4px;
  background: var(--deep);
}

.hero-copy {
  max-width: 576px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.home-services {
  padding: 59px 0;
  background: var(--mist);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.split-heading h2 {
  margin-top: 32px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border: 1px solid var(--line);
}

.technical-card {
  position: relative;
  min-height: 334px;
  padding: 48px;
  background: var(--mist);
  border-right: 1px solid var(--line);
}

.technical-card:last-child {
  border-right: 0;
}

.technical-card .number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(196, 198, 206, 0.24);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 64px;
  font-weight: 800;
}

.asset-box {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.technical-card:nth-child(1) .asset-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.technical-card:nth-child(2) .asset-box img {
  width: 24px;
  height: 32px;
}

.technical-card:nth-child(3) .asset-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.technical-card h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.3;
}

.technical-card p {
  min-height: 72px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.data-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font: 500 12px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-link img {
  width: 15px;
  height: 15px;
}

.metrology {
  padding: 0 0 78px;
  background: var(--mist);
}

.metrology-grid {
  display: grid;
  min-height: 518px;
  grid-template-columns: 662fr 466fr;
  gap: 24px;
  align-items: center;
}

.metrology-image {
  position: relative;
  height: 518px;
  padding: 8px;
  border: 1px solid #000;
}

.metrology-image > img {
  width: 100%;
  height: 500px;
  min-height: 0;
  object-fit: cover;
}

.quality-overlay {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: flex;
  width: 384px;
  height: 114px;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: rgba(6, 28, 52, 0.92);
  color: #fff;
  backdrop-filter: blur(8px);
}

.quality-overlay-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.quality-overlay-icon img {
  width: 21px;
  height: 20px;
}

.quality-overlay strong {
  display: block;
  font: 400 24px/32px "Space Grotesk", sans-serif;
}

.quality-overlay p {
  margin-top: 8px;
  color: #c4c6cf;
  font-size: 13px;
  line-height: 1.55;
}

.metrology-copy .eyebrow {
  padding-left: 0;
  color: var(--ink);
  background: transparent;
}

.metrology-copy {
  padding-left: 48px;
}

.metrology-copy h2 {
  margin-top: 14px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.08;
}

.metrology-copy > p {
  margin-top: 24px;
}

.spec-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.spec-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
}

.spec-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.spec-item strong {
  display: block;
  font: 600 12px/18px "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.workflow {
  padding: 140px 0;
  color: #fff;
  background: var(--navy);
}

.workflow-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.workflow-heading p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 96px;
}

.workflow-step {
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-step small {
  color: #bbd6ff;
  font: 500 11px/16px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.workflow-step h3 {
  margin-top: 18px;
  font-size: 22px;
}

.workflow-step p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.zero-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--mist);
}

.zero-cta h2 {
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.1;
}

.zero-cta p {
  max-width: 780px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.zero-cta .hero-actions {
  justify-content: center;
  padding-top: 16px;
}

.zero-cta .button {
  min-height: 70px;
  padding-inline: 48px;
}

/* Inner-page shared hero and footer */

.inner-hero {
  position: relative;
  min-height: 484px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover no-repeat;
  opacity: 0.42;
  content: "";
}

body[data-page="about"] .inner-hero::before {
  background: url("../assets/about/raw-2.jpeg") center/cover no-repeat;
}

body[data-page="services"] .inner-hero::before {
  background: url("../assets/services/raw-2.jpeg") center/cover no-repeat;
}

body[data-page="contact"] .inner-hero::before {
  background: url("../assets/contact/raw-2.jpeg") center/cover no-repeat;
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 21, 45, 0.34), rgba(0, 21, 45, 0.12));
  content: "";
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 484px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 44px;
}

.inner-hero .line-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--orange-2);
  font: 500 13px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-hero .line-label::before {
  width: 48px;
  height: 1px;
  background: var(--orange-2);
  content: "";
}

.inner-hero h1 {
  max-width: 930px;
  margin-top: 24px;
  font-size: clamp(50px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.inner-hero .hero-subtitle {
  margin-top: 14px;
  padding-left: 30px;
  border-left: 4px solid var(--orange-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.inner-hero .hero-description {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.6;
}

.corporate-footer {
  min-height: 461px;
  padding: 40px 0 10px;
  color: #fff;
  background: var(--navy);
}

.corporate-footer > .container {
  display: flex;
  min-height: 411px;
  flex-direction: column;
}

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

.footer-logo {
  width: 116px;
  height: 96px;
  object-fit: cover;
}

.footer-about {
  max-width: 250px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.social-link img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.footer-column h3 {
  margin-bottom: 32px;
  font: 400 20px/30px "Space Grotesk", sans-serif;
}

.footer-list {
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
}

.contact-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-row:nth-child(2) img {
  width: 20px;
  height: 16px;
}

.contact-row:nth-child(3) img {
  width: 16px;
  height: 20px;
}

.copyright {
  margin-top: auto;
  padding-top: 11px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  text-align: center;
}

.home-footer {
  padding: 30px 0;
  color: #fff;
  background: #181c22;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.home-footer h2 {
  font-size: 36px;
}

.home-footer p,
.home-footer a {
  color: #81848c;
  font-size: 14px;
  line-height: 1.65;
}

.home-footer h3 {
  margin-bottom: 20px;
  font: 500 13px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.home-footer .footer-list {
  gap: 10px;
}

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #81848c;
  font: 400 11px/16px "Inter", sans-serif;
  letter-spacing: 0.1em;
}

/* About */

.about-who {
  padding: 80px 0;
  background: var(--mist);
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-statement {
  display: flex;
  min-height: 404px;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  color: #fff;
  background: var(--deep);
  border-radius: 20px;
}

.about-statement h2 {
  font-size: clamp(38px, 3.3vw, 50px);
  line-height: 1.25;
}

.about-statement span {
  color: var(--orange-2);
}

.orange-rule {
  width: 80px;
  height: 4px;
  margin-top: 30px;
  background: var(--orange-2);
}

.about-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--muted);
}

.about-copy-card p:first-child {
  font-size: 18px;
  line-height: 1.6;
}

.about-copy-card p + p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.58;
}

.story-band {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: var(--deep);
}

.story-band h2 {
  font-size: 40px;
  line-height: 48px;
}

.story-band .story-line {
  width: 64px;
  height: 4px;
  margin: 18px auto;
  background: linear-gradient(90deg, rgba(116, 119, 127, 0), #74777f);
}

.story-band p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--steel);
  font-size: 18px;
  line-height: 28px;
}

.mission-vision {
  padding: 80px 0;
  background: var(--mist);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mission-card {
  padding-top: 1px;
}

.mission-card h3 {
  margin-top: 28px;
  font-size: 40px;
  line-height: 48px;
}

.mission-card p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.mission-card .fine-rule {
  width: 100%;
  height: 1px;
  margin-top: 38px;
  background: var(--line);
}

.values-section {
  padding: 81px 0;
  text-align: center;
  background: #f1f2f4;
}

.values-section .section-copy {
  max-width: 720px;
  margin: 14px auto 0;
  font: 500 12px/16px "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  min-height: 297px;
  padding: 33px;
  text-align: left;
  background: #fff;
}

.value-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.value-icon img {
  object-fit: contain;
}

.value-card:nth-child(1) .value-icon img { width: 27px; height: 28px; }
.value-card:nth-child(2) .value-icon img { width: 33px; height: 32px; }
.value-card:nth-child(3) .value-icon img { width: 30px; height: 27px; }
.value-card:nth-child(4) .value-icon img { width: 23px; height: 30px; }
.value-card:nth-child(5) .value-icon img { width: 27px; height: 27px; }

.value-card h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
}

.value-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.mastery-section {
  padding: 80px 0;
  color: #fff;
  background: var(--deep);
}

.mastery-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 24px;
}

.mastery-copy h2 {
  font-size: 40px;
  line-height: 48px;
}

.mastery-copy > p {
  margin-top: 32px;
  color: var(--steel);
  line-height: 1.6;
}

.mastery-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  color: #fff;
  font: 400 16px/24px "Space Grotesk", sans-serif;
}

.mastery-list span {
  display: flex;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mastery-list b {
  color: var(--orange);
  font: 500 16px/24px "JetBrains Mono", monospace;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 282px);
  gap: 16px;
}

.domain-card {
  min-height: 282px;
  padding: 41px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(12px);
}

.domain-card img {
  object-fit: contain;
}

.domain-card:nth-child(1) img { width: 40px; height: 40px; }
.domain-card:nth-child(2) img { width: 36px; height: 32px; }
.domain-card:nth-child(3) img { width: 28px; height: 38px; }
.domain-card:nth-child(4) img { width: 37px; height: 36px; }

.domain-card h3 {
  margin-top: 24px;
  font-size: 16px;
}

.domain-card p {
  margin-top: 8px;
  color: var(--steel);
  font-size: 14px;
  line-height: 20px;
}

.quality-section {
  padding: 80px 0;
  background: var(--mist);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.quality-photo {
  position: relative;
  height: 564px;
  overflow: hidden;
  border-radius: 20px;
}

.quality-photo > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.tolerance-chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(6, 28, 52, 0.9);
  font: 500 11px/18px "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
}

.tolerance-chip strong {
  display: block;
  color: var(--orange-2);
  font-size: 16px;
}

.quality-content h2 {
  margin-top: 24px;
}

.quality-content {
  padding-left: 64px;
}

.quality-content > p {
  margin-top: 24px;
}

.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 30px;
}

.quality-points h4 {
  font-size: 16px;
}

.quality-points p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.inner-cta {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: #000;
}

.inner-cta h2 {
  font-size: 64px;
  line-height: 72px;
}

.inner-cta p {
  max-width: 680px;
  margin: 32px auto 0;
  color: var(--steel);
  font-size: 18px;
  line-height: 28px;
}

.inner-cta .hero-actions {
  justify-content: center;
  margin-top: 32px;
  padding-top: 16px;
}

.inner-cta .button {
  min-height: 64px;
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2em;
}

body[data-page="services"] .inner-cta {
  min-height: 302px;
  padding-block: 60px;
}

body[data-page="services"] .inner-cta .hero-actions {
  margin-top: 40px;
  padding-top: 0;
}

body[data-page="services"] .inner-cta .button {
  min-height: 70px;
  padding: 25px 48px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
}

/* Services */

.services-hero h1 {
  max-width: 910px;
}

.services-hero {
  min-height: 497px;
}

.service-intro {
  padding: 80px 0;
  background: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-intro h2 {
  font-size: 40px;
  line-height: 48px;
}

.service-intro .section-copy {
  font-size: 18px;
  line-height: 29.25px;
}

.black-rule {
  width: 96px;
  height: 4px;
  margin-top: 26px;
  background: #000;
}

.capabilities {
  padding: 0 0 50px;
  background: #fff;
}

.capability-list {
  display: grid;
  gap: 120px;
}

.capability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 544px;
}

.capability:nth-child(even) .capability-copy {
  order: 2;
}

.capability-number {
  color: #e1e2e4;
  font: 800 64px/1 "Hanken Grotesk", sans-serif;
}

.capability h2 {
  margin-top: 14px;
  font-size: 40px;
  line-height: 48px;
}

.capability-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.55;
}

.bullet-list img {
  width: 20px;
  height: 24px;
  object-fit: contain;
}

.capability-image {
  height: 544px;
  padding: 9px;
  border: 1px solid var(--ink);
  border-radius: 20px;
}

.capability-image img {
  width: 100%;
  height: 524px;
  object-fit: cover;
  border-radius: 14px;
}

.standout {
  padding: 81px 0;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.standout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.standout-intro {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
}

.standout-card {
  min-height: 246px;
  padding: 33px;
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.standout-card img {
  object-fit: contain;
}

.standout-card:nth-child(1) img { width: 30px; height: 32px; }
.standout-card:nth-child(2) img { width: 27px; height: 28px; }
.standout-card:nth-child(3) img { width: 27px; height: 30px; }
.standout-card:nth-child(4) img { width: 27px; height: 27px; }
.standout-card:nth-child(5) img { width: 27px; height: 30px; }
.standout-card:nth-child(6) img { width: 33px; height: 32px; }
.standout-card:nth-child(7) img { width: 32px; height: 30px; }
.standout-card:nth-child(8) img { width: 33px; height: 24px; }

.standout-card h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
}

.standout-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.industries {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

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

.industry-card {
  position: relative;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  font: 500 14px/20px "JetBrains Mono", monospace;
}

.process {
  padding: 80px 0;
  background: var(--mist);
  text-align: center;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 220px;
  gap: 48px;
  margin-top: 80px;
}

.process-track::before {
  position: absolute;
  top: 31px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #c4c6ce;
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-number {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  place-items: center;
  color: #fff;
  background: #000;
  border: 8px solid var(--mist);
  border-radius: 50%;
  font: 600 20px/1 "Hanken Grotesk", sans-serif;
}

.process-step h3 {
  margin-top: 24px;
  font: 500 14px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-step p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.quality-banner {
  position: relative;
  display: flex;
  min-height: 348px;
  align-items: center;
  color: #fff;
  background: url("../assets/services/raw-10.jpeg") center/cover no-repeat;
  text-align: center;
}

.quality-banner::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 52, 0.84);
  content: "";
}

.quality-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.quality-banner h2 {
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.1;
}

.quality-banner p {
  margin-top: 22px;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.55;
}

/* Contact */

.contact-hero {
  min-height: 497px;
  overflow: visible;
  padding-bottom: 40px;
}

.contact-hero .inner-hero-content {
  min-height: 0;
  justify-content: flex-start;
  padding: 90px 0 0;
}

.contact-hero h1 {
  max-width: 720px;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-hero h1 span {
  color: #ff5f1f;
}

.quick-contact-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.quick-contact-card {
  min-height: 185px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.quick-contact-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 700 13px/24px "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.quick-contact-title img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.quick-contact-card > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.quick-contact-card strong,
.hours {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  font-weight: 400;
}

.contact-main {
  padding: 105px 0 0;
  background: linear-gradient(#fff 0 70%, var(--orange) 70%);
}

.quote-form {
  position: relative;
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 32px 32px;
  background: #fff;
  border-top: 8px solid #0a2342;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(50, 50, 50, 0.2);
}

.website-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #0a2342;
  font: 400 12px/18px "JetBrains Mono", monospace;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  color: var(--ink);
  background: #f0f1f3;
  border: 0;
  border-bottom: 1px solid #c4c6ce;
  border-radius: 10px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 121, 0, 0.35);
}

.form-field textarea {
  min-height: 104px;
  resize: vertical;
}

.file-drop {
  position: relative;
  display: grid;
  min-height: 130px;
  place-items: center;
  padding: 16px;
  color: var(--muted);
  background: var(--mist);
  border: 1px dashed #a9adb4;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
}

.file-drop input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.file-drop img {
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
}

.file-name {
  display: block;
  margin-top: 5px;
  color: var(--orange);
}

.file-limit {
  display: block;
  margin-top: 7px;
  color: #73777f;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.file-name.error {
  color: #b42318;
}

.submit-button {
  width: 100%;
  min-height: 58px;
  color: #fff;
  background: #0a2342;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: 600 14px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-note {
  margin-bottom: 4px;
  color: #5c6068;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  text-transform: none;
}

.privacy-note a {
  color: #0a2342;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #0a7b41;
  font-size: 13px;
  text-align: center;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.contact-proof {
  padding: 81px 0 63px;
  color: #fff;
  background: var(--orange);
}

.contact-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.contact-proof-grid > div {
  width: min(500px, 100%);
}

.proof-heading {
  margin-bottom: 28px;
  font: 500 13px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

.proof-list {
  display: grid;
  gap: 26px;
}

.proof-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}

.proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #fff;
  border-radius: 10px;
}

.proof-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.proof-item h3 {
  font-size: 15px;
}

.proof-item p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
}

/* Privacy */
.privacy-main {
  background: var(--mist);
}

.privacy-hero {
  padding: 96px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 121, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #00152d 0%, #061c34 100%);
}

.privacy-hero-content {
  max-width: 820px;
}

.privacy-hero h1 {
  margin-top: 24px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.privacy-hero-content > p:not(.privacy-meta) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-meta {
  margin-top: 24px;
  color: #bbd6ff;
  font: 500 12px/20px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-content {
  padding: 88px 0 104px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 32px;
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-top: 5px solid var(--orange);
}

.privacy-summary h2 {
  font-size: 24px;
}

.privacy-summary p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.privacy-summary a {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
  font: 600 12px/20px "JetBrains Mono", monospace;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.privacy-sections {
  display: grid;
  gap: 48px;
}

.privacy-section {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(25, 28, 30, 0.14);
}

.privacy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-section h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
}

.privacy-section p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-section a {
  color: #0a4382;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #fff;
}

.file-drop:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.28);
}

/* 404 */
.not-found-main {
  background: var(--navy);
}

.not-found-section {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  place-items: center;
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 121, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #00152d 0%, #061c34 58%, #001124 100%);
}

.not-found-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 146, 183, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 146, 183, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.not-found-section::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 90vw);
  height: min(760px, 90vw);
  border: 1px solid rgba(120, 146, 183, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.not-found-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.not-found-kicker {
  color: #bbd6ff;
  font: 500 13px/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.not-found-code {
  margin-top: 26px;
  color: var(--orange);
  font: 600 clamp(100px, 18vw, 210px)/0.78 "Space Grotesk", sans-serif;
  letter-spacing: -0.08em;
}

.not-found-section h1 {
  margin-top: 30px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.not-found-copy {
  max-width: 630px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.not-found-actions .button {
  min-width: 210px;
}

@media (max-width: 1050px) {
  .container,
  .main-nav-inner {
    width: min(100% - 64px, var(--max));
  }

  .brand-copy {
    font-size: 18px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-quote {
    padding-inline: 20px;
  }

  .technical-card {
    padding: 36px 28px;
  }

  .footer-grid {
    gap: 30px;
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .container,
  .main-nav-inner {
    width: calc(100% - 40px);
  }

  .home-nav {
    height: 72px;
  }

  .brand-copy {
    font-size: 16px;
  }

  .brand img {
    width: 41px;
    height: 34px;
  }

  .nav-links,
  .nav-quote {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .home-hero {
    min-height: 740px;
  }

  .home-hero h1 {
    font-size: clamp(48px, 12vw, 64px);
  }

  .split-heading,
  .metrology-grid,
  .about-who-grid,
  .mission-grid,
  .mastery-grid,
  .quality-grid,
  .service-intro-grid,
  .capability {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .mission-grid {
    gap: 40px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .technical-card {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .technical-card:last-child {
    border-bottom: 0;
  }

  .metrology-image > img {
    min-height: 410px;
  }

  .metrology-copy {
    padding-left: 0;
  }

  .quality-overlay {
    right: 16px;
    bottom: 16px;
  }

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

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

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

  .home-footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .about-statement {
    min-height: 350px;
    padding: 54px;
  }

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

  .capability {
    gap: 36px;
  }

  .capability:nth-child(even) .capability-copy {
    order: initial;
  }

  .capability-list {
    gap: 80px;
  }

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

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

  .process-track {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .process-track::before {
    display: none;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .contact-hero {
    padding-bottom: 36px;
  }

  .contact-main {
    padding-top: 80px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .container,
  .main-nav-inner {
    width: calc(100% - 32px);
  }

  .brand-copy small {
    display: none;
  }

  .section-title {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .home-hero {
    min-height: 760px;
    background-position: 58% center;
  }

  .home-hero-inner {
    padding-top: 58px;
  }

  .home-hero h1 {
    font-size: 45px;
  }

  .home-hero h1 span {
    padding-inline: 8px;
  }

  .quality-overlay {
    right: 8px;
    width: calc(100% - 16px);
    height: auto;
    min-height: 114px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .home-services,
  .workflow,
  .about-who,
  .story-band,
  .mission-vision,
  .values-section,
  .mastery-section,
  .quality-section,
  .service-intro,
  .standout,
  .industries,
  .process,
  .inner-cta {
    padding-block: 64px;
  }

  .service-cards {
    margin-top: 48px;
  }

  .technical-card {
    padding: 32px 24px;
  }

  .workflow-grid,
  .value-grid,
  .domain-grid,
  .standout-grid,
  .industry-grid,
  .process-track,
  .footer-grid,
  .home-footer-grid,
  .quality-points {
    grid-template-columns: 1fr;
  }

  .home-footer-grid > :first-child {
    grid-column: auto;
  }

  .home-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .inner-hero,
  .inner-hero-content {
    min-height: 520px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .privacy-hero {
    padding: 72px 0 64px;
  }

  .privacy-content {
    padding: 64px 0 80px;
  }

  .privacy-summary {
    padding: 26px 24px;
  }

  .privacy-sections {
    gap: 36px;
  }

  .privacy-section {
    padding-bottom: 36px;
  }

  .inner-hero .hero-subtitle {
    font-size: 18px;
  }

  .about-statement {
    padding: 36px 28px;
  }

  .about-copy-card {
    padding: 24px 4px;
  }

  .story-band h2 {
    font-size: 32px;
  }

  .mission-grid {
    gap: 60px;
  }

  .value-grid {
    gap: 12px;
  }

  .value-card {
    min-height: 170px;
  }

  .quality-photo > img {
    height: auto;
    aspect-ratio: 0.95;
  }

  .quality-photo {
    height: auto;
  }

  .inner-cta h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .capability-list {
    gap: 64px;
  }

  .capability {
    min-height: 0;
  }

  .capability-image {
    height: auto;
  }

  .capability-image img {
    height: auto;
    aspect-ratio: 1;
  }

  .capability-number {
    font-size: 52px;
  }

  .capability h2 {
    font-size: 34px;
  }

  .industry-card {
    height: 260px;
    min-height: 260px;
  }

  .quality-banner h2 {
    font-size: 42px;
  }

  .contact-hero .inner-hero-content {
    padding-top: 58px;
  }

  .contact-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    white-space: normal;
  }

  .quick-contact-card {
    min-height: 160px;
  }

  .quote-form {
    width: calc(100% - 32px);
    padding: 32px 20px 24px;
    border-radius: 22px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .contact-proof {
    padding-block: 64px;
  }
}

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

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

@media (max-width: 380px) {
  .brand-copy {
    display: none;
  }
}
