:root {
  --color-ink: #17211f;
  --color-muted: #5b6865;
  --color-border: #dce7e4;
  --color-page: #fbfdfc;
  --color-surface: #ffffff;
  --color-soft: #edf6f3;
  --color-teal: #0f766e;
  --color-teal-dark: #0b4f4a;
  --color-amber: #e8a23a;
  --color-coral: #d66b54;
  --shadow-soft: 0 18px 50px rgba(16, 42, 38, 0.12);
  --radius: 8px;
  --container: 1160px;
  --header-height: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-ink);
  background: var(--color-page);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-page);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #fff;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 231, 228, 0.74);
  background: rgba(251, 253, 252, 0.88);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(15, 35, 32, 0.08);
  background: rgba(251, 253, 252, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 100%;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--color-muted);
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-teal-dark);
  background: var(--color-soft);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.header-action {
  padding: 10px 16px;
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.header-action svg,
.button svg,
.info-item svg,
.contact-phone svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-action svg path:nth-child(2),
.button svg path:nth-child(2),
.info-item svg path:nth-child(2) {
  stroke-width: 1.7;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  appearance: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(78svh - var(--header-height));
  overflow: hidden;
  background: #e7f2ef;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 252, 0.98) 0%, rgba(251, 253, 252, 0.9) 34%, rgba(251, 253, 252, 0.2) 62%, rgba(251, 253, 252, 0) 100%),
    linear-gradient(0deg, rgba(15, 35, 32, 0.08), rgba(15, 35, 32, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(70px, 10vw, 118px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-band h2,
.location-copy h2 {
  margin: 0;
  max-width: 780px;
  color: var(--color-ink);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.55rem, 5.7vw, 5.8rem);
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: #35423f;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

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

.button {
  padding: 13px 18px;
}

.button-primary {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-teal-dark);
}

.button-secondary {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-teal-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(15, 118, 110, 0.34);
  background: #fff;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.16);
  box-shadow: 0 20px 50px rgba(30, 62, 58, 0.08);
}

.hero-details div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-details dt {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 6px 0 0;
  color: var(--color-ink);
  font-weight: 800;
}

.section {
  padding-block: clamp(72px, 9vw, 116px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-copy h2,
.contact-band h2,
.location-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.section-heading p:last-child,
.split-copy p,
.contact-band p,
.location-copy p,
.site-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 12px 34px rgba(16, 42, 38, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div:not(.service-icon) {
  padding: 0 20px 22px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.service-card-accent {
  padding: 24px;
  background:
    linear-gradient(180deg, #fff 0%, #f5faf8 100%);
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: #fff0de;
  color: #ae6115;
}

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

.split-section {
  background: #f2f8f6;
}

.split-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2d3c39;
  font-weight: 650;
}

.check-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--color-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-band {
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.96), rgba(11, 79, 74, 0.98)),
    var(--color-teal-dark);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: center;
  gap: 32px;
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: #fff;
}

.contact-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.contact-band .button-primary {
  background: #fff;
  color: var(--color-teal-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.contact-band .button-primary:hover,
.contact-band .button-primary:focus-visible {
  background: #fff7e9;
}

.contact-phone {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 800;
}

.location-section {
  background: var(--color-page);
}

.location-grid {
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.1fr);
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-teal-dark);
  font-weight: 800;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.info-item:hover,
.info-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 12px 28px rgba(16, 42, 38, 0.08);
}

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #e8efed;
  box-shadow: var(--shadow-soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 42px;
  padding-block: 42px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--color-muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-teal-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.92rem;
}

:focus-visible {
  outline: 3px solid rgba(232, 162, 58, 0.62);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    order: 3;
    position: fixed;
    top: calc((var(--header-height) - 44px) / 2);
    right: 20px;
    z-index: 70;
    border-color: rgba(15, 118, 110, 0.24);
    color: var(--color-teal-dark);
    box-shadow: 0 8px 20px rgba(16, 42, 38, 0.08);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(251, 253, 252, 0.98);
    box-shadow: 0 24px 44px rgba(17, 38, 34, 0.12);
    transform: translateY(calc(-100% - var(--header-height)));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: center;
    min-height: 50px;
  }

  .header-action {
    order: 2;
  }

  .section-heading,
  .split-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    flex: 0 0 44px;
    margin-left: auto;
    position: fixed;
    top: calc((var(--header-height) - 44px) / 2);
    right: 14px;
    z-index: 70;
    border-color: rgba(15, 118, 110, 0.24);
    color: var(--color-teal-dark);
    box-shadow: 0 8px 20px rgba(16, 42, 38, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 253, 252, 0.98) 0%, rgba(251, 253, 252, 0.9) 48%, rgba(251, 253, 252, 0.18) 100%),
      linear-gradient(0deg, rgba(15, 35, 32, 0.1), rgba(15, 35, 32, 0.1));
  }

  .hero-content {
    padding-block: 58px 46px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.6vw, 2.85rem);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr;
    max-width: 330px;
    margin-top: 30px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 26px;
  }

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

  .service-card {
    gap: 16px;
  }

  .split-grid,
  .location-grid {
    gap: 28px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }

  .footer-grid {
    gap: 28px;
  }

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

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .info-list {
    display: grid;
  }
}

@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;
  }
}
