:root {
  --navy: #071a33;
  --navy-soft: #102744;
  --gold: #b89448;
  --gold-light: #d8bd78;
  --red: #b81f2d;
  --ink: #172033;
  --muted: #687386;
  --line: #e7eaf0;
  --paper: #ffffff;
  --off-white: #f7f8fb;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.section {
  padding: 104px 0;
  scroll-margin-top: 90px;
}

@media (min-width: 981px) {
  .section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 72px 0;
  }

  .section > .container {
    flex: 0 0 auto;
  }

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

  .business-card {
    padding: 24px;
  }

  .business-card p {
    font-size: 14px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 234, 240, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: 100%;
  height: 90px;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 116px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 52px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  margin-top: 3px;
}

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

.nav-links a {
  position: relative;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.submenu-wide {
  min-width: 260px;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.submenu a {
  display: block;
  white-space: nowrap;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(184, 148, 72, 0.08);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--navy-soft);
}

.language-switch {
  position: relative;
  margin-left: 10px;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.lang-trigger:hover {
  background: var(--navy);
  color: #fff;
}

.lang-arrow {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.language-switch:hover .lang-arrow,
.language-switch.is-open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 120px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  overflow: hidden;
}

.language-switch:hover .lang-dropdown,
.language-switch.is-open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 16px;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-button:hover {
  background: #f3f5f8;
  color: var(--navy);
}

.lang-button.is-active {
  color: var(--navy);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0.84) 72%, rgba(255, 255, 255, 0.78) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, #fff 100%),
    url("assets/hero-bridge.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(184, 148, 72, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(7, 26, 51, 0.04), rgba(7, 26, 51, 0));
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.hero-grid-simple {
  grid-template-columns: minmax(0, 780px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--red);
  border-radius: 50%;
}

.eyebrow em {
  font-style: normal;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Noto Serif JP", serif;
}

html[lang="mn"] h1,
html[lang="mn"] h2,
html[lang="mn"] .message-signature strong {
  font-family: "Noto Sans", "Noto Sans JP", system-ui, sans-serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700;
}

html[lang="mn"] h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.15vw, 58px);
  font-weight: 800;
  line-height: 1.28;
}

h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

html[lang="mn"] h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.32;
}

h3 {
  font-size: 21px;
}

.hero-sub {
  margin: 28px 0 18px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.65;
}

html[lang="mn"] .hero-sub {
  max-width: 800px;
  font-size: clamp(22px, 2.05vw, 30px);
  font-weight: 800;
  line-height: 1.55;
}

.hero-description {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

html[lang="mn"] .hero-description {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.22);
}

.button.primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--gold);
}

.button.secondary:hover {
  color: #fff;
  background: var(--gold);
}

.about-band,
.message-section,
.philosophy,
.company-section,
.access-section,
.strengths-section,
.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.91)),
    linear-gradient(180deg, rgba(247, 248, 251, 0.92), rgba(255, 255, 255, 0.96)),
    url("assets/hero-bridge.png") center / cover fixed;
}

.about-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 48%, rgba(255, 255, 255, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 248, 251, 0.68)),
    url("assets/about-bg.png") center / cover no-repeat;
}

.split-layout,
.company-grid,
.access-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
}

.section-heading > p:last-child,
.lead-text p,
.message-copy p,
.philosophy-panel p:last-child,
.contact-copy p {
  color: var(--muted);
  margin: 18px 0 0;
}

.lead-text {
  font-size: 17px;
}

.lead-text p:first-child {
  margin-top: 0;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  max-width: 1050px;
}

.message-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef1f5, #d6dbe2);
  box-shadow: 0 24px 58px rgba(7, 26, 51, 0.14);
}

.message-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.message-photo.is-placeholder::before {
  content: "Захирлын зураг";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

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

.message-kicker {
  position: relative;
  width: fit-content;
  margin: 0 0 32px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}


.message-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.1vw, 52px);
  font-weight: 800;
  line-height: 1.15;
}

.message-copy p:not(.message-kicker) {
  max-width: 610px;
  color: #596475;
  font-weight: 700;
  line-height: 1.9;
}

.message-copy p:not(.message-kicker):first-of-type {
  margin-top: 0;
}

.message-signature {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  color: var(--navy);
}

.message-signature span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.message-signature strong {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.25;
}

.philosophy {
  padding-top: 0;
}

.philosophy-panel {
  padding: 56px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/hero-bridge.png") center right / cover no-repeat;
  border: 1px solid rgba(231, 234, 240, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.philosophy-panel h2,
.philosophy-panel p {
  color: var(--navy);
}

.philosophy-panel p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.centered {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.business-card,
.strength-card,
.contact-form,
.profile-table,
.map-placeholder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.06);
}

.business-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  scroll-margin-top: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(184, 148, 72, 0.09);
  border: 1px solid rgba(184, 148, 72, 0.28);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.business-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(184, 148, 72, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.business-card:hover,
.strength-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 148, 72, 0.5);
  box-shadow: 0 24px 58px rgba(7, 26, 51, 0.12);
}

.card-number {
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
}

.business-card h3 {
  margin-top: 8px;
}

.business-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.business-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
}

.business-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.strength-card {
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.strength-number {
  color: var(--red);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.strength-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.strength-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-table {
  overflow: hidden;
}

.profile-table dl {
  margin: 0;
}

.profile-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--line);
}

.profile-table div:last-child {
  border-bottom: 0;
}

.profile-table dt,
.profile-table dd {
  margin: 0;
  padding: 18px 22px;
}

.profile-table dt {
  color: var(--navy);
  background: #f9fafc;
  font-weight: 800;
}

.profile-table dd {
  color: var(--ink);
}

.profile-table a {
  color: var(--navy);
  font-weight: 700;
}

.access-copy address {
  margin-top: 22px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.map-frame {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #fff;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: saturate(0.72) contrast(1.05);
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(7, 26, 51, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-link:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 72, 0.14);
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.form-message {
  min-height: 1.8em;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  padding: 54px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand strong,
.footer-brand small {
  color: #fff;
}

.footer-brand .brand-logo {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  max-width: 520px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.copyright {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
}

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

.js-ready .business-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.js-ready .business-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.js-ready .business-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.js-ready .strength-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.js-ready .strength-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.js-ready .strength-card.reveal:nth-child(4) { transition-delay: 0.3s; }

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

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

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

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

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 70px;
    max-height: calc(100vh - 90px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-item,
  .nav-item > a {
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu::before {
    display: none;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .language-switch {
    width: 100%;
    margin-left: 0;
  }

  .lang-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 0;
    width: 100%;
    transition: opacity 0.18s ease;
  }

  .language-switch:hover .lang-dropdown {
    transform: none;
  }

  .hero-grid,
  .split-layout,
  .company-grid,
  .access-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .message-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 620px;
  }

  .message-photo {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .container,
  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .brand small,
  .brand strong {
    display: none;
  }

  .nav {
    height: 60px;
  }

  .brand-logo {
    width: 80px;
    height: 36px;
  }

  .hero {
    padding: 54px 0 72px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 56%, rgba(255, 255, 255, 0.7) 100%),
      url("assets/hero-bridge.png") 68% top / auto 100% no-repeat;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .business-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.42;
  }

  .hero-sub {
    font-size: 20px;
  }

  .business-card,
  .strength-card,
  .contact-form,
  .philosophy-panel {
    padding: 26px;
  }

  .message-copy h2 {
    font-size: 34px;
  }

  .profile-table div {
    grid-template-columns: 1fr;
  }

  .profile-table dt {
    padding-bottom: 6px;
  }

  .profile-table dd {
    padding-top: 6px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
