:root {
  --bg: #14252d;
  --bg-deep: #20353f;
  --bg-elevated: #28414d;
  --ink: #0f1a20;
  --sand: #f2eee7;
  --sand-strong: #e6dfd4;
  --text: #f6f4ef;
  --text-soft: #c4d1d7;
  --text-muted-dark: #90a4af;
  --text-dark: #24333b;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(18, 34, 41, 0.1);
  --accent: #cc8b3c;
  --accent-soft: #9db7c5;
  --panel: rgba(12, 21, 27, 0.8);
  --panel-strong: #122028;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157, 183, 197, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(204, 139, 60, 0.18), transparent 24%),
    linear-gradient(180deg, #20343d 0%, #2a414c 28%, #dfe6e1 28%, #f4f0e9 100%);
}

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

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

h1,
h2,
h3,
.eyebrow,
.brand-text strong,
.service-index {
  font-family: "Roboto Slab", serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 26px 5vw 72px;
  background:
    linear-gradient(90deg, rgba(18, 31, 37, 0.72) 0%, rgba(22, 37, 44, 0.48) 48%, rgba(26, 43, 50, 0.38) 100%),
    url("https://images.pexels.com/photos/10697106/pexels-photo-10697106.jpeg?cs=srgb&dl=pexels-bluerhinomedia-10697106.jpg&fm=jpg") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(220, 230, 235, 0.12), transparent 35%),
    linear-gradient(315deg, rgba(204, 139, 60, 0.1), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 5vw 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.topbar,
.hero-content,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.brand-text small {
  color: var(--text-soft);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #dde6ea;
}

.nav-links a {
  position: relative;
  font-size: 0.97rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f2f5f6;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #eef3f5;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 44px;
  align-items: end;
  margin-top: 9vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.96;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: #d8e2e6;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-value-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-value-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e7edf0;
  font-size: 0.94rem;
}

.hero-value-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(204, 139, 60, 0.15);
}

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

.hero-note {
  margin: 14px 0 0;
  color: #cbd7dc;
  font-size: 0.96rem;
}

.hero-note strong {
  color: #f4e3ca;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #1f1407;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.hero-metrics li,
.hero-card,
.hero-badge,
.trust-strip,
.service-card,
.sector-card,
.stat-card,
.project-card,
.gallery-item,
.process-card,
.cta-card {
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-metrics li {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-metrics span {
  color: var(--text-soft);
  line-height: 1.55;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card,
.hero-badge,
.hero-highlight,
.hero-proof {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(32, 52, 61, 0.84), rgba(23, 39, 46, 0.88));
}

.hero-card {
  padding: 30px;
}

.hero-card p {
  margin: 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
}

.hero-card h2 {
  margin: 14px 0 18px;
  font-size: 2rem;
  line-height: 1.08;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: #dbe4e8;
  line-height: 1.75;
}

.hero-badge {
  padding: 22px 24px;
}

.hero-sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-badge span {
  display: block;
  margin-bottom: 10px;
  color: #e0bc8d;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero-badge strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-highlight,
.hero-proof {
  padding: 22px 24px;
}

.hero-highlight span,
.hero-proof strong {
  display: block;
  margin-bottom: 10px;
  color: #e0bc8d;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero-highlight strong {
  font-size: 1rem;
  line-height: 1.6;
  color: #edf2f4;
}

.hero-proof {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(204, 139, 60, 0.18), rgba(12, 20, 25, 0.96)),
    linear-gradient(180deg, rgba(16, 29, 36, 0.88), rgba(10, 19, 24, 0.92));
}

.hero-proof strong {
  color: #f1d1a4;
}

.hero-proof p {
  margin: 0;
  color: #d8e2e6;
  line-height: 1.7;
}

.section {
  padding: 100px 5vw;
  color: var(--text-dark);
}

.section-services,
.section-sectors,
.section-process,
.section-company {
  position: relative;
  color: var(--text);
}

.section-services::before,
.section-sectors::before,
.section-process::before,
.section-company::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(31, 49, 58, 0.82), rgba(38, 59, 69, 0.86)),
    radial-gradient(circle at top left, rgba(157, 183, 197, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(204, 139, 60, 0.08), transparent 24%);
  pointer-events: none;
}

.section-services > *,
.section-sectors > *,
.section-process > *,
.section-company > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-heading h2,
.company-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.section-heading p,
.company-copy p,
.cta-card p,
.service-card p,
.sector-card p,
.process-card p {
  margin: 0;
  color: #455862;
  line-height: 1.75;
}

.section-heading .eyebrow,
.company-copy .eyebrow,
.cta-card .eyebrow {
  color: #8b6b43;
}

.section-services .section-heading h2,
.section-sectors .section-heading h2,
.section-process .section-heading h2,
.section-company .company-copy h2 {
  color: #f2f6f7;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.section-services .section-heading p,
.section-sectors .section-heading p,
.section-process .section-heading p,
.section-company .company-copy p {
  color: var(--text-muted-dark);
}

.section-services .section-heading .eyebrow,
.section-sectors .section-heading .eyebrow,
.section-process .section-heading .eyebrow,
.section-company .company-copy .eyebrow {
  color: #d8ab74;
}

.section-trust {
  padding-top: 0;
  margin-top: -38px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(40, 62, 73, 0.95), rgba(29, 47, 55, 0.96));
  color: var(--text);
}

.trust-strip span {
  display: block;
  margin-bottom: 8px;
  color: #d5b184;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.trust-strip strong {
  display: block;
  line-height: 1.55;
}

.services-grid,
.sectors-grid,
.projects-grid,
.gallery-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.sector-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.98), rgba(236, 231, 222, 0.96));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card {
  min-height: 270px;
  padding: 28px;
}

.service-card::before,
.sector-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(157, 183, 197, 0.16), transparent 40%, rgba(204, 139, 60, 0.08)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 26%);
  pointer-events: none;
}

