:root {
  --bg: #f4f6f2;
  --surface: #ffffff;
  --ink: #142026;
  --muted: #536066;
  --deep: #12262e;
  --moss: #667a68;
  --bronze: #9a7658;
  --line: #dfe6dc;
  --wash: #eaf0e8;
  --shadow: 0 20px 44px rgba(12, 27, 32, .10);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.68;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(102, 122, 104, .42);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10000;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 850;
}

.skip:focus {
  left: 12px;
}

.site {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(223, 230, 220, .9);
  background: rgba(255, 255, 255, .94);
  padding: 16px 24px;
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--deep);
  font-size: 20px;
  font-weight: 850;
}

.primary {
  display: flex;
  align-items: center;
  gap: 17px;
}

.primary a {
  color: #26383f;
  font-size: 14px;
  font-weight: 760;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  padding: 9px 12px;
  font-weight: 850;
  cursor: pointer;
}

.container,
.narrow {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 48px));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 38, 46, .18);
}

.btn.ghost,
.btn.light {
  background: #fff;
  color: var(--deep);
  border-color: var(--line);
}

.adu-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-map {
  display: grid;
  align-content: center;
  gap: 18px;
  background: linear-gradient(145deg, #132b33, #213b38);
  color: #fff;
  padding: clamp(30px, 5vw, 58px);
}

.eyebrow {
  margin: 0;
  color: #c9d4c6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-map h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-map p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.parcel {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.parcel span {
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  padding: 10px;
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 820;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 12px;
  background: rgba(18, 38, 46, .86);
  color: #fff;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.floating-note strong {
  font-size: 17px;
}

.floating-note p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section h2 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: clamp(30px, 3.4vw, 43px);
  line-height: 1.12;
  text-wrap: balance;
}

.section h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 20px;
  line-height: 1.24;
}

.section-sub {
  max-width: 900px;
  margin: 0 0 28px;
  color: var(--muted);
}

.center {
  text-align: center;
}

.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7faf5);
}

.dark {
  background: var(--deep);
  color: #fff;
}

.dark h2,
.dark h3 {
  color: #fff;
}

.dark .prose,
.dark .section-sub {
  color: rgba(255, 255, 255, .82);
}

.split {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 28px;
  align-items: start;
}

.prose {
  color: #3d474b;
}

.prose p {
  margin: 0 0 18px;
}

.panel,
.card,
.service-card,
.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 32, 38, .06);
}

.panel {
  padding: 22px;
}

.panel ul {
  margin: 10px 0 0 18px;
  padding: 0;
  color: #465157;
}

.panel li {
  margin-bottom: 8px;
}

.stats-grid,
.card-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.stat,
.card {
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.22;
}

.stat span,
.card p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  overflow: hidden;
}

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

.service-card .pad {
  padding: 18px;
}

.meta {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.step b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.editorial-media {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #26383f;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  background: var(--deep);
  color: #fff;
}

.final-cta h2,
.final-cta .section-sub {
  color: #fff;
}

.footer {
  background: #0e2028;
  color: #fff;
  padding: 44px 24px 94px;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.copyright {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
  padding: 14px 20px;
  font-weight: 850;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .68);
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.sheet {
  position: relative;
  width: min(560px, 94vw);
  max-height: min(88vh, 820px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .30);
  padding: 28px;
}

.sheet h2 {
  margin: 0 34px 8px 0;
  color: var(--deep);
  font-size: 28px;
  line-height: 1.12;
}

.sheet p {
  margin: 0 0 16px;
  color: #53585c;
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 22px;
  cursor: pointer;
}

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

.field {
  display: grid;
  gap: 6px;
  color: #333d45;
  font-size: 12px;
  font-weight: 850;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbc7bd;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 12px;
  font-size: 16px;
  line-height: 1.35;
}

.field select.has-value {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(102, 122, 104, .10);
  transform: translateY(-1px);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0;
  color: #4c5258;
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 2px 0 0;
  flex: 0 0 16px;
}

.error {
  border-color: #9f2d20 !important;
  box-shadow: 0 0 0 3px rgba(159, 45, 32, .12) !important;
}

.form-note {
  margin-top: 10px;
  color: #6b7075;
  font-size: 12px;
}

@media (max-width: 1060px) {
  .adu-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .primary {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
  }

  .primary.active {
    display: flex;
  }

  .primary a {
    width: 100%;
    min-height: 36px;
  }

  .split,
  .editorial {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: calc(100% - 36px);
  }

  .site {
    padding: 14px 18px;
  }

  .adu-hero {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 14px;
  }

  .hero-map {
    padding: 22px;
  }

  .hero-map p {
    font-size: 16px;
  }

  .parcel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .parcel::-webkit-scrollbar {
    display: none;
  }

  .parcel span {
    flex: 0 0 72vw;
    scroll-snap-align: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .floating-note {
    position: static;
    border-radius: 0;
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .cta-row .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .card-grid,
  .faq-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 0 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
  }

  .stats-grid::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar,
  .card-grid::-webkit-scrollbar,
  .faq-grid::-webkit-scrollbar {
    display: none;
  }

  .stats-grid > *,
  .service-grid > *,
  .card-grid > *,
  .faq-grid > * {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .swipe-wrap {
    position: relative;
  }

  .swipe-wrap::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(18, 38, 46, .28), rgba(18, 38, 46, .92));
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .78);
    pointer-events: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .modal {
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
  }

  .sheet {
    width: 100%;
    max-height: 92vh;
    padding: 22px 16px 16px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
