:root {
  --bg: #07111b;
  --bg-soft: #0c1a28;
  --panel: rgba(8, 19, 31, 0.9);
  --panel-strong: #0d2237;
  --text: #eef4f7;
  --muted: #b3c0cb;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #11833e;
  --accent-strong: #f2bf1f;
  --accent-deep: #c81f2d;
  --success: #72d39c;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 31, 45, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(12, 90, 173, 0.22), transparent 30%),
    radial-gradient(circle at bottom center, rgba(17, 131, 62, 0.16), transparent 38%),
    linear-gradient(180deg, #050d15 0%, #09131d 45%, #07111b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

main {
  overflow: clip;
  padding-top: calc(var(--header-height) + 1.5rem);
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--accent);
  color: #081015;
  border-radius: 999px;
  z-index: 1000;
}

.site-header {
  position: fixed;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 120;
}

.site-header .container {
  position: relative;
}

.site-nav {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.72rem 0.85rem;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(7, 17, 27, 0.92));
  border: 1px solid var(--line);
  border-radius: 26px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(242, 191, 31, 0.34), rgba(17, 131, 62, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  flex: 0 1 auto;
  margin-right: auto;
}

.brand-mark {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.section-heading h2,
.hero-copy h1,
.hero-card h2,
.contact-form h3,
.site-footer h2 {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

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

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-menu {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  right: max(1rem, calc((100vw - var(--container)) / 2 + 1rem));
  width: min(22rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(6, 16, 27, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-menu a {
  color: var(--muted);
  transition: color 0.2s ease;
  padding: 0.8rem 0.4rem;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-dropdown[open] .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
  margin-left: 0;
  display: flex;
  align-items: center;
}

.nav-dropdown[open] {
  z-index: 45;
}

.nav-phone {
  padding: 0.85rem 1.05rem !important;
  border-radius: 16px;
  background: rgba(17, 131, 62, 0.16);
  color: var(--text) !important;
  border: 1px solid rgba(17, 131, 62, 0.32);
  position: relative;
  overflow: hidden;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.14rem;
  width: 3rem;
  height: 3rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(14, 37, 58, 0.94), rgba(8, 24, 39, 0.92));
  border-radius: 18px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  list-style: none;
}

.nav-toggle::-webkit-details-marker {
  display: none;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-dropdown[open] .nav-toggle {
  border-color: rgba(242, 191, 31, 0.34);
  background: linear-gradient(180deg, rgba(18, 47, 72, 0.98), rgba(10, 27, 43, 0.95));
  transform: translateY(-1px);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 0.34rem;
  height: 0.34rem;
  background: var(--accent-strong);
  border-radius: 50%;
  margin: 0;
}

.site-contact {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
}

.contact-chip {
  margin: 0;
  display: grid;
  gap: 0.15rem;
  padding: 0.54rem 0.72rem;
  min-height: 3rem;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.2;
}

.contact-chip span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-chip-phone {
  background: linear-gradient(145deg, rgba(17, 131, 62, 0.22), rgba(17, 131, 62, 0.12));
  border-color: rgba(17, 131, 62, 0.34);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17, 131, 62, 0.12);
}

.section,
.hero-section {
  padding: 6rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-section {
  position: relative;
  padding-top: 3.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.94) 0%, rgba(7, 11, 15, 0.82) 36%, rgba(7, 11, 15, 0.56) 64%, rgba(7, 11, 15, 0.82) 100%),
    url("https://cdn.pixabay.com/photo/2024/04/11/10/22/man-8689628_1280.jpg") center right / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at left center, rgba(242, 191, 31, 0.16), transparent 34%),
    radial-gradient(circle at right bottom, rgba(17, 131, 62, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 11, 15, 0.48));
}

.hero-grid,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.service-ticker {
  padding: 0 0 3.2rem;
}

.ticker-intro {
  margin: 0 0 1.5rem;
  text-align: center;
  color: rgba(238, 244, 247, 0.88);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.ticker-shell {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0;
  background: #02060b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-shell::before,
.ticker-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 8rem);
  z-index: 1;
  pointer-events: none;
}

.ticker-shell::before {
  left: 0;
  background: linear-gradient(90deg, #02060b 0%, rgba(2, 6, 11, 0) 100%);
}

.ticker-shell::after {
  right: 0;
  background: linear-gradient(270deg, #02060b 0%, rgba(2, 6, 11, 0) 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding-right: 1rem;
}

.ticker-item {
  min-width: 16rem;
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ticker-item strong {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
}

.ticker-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.96rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.hero-text,
.section-heading p,
.reason-card p,
.service-card p,
.about-card,
.contact-card,
.area-card span {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.cta-primary::before,
.cta-secondary::before,
.nav-phone::before,
.contact-chip-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.cta-primary {
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  color: #081015;
  box-shadow: 0 18px 30px rgba(17, 131, 62, 0.22);
}

.cta-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.cta-primary:hover,
.cta-primary:focus-visible,
.cta-secondary:hover,
.cta-secondary:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.cta-primary:hover,
.cta-primary:focus-visible,
.nav-phone:hover,
.nav-phone:focus-visible,
.contact-chip-phone:hover,
.contact-chip-phone:focus-visible {
  box-shadow:
    0 22px 34px rgba(17, 131, 62, 0.24),
    0 0 0 1px rgba(242, 191, 31, 0.18);
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.cta-primary:hover::before,
.cta-primary:focus-visible::before,
.cta-secondary:hover::before,
.cta-secondary:focus-visible::before,
.nav-phone:hover::before,
.nav-phone:focus-visible::before,
.contact-chip-phone:hover::before,
.contact-chip-phone:focus-visible::before {
  transform: translateX(140%);
}

.cta-primary:active,
.cta-secondary:active,
.nav-phone:active,
.contact-chip-phone:active {
  transform: translateY(0) scale(0.98);
}

.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.nav-phone:focus-visible,
.contact-chip-phone:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(7, 11, 15, 0.9),
    0 0 0 5px rgba(242, 191, 31, 0.32);
}

.trust-list,
.panel-list,
.detail-list,
.footer-links {
  display: grid;
  gap: 0.85rem;
}

.trust-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}

.trust-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent-deep));
  box-shadow: 0 0 0 5px rgba(17, 131, 62, 0.14);
}

.hero-card,
.service-card,
.reason-card,
.about-card,
.area-card,
.contact-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -25% auto;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(200, 31, 45, 0.18), transparent 65%);
}

.panel-label {
  margin: 0 0 0.6rem;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.hero-card h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.panel-list div,
.contact-card div,
.detail-list div {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.panel-list div:last-child,
.contact-card div:last-child,
.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-list span,
.contact-card span,
.detail-list dt,
.area-card p {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-list p,
.panel-list a,
.contact-card p,
.detail-list dd {
  margin: 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(6, 11, 15, 0.38);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-accent {
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 191, 31, 0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(17, 131, 62, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2.3rem;
}

.section-heading h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
}

.photo-strip,
.photo-banner {
  padding: 0 0 5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
  gap: 1rem;
  align-items: stretch;
}

.photo-card,
.photo-banner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--panel-strong);
}

.photo-card {
  min-height: 16rem;
}

.photo-card-wide {
  grid-row: span 2;
}

.photo-card img,
.photo-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  min-height: 100%;
}

.photo-card::after,
.photo-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 8, 11, 0.84) 100%);
}