.service-card::after,
.sector-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.service-card:hover,
.sector-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 171, 116, 0.42);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.26);
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 1), rgba(240, 235, 227, 0.98));
}

.service-index {
  display: inline-block;
  margin-bottom: 22px;
  color: #9d7445;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.service-card h3,
.sector-card h3,
.process-card h3,
.project-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.08;
}

.service-card p,
.sector-card p,
.process-card p {
  color: #4b5d67;
}

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

.sector-card,
.process-card {
  padding: 28px;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.company-copy {
  display: grid;
  gap: 16px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(35, 55, 64, 0.68), rgba(49, 73, 83, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.company-stats {
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(41, 66, 77, 0.98), rgba(28, 47, 55, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  color: #f7f4ed;
}

.stat-card span {
  color: #cfdae0;
  line-height: 1.6;
}

.projects-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.project-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel-strong);
}

.project-card img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.project-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(6, 12, 16, 0.95));
  color: white;
}

.project-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #e0b27c;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.project-copy h3 {
  color: white;
}

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

.gallery-item {
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.gallery-item img {
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

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

.process-card strong {
  display: inline-block;
  margin-bottom: 18px;
  color: #9d7445;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(39, 62, 72, 0.9), rgba(26, 44, 51, 0.88)),
    url("https://images.pexels.com/photos/4481327/pexels-photo-4481327.jpeg?cs=srgb&dl=pexels-tiger-lily-4481327.jpg&fm=jpg") center/cover;
  color: var(--text);
}

.cta-card .eyebrow,
.cta-card h2,
.cta-card p {
  color: var(--text);
}

.cta-card .eyebrow {
  color: #e0bc8d;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 5vw 38px;
  color: #5f726f;
}

@media (max-width: 1100px) {
  .hero-content,
  .services-grid,
  .sectors-grid,
  .company-layout,
  .projects-grid,
  .gallery-grid,
  .process-grid,
  .cta-card,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-sales-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    margin-top: 48px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 18px 18px 42px;
  }

  .section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .topbar {
    justify-content: space-between;
    gap: 16px;
    align-items: center;
  }

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

  .nav-panel {
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(37, 58, 68, 0.99), rgba(26, 44, 51, 0.99));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    z-index: 40;
  }

  .nav-panel.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-links {
    display: grid;
    gap: 10px;
    width: 100%;
  }

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

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 16px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.98rem;
  }

  .nav-links a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(204, 139, 60, 0.12);
    order: 2;
  }

  .nav-cta {
    width: 100%;
    min-height: 50px;
    background: var(--accent);
    color: #1f1407;
    border-color: transparent;
    font-weight: 700;
  }

  .hero-content {
    gap: 26px;
    margin-top: 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-value-list {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-value-list span {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero-actions,
  .cta-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 14px 18px;
  }

  .hero-metrics {
    margin-top: 26px;
    gap: 12px;
  }

  .hero-metrics li {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-card h2,
  .section-heading h2,
  .company-copy h2,
  .cta-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-card ul {
    padding-left: 16px;
    line-height: 1.6;
  }

  .trust-strip {
    margin-top: 6px;
    padding: 18px;
    gap: 14px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 24px;
  }

  .section-heading p,
  .company-copy p,
  .cta-card p,
  .service-card p,
  .sector-card p,
  .process-card p,
  .stat-card span {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .service-card,
  .sector-card,
  .process-card {
    min-height: auto;
  }

  .service-card h3,
  .sector-card h3,
  .process-card h3,
  .project-copy h3 {
    font-size: 1.28rem;
  }

  .company-copy {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .company-stats {
    gap: 14px;
  }

  .stat-card strong {
    font-size: 2rem;
  }

  .hero-card,
  .hero-badge,
  .hero-highlight,
  .hero-proof,
  .service-card,
  .sector-card,
  .stat-card,
  .process-card,
  .cta-card {
    padding: 22px 20px;
  }

  .project-card,
  .gallery-item {
    min-height: 220px;
  }

  .project-copy {
    padding: 18px;
  }

  .gallery-grid,
  .projects-grid,
  .services-grid,
  .sectors-grid,
  .process-grid,
  .company-layout {
    gap: 16px;
  }

  .footer {
    padding-bottom: 28px;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-panel {
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.8rem;
  }

  .hero-card h2,
  .section-heading h2,
  .company-copy h2,
  .cta-card h2 {
    font-size: 1.75rem;
  }
}

body.menu-open {
  overflow: hidden;
}
