:root {
  --navy: #12264a;
  --navy-2: #09182d;
  --slate: #526276;
  --ink: #111827;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: rgba(18, 38, 74, 0.13);
  --accent: #e5313f;
  --accent-dark: #bd2030;
  --gold: #e8b44c;
  --green: #4f7d62;
  --shadow: 0 22px 65px rgba(10, 24, 45, 0.16);
  --radius: 22px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: var(--font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(10, 24, 45, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: max-content;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--accent);
  background: linear-gradient(145deg, #fff0f2, #eef4ff);
  box-shadow: inset 0 0 0 1px rgba(229, 49, 63, 0.1);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.logo-title {
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.035em;
  font-size: 1.04rem;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6d7687;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 800;
  color: #121a2b;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 1.8rem 0 1.65rem;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.18rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(18, 38, 74, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #18325c;
  box-shadow: 0 16px 32px rgba(18, 38, 74, 0.3);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #eef3fb;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: var(--navy-2);
}

.hero--home {
  min-height: calc(100vh - var(--header-height));
}

.page-hero {
  min-height: 520px;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.2s ease, transform 5.8s ease;
}

.hero__bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero--services-static .hero__bg,
.hero--about-static .hero__bg {
  opacity: 1;
  transform: scale(1);
  transition: none;
}

.hero--services-static .hero__bg {
  background-image: url('/image2.png');
}

.hero--about-static .hero__bg {
  background-image: url('/image1.png');
}

.hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 75% 20%, rgba(79, 125, 98, 0.18), transparent 34rem),
    linear-gradient(90deg, rgba(7, 18, 35, 0.93) 0%, rgba(12, 28, 56, 0.84) 40%, rgba(12, 28, 56, 0.54) 66%, rgba(12, 28, 56, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 18, 35, 0.28), rgba(7, 18, 35, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 19, 36, 0.78), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  width: min(720px, 100%);
  padding: 8.4rem 0 4rem;
}

.hero--home .hero__content {
  padding-top: clamp(5.5rem, 10vh, 9rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
}

.hero-lede {
  width: min(720px, 100%);
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 760;
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.86rem 1.28rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(229, 49, 63, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 22px 42px rgba(229, 49, 63, 0.38);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  color: #fff;
  background: var(--navy);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border: 2px solid rgba(18, 38, 74, 0.14);
}

.btn-outline:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(760px, 100%);
  padding-bottom: 4rem;
}

.hero-card {
  padding: 1.18rem;
  min-height: 114px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(2, 8, 20, 0.26);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-card span {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.45;
}

.section {
  padding: clamp(4rem, 7.2vw, 6.6rem) 0;
}

.section-tight {
  padding: clamp(3rem, 5.2vw, 4.6rem) 0;
}

.section-white {
  background: #fff;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(232, 180, 76, 0.16), transparent 26rem),
    linear-gradient(135deg, #0d1f3c, #132a4f 62%, #102b43);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.section-title {
  max-width: 860px;
  margin: 0.65rem 0 0;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.section-dark .section-title,
.section-dark .section-copy {
  color: #fff;
}

.section-copy {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 1.08rem;
  font-weight: 610;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
}

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

.cards {
  margin-top: 2.2rem;
}

.card {
  position: relative;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(10, 24, 45, 0.07);
}

.card::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 1.55rem;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.card h3 {
  margin: 1.1rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.card p {
  margin: 0;
  color: var(--slate);
  font-weight: 560;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.9rem 0 0;
  color: var(--slate);
  font-weight: 580;
}

.card li + li {
  margin-top: 0.35rem;
}

.feature-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(18, 38, 74, 0.94), rgba(22, 58, 75, 0.94)),
    url('/image2.png') center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-panel h3 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.feature-panel p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.stat-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 730;
}

.stat-item strong {
  text-align: right;
}

.service-card {
  min-height: 100%;
}

.service-card .service-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(18, 38, 74, 0.2);
}

.service-card.card::before {
  display: none;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: 2.3rem;
}

.image-panel {
  min-height: 430px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(10, 24, 45, 0.25), rgba(10, 24, 45, 0.1)), url('/image1.png') center/cover;
  box-shadow: var(--shadow);
}

.image-panel--services {
  background: linear-gradient(120deg, rgba(10, 24, 45, 0.25), rgba(10, 24, 45, 0.1)), url('/image3.png') center/cover;
}

.image-panel--about {
  background: linear-gradient(120deg, rgba(10, 24, 45, 0.25), rgba(10, 24, 45, 0.1)), url('/image1.png') center/cover;
}

.check-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--slate);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.12rem;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(229, 49, 63, 0.25);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 1.42rem;
  top: 1.42rem;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(232, 180, 76, 0.22), transparent 22rem),
    linear-gradient(130deg, var(--navy), #0f3850);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.cta-panel p {
  max-width: 720px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 640;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2.4rem;
}

.contact-panel {
  padding: 1.6rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--accent);
  background: #fff0f2;
}

.contact-method h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.contact-method p,
.contact-method a {
  margin: 0.24rem 0 0;
  color: var(--slate);
  font-weight: 720;
}

.form-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.form-card p {
  margin: 0 0 1.2rem;
  color: var(--slate);
  font-weight: 610;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

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

.form-field label {
  color: var(--navy);
  font-weight: 850;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(18, 38, 74, 0.14);
  border-radius: 15px;
  padding: 0.88rem 0.95rem;
  color: var(--ink);
  background: #f9fbfe;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(229, 49, 63, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(229, 49, 63, 0.12);
}

.form-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 15px;
  color: #29405a;
  background: #eef4fb;
  font-size: 0.94rem;
  font-weight: 650;
}

.form-status {
  min-height: 1.6rem;
  margin: 0.8rem 0 0;
  color: var(--green);
  font-weight: 800;
}

.map-card {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 38, 74, 0.8), rgba(18, 38, 74, 0.24)),
    url('/image2.png') center/cover;
  display: grid;
  align-content: end;
  padding: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.map-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.map-card p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 680;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #08182d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 3.2rem 0 2.4rem;
}

.footer-title {
  color: #fff;
  font-weight: 930;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.footer-text {
  max-width: 420px;
  margin: 0.8rem 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 680;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: auto;
    z-index: 55;
    width: min(86vw, 380px);
    max-width: calc(100vw - 1rem);
    height: calc(100dvh - var(--header-height));
    align-content: start;
    gap: 0;
    padding: 1rem 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -20px 40px 80px rgba(10, 24, 45, 0.16);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a:not(.nav-cta) {
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:not(.nav-cta)::after {
    bottom: 0;
  }


  .logo {
    min-width: 0;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-title,
  .logo-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  main,
  .site-footer {
    overflow-x: clip;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 1.2rem;
  }

  .hero,
  .hero--home {
    min-height: auto;
  }

  .hero__content {
    padding: 6rem 0 2.2rem;
  }

  .hero-cards,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .split-panel,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .hero-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.62rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card {
    min-height: 0;
  }

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


@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .logo {
    gap: 0.55rem;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex: 0 0 36px;
  }

  .logo-title {
    font-size: 0.84rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .site-nav {
    width: min(88vw, 350px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
}

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