.photo-card figcaption,
.photo-banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem;
}

.photo-card span,
.photo-banner-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.photo-card span {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-card p,
.photo-banner-copy p:last-of-type {
  margin: 0;
  color: rgba(238, 244, 247, 0.82);
}

.photo-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 25rem;
}

.photo-banner-card::after {
  display: none;
}

.photo-banner-card img {
  min-height: 25rem;
}

.photo-banner-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2.1rem;
  background:
    radial-gradient(circle at top left, rgba(242, 191, 31, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(17, 131, 62, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(12, 23, 35, 0.98), rgba(7, 15, 24, 0.98));
}

.photo-banner-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.photo-banner-copy .cta-secondary {
  width: fit-content;
}

.services-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card,
.reason-card {
  padding: 1.5rem;
}

.service-card h3,
.reason-card h3,
.about-card h3,
.contact-form h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), transparent);
}

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

.about-card,
.contact-card {
  padding: 1.6rem;
}

.detail-list {
  margin: 0;
}

.detail-list dd {
  margin-left: 0;
  color: var(--text);
}

.area-card {
  padding: 2rem;
  display: inline-grid;
  gap: 0.45rem;
  min-width: min(100%, 26rem);
}

.area-card strong {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1;
}

.contact-form {
  padding: 1.7rem;
  display: grid;
  gap: 0.7rem;
}

.form-intro p {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.contact-form label {
  margin-top: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #86939d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(17, 131, 62, 0.75);
  box-shadow: 0 0 0 4px rgba(17, 131, 62, 0.12);
}

.contact-form .field-error {
  border-color: #ff8d86;
  box-shadow: 0 0 0 4px rgba(255, 141, 134, 0.1);
}

.form-feedback {
  min-height: 1.5rem;
  color: var(--muted);
}

.form-feedback.is-error {
  color: #ffb4ae;
}

.form-feedback.is-success {
  color: var(--success);
}

.site-footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(17, 131, 62, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(200, 31, 45, 0.08), transparent 28%),
    rgba(3, 8, 11, 0.68);
}

.footer-brand-block {
  display: grid;
  gap: 0.65rem;
}

.footer-logo {
  width: min(100%, 9rem);
  height: auto;
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
}

