:root {
  --ink: #1d2a2e;
  --muted: #5d6b72;
  --line: #d9e5e2;
  --surface: #ffffff;
  --soft: #f4faf8;
  --soft-alt: #f7f8fb;
  --primary: #137c72;
  --primary-dark: #0d514b;
  --accent: #d85f3d;
  --accent-soft: #fff0ea;
  --shadow: 0 14px 36px rgba(14, 57, 53, 0.12);
  --radius: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  background: var(--surface);
}

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

a {
  color: var(--primary-dark);
  text-underline-offset: 0.18em;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--primary-dark);
  font-weight: 700;
}

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

.skip-link:focus {
  z-index: 20;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--primary-dark);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 12px 18px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
}

.brand__small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.brand__name {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tel-link {
  display: none;
  color: var(--primary-dark);
  text-align: right;
  text-decoration: none;
}

.tel-link span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.tel-link strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.menu-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-button__line,
.menu-button__line::before,
.menu-button__line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
  content: "";
}

.menu-button__line {
  position: relative;
}

.menu-button__line::before,
.menu-button__line::after {
  position: absolute;
  left: 0;
}

.menu-button__line::before {
  top: -7px;
}

.menu-button__line::after {
  top: 7px;
}

.global-nav {
  display: none;
  border-top: 1px solid var(--line);
}

.global-nav.is-open {
  display: block;
}

.global-nav ul {
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
  padding: 6px 18px 16px;
  list-style: none;
}

.global-nav a {
  display: block;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.global-nav a[aria-current="page"] {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--primary-dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 30, 28, 0.32), rgba(5, 30, 28, 0.78));
  content: "";
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 42%;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 110px 18px 56px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  background: #e3f4ef;
}

.hero .eyebrow {
  color: #e8fffb;
  background: rgba(13, 81, 75, 0.72);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 8vw, 56px);
  line-height: 1.18;
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 17px;
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}

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

.button--secondary {
  color: var(--primary-dark);
  background: #fff;
}

.button--ghost-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button--ghost {
  color: var(--primary-dark);
  border-color: var(--line);
  background: #fff;
}

.section {
  padding: 54px 18px;
}

.section--soft {
  background: var(--soft);
}

.section--alt {
  background: var(--soft-alt);
}

.section__inner {
  max-width: var(--content);
  margin: 0 auto;
}

.section__head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section__head h2,
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.25;
}

.section h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.section p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--two,
.grid--three {
  grid-template-columns: 1fr;
}

.card {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(18, 62, 58, 0.06);
}

.card h3 {
  margin-top: 0;
}

.card__image {
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--soft);
}

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

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.badge-list li {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  background: #e3f4ef;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.flow-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-item {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.flow-item img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.flow-item__num {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.media-block {
  display: grid;
  gap: 22px;
  align-items: center;
}

.media-block + .media-block {
  margin-top: 36px;
}

.vehicle-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.vehicle-gallery picture,
.vehicle-gallery img {
  width: 100%;
}

.vehicle-gallery img {
  border-radius: var(--radius);
  object-fit: cover;
}

.profile {
  display: grid;
  gap: 18px;
  align-items: start;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  object-fit: cover;
}

.qa-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.qa-list dt {
  color: var(--primary-dark);
  font-weight: 800;
}

.qa-list dd {
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary-dark);
  box-shadow: var(--shadow);
}

.contact-panel a {
  color: #fff;
}

.contact-methods {
  display: grid;
  gap: 16px;
}

.contact-method {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-method h3,
.contact-method p {
  margin: 0;
}

.contact-method .button {
  width: 100%;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

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

.form label {
  font-weight: 800;
}

.required {
  color: var(--accent);
  font-size: 13px;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #fff;
}

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

.form input:focus,
.form textarea:focus {
  outline: 3px solid rgba(19, 124, 114, 0.18);
  border-color: var(--primary);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.error-list {
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #7a1d10;
  background: #fff0ec;
}

.success-message {
  padding: 18px;
  border-radius: var(--radius);
  color: var(--primary-dark);
  background: #e3f4ef;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-bottom: 72px;
  color: #fff;
  background: #173f3b;
}

.footer-cta {
  display: grid;
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__inner {
  display: grid;
  gap: 24px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 30px 18px 18px;
}

.footer-brand {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

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

.site-footer a {
  color: #fff;
}

.site-footer .footer-cta__actions .button--primary {
  color: #fff;
}

.site-footer .footer-cta__actions .button--secondary {
  border-color: #fff;
  color: var(--primary-dark);
  background: #fff;
}

.copyright {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 18px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.page-top-button {
  position: fixed;
  z-index: 11;
  right: 14px;
  bottom: 72px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  z-index: 12;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta a:first-child {
  background: var(--accent);
}

.mobile-cta a:last-child {
  background: var(--primary);
}

.mobile-cta a:nth-child(2) {
  background: var(--primary-dark);
}

@media (min-width: 720px) {
  body {
    font-size: 17px;
  }

  th,
  td {
    display: table-cell;
    padding: 16px;
  }

  th {
    width: 28%;
    background: var(--soft);
  }

  .tel-link {
    display: block;
  }

  .menu-button {
    display: none;
  }

  .global-nav {
    display: block;
  }

  .global-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 22px;
    padding: 0 18px 12px;
  }

  .global-nav a {
    padding: 6px 0;
    font-size: 14px;
  }

  .hero {
    min-height: 600px;
    align-items: center;
  }

  .hero__content {
    padding-top: 80px;
  }

  .section {
    padding: 76px 24px;
  }

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

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

  .flow-item {
    grid-template-columns: 112px 1fr;
    align-items: center;
  }

  .media-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

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

  .profile {
    grid-template-columns: 180px 1fr;
  }

  .contact-panel,
  .footer-cta,
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .site-footer {
    padding-bottom: 0;
  }

  .page-top-button {
    right: 24px;
    bottom: 24px;
  }

  .mobile-cta {
    display: none;
  }
}