.footer-cta {
  margin-top: 0.8rem;
  width: fit-content;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1024px) {
  :root {
    --header-height: 136px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .services-grid,
  .reasons-grid,
  .photo-grid,
  .photo-banner-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .ticker-item {
    min-width: 14rem;
  }

  .hero-section::before {
    background-position: center center;
  }

  .site-contact {
    gap: 0.55rem;
  }

  .contact-chip {
    padding: 0.58rem 0.78rem;
    font-size: 0.88rem;
  }

  .photo-card-wide {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 124px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .section,
  .hero-section {
    padding: 4.2rem 0;
  }

  .site-nav {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.65rem;
    row-gap: 0.45rem;
    padding: 0.74rem 0.8rem;
  }

  .site-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .contact-chip {
    min-height: auto;
    padding: 0.4rem 0.52rem;
    font-size: 0.76rem;
    border-radius: 12px;
    gap: 0.04rem;
  }

  .contact-chip span {
    font-size: 0.56rem;
  }

  .contact-chip-address {
    display: none;
  }

  .contact-chip:not(.contact-chip-phone) {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    border-color: transparent;
    color: var(--muted);
  }

  .nav-menu {
    top: calc(var(--header-height) + 0.75rem);
    right: 0.8rem;
    left: auto;
    width: min(24rem, calc(100vw - 1.6rem));
    padding: 0.8rem;
    border-radius: 16px;
    max-height: calc(100svh - var(--header-height) - 2rem);
    overflow-y: auto;
    z-index: 35;
  }

  .nav-menu a {
    padding: 0.72rem 0.3rem;
    font-size: 0.95rem;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .services-grid,
  .reasons-grid,
  .photo-grid,
  .photo-banner-card {
    grid-template-columns: 1fr;
  }

  .photo-card-wide {
    grid-column: span 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
    gap: 0.48rem;
    margin-right: 0;
  }

  .brand-copy strong {
    font-size: 0.79rem;
    line-height: 1.05;
  }

  .brand-copy span:last-child {
    font-size: 0.66rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nav-dropdown {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin-left: auto;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
    padding: 0.28rem;
    border-radius: 16px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 0.22rem;
    height: 0.22rem;
    margin: 0.08rem auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(7, 11, 15, 0.9) 0%, rgba(7, 11, 15, 0.72) 48%, rgba(7, 11, 15, 0.88) 100%),
      url("https://cdn.pixabay.com/photo/2024/04/11/10/22/man-8689628_1280.jpg") center center / cover no-repeat;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    gap: 1.4rem;
  }

  .service-ticker {
    padding-bottom: 2.8rem;
  }

  .ticker-intro {
    margin-bottom: 1.15rem;
    padding: 0 0.5rem;
    font-size: 1rem;
  }

  .ticker-shell {
    padding: 1.1rem 0;
  }

  .ticker-track {
    animation-duration: 28s;
  }

  .ticker-item {
    min-width: 13rem;
    padding: 0.95rem 1rem;
  }

  .ticker-item strong {
    font-size: 1.25rem;
  }

  .hero-actions,
  .photo-banner-copy .cta-secondary {
    width: 100%;
  }

  .photo-strip,
  .photo-banner {
    padding-bottom: 4rem;
  }

  .photo-card,
  .photo-banner-card img {
    min-height: 15rem;
  }

  .photo-card figcaption,
  .photo-banner-copy {
    padding: 1.15rem;
  }

  .photo-banner-copy h2 {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

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

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header {
    top: 0.5rem;
  }

  .footer-logo {
    width: min(100%, 7.5rem);
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 0.48rem;
    row-gap: 0;
    padding: 0.6rem 0.64rem;
  }

  .site-contact {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-content: flex-end;
    gap: 0;
    padding-top: 0;
    border-top: 0;
  }

  .contact-chip-address {
    display: none;
  }

  .contact-chip {
    padding: 0.38rem 0.5rem;
    font-size: 0.67rem;
    min-width: 0;
  }

  .contact-chip span {
    font-size: 0.49rem;
  }

  .site-contact .contact-chip:not(.contact-chip-phone) {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
    gap: 0.34rem;
  }

  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
  }

  .brand-copy strong {
    font-size: 0.67rem;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .nav-dropdown {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin-left: auto;
  }

  .nav-toggle {
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.2rem;
    border-radius: 14px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 0.18rem;
    height: 0.18rem;
  }

  .nav-menu {
    top: calc(var(--header-height) + 0.55rem);
    right: 0.625rem;
    left: 0.625rem;
    width: auto;
  }

  .hero-section {
    padding-top: 3.8rem;
  }

  .hero-card,
  .service-card,
  .reason-card,
  .about-card,
  .contact-card,
  .contact-form,
  .area-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

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

  .section-heading {
    margin-bottom: 1.6rem;
  }

  .service-ticker {
    padding-bottom: 2.4rem;
  }

  .ticker-row {
    gap: 0.8rem;
    padding-right: 0.8rem;
  }

  .ticker-item {
    min-width: 11.5rem;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .ticker-item strong {
    font-size: 1.08rem;
  }

  .ticker-item span {
    font-size: 0.88rem;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    line-height: 1;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .trust-list li {
    align-items: flex-start;
  }

  .cta-primary,
  .cta-secondary,
  .contact-form button {
    width: 100%;
  }

  .photo-grid {
    gap: 0.8rem;
  }

  .photo-card {
    min-height: 13.5rem;
  }

  .photo-card figcaption {
    padding: 1rem;
  }

  .photo-banner-copy {
    gap: 0.8rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.88rem 0.95rem;
  }
}

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

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

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

  .ticker-track {
    animation: none;
  }
}
