:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #5d6864;
  --line: #d7ddda;
  --paper: #ffffff;
  --soft: #f3f6f4;
  --forest: #155f52;
  --forest-dark: #0d4138;
  --amber: #d98d2b;
  --amber-dark: #a96210;
  --danger: #b44734;
  --shadow: 0 14px 36px rgba(15, 40, 33, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(217, 141, 43, 0.7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 76px;
  border-bottom: 1px solid rgba(215, 221, 218, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 174px;
  gap: 10px;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--forest);
  font-size: 19px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 20px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.header-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--forest);
  font-size: 15px;
  font-weight: 850;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-button span {
  margin: 4px 0;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 76px));
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background: rgba(10, 24, 20, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 82px 0 64px;
}

.hero-copy-wrap {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #dfeae6;
  font-size: 15px;
  font-weight: 850;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.3vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--amber-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(17, 33, 28, 0.42);
}

.button-secondary:hover {
  background: rgba(17, 33, 28, 0.72);
}

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

.button-dark:hover {
  background: var(--forest-dark);
}

.button-light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero-routing {
  display: grid;
  max-width: 820px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(11, 30, 25, 0.76);
  grid-template-columns: 1fr 1fr;
}

.hero-routing > div {
  min-width: 0;
  padding: 18px 20px;
}

.hero-routing > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-routing strong,
.hero-routing span {
  display: block;
}

.hero-routing strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.hero-routing span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-width: 0;
  padding: 24px 20px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 15px;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

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

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

.section-heading {
  display: grid;
  margin-bottom: 40px;
  gap: 14px;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.62fr);
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.intro-grid h2,
.content-block h2,
.route-panel h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

.section-heading p,
.intro-grid > div > p,
.content-block > p {
  margin: 5px 0 0;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.kicker {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.section-dark .kicker {
  color: #8ed1c4;
}

.route-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.route-panel {
  min-width: 0;
  padding: 42px 44px 42px 0;
}

.route-panel + .route-panel {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.route-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: #fff;
  background: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.route-label.partner {
  color: var(--ink);
  background: #f3bc70;
}

.route-panel h3 {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.3;
}

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

.route-panel ul,
.check-list,
.plain-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.route-panel li,
.check-list li,
.plain-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-top: 1px solid var(--line);
}

.route-panel li::before,
.check-list li::before,
.plain-list li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  color: var(--forest);
  content: "✓";
  font-weight: 900;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 240px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 220px 1fr auto;
}

.service-row img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.service-row-copy {
  align-self: center;
  min-width: 0;
  padding: 34px 40px;
}

.service-row-copy small {
  color: var(--forest);
  font-weight: 900;
}

.service-row-copy h3 {
  margin: 7px 0 8px;
  font-size: 25px;
  line-height: 1.3;
}

.service-row-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.service-row-link {
  display: inline-flex;
  width: 130px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  color: var(--forest);
  font-size: 15px;
  font-weight: 900;
}

.service-row:hover .service-row-link {
  background: var(--soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.case-item {
  position: relative;
  grid-column: span 6;
  min-height: 390px;
  overflow: hidden;
  border-radius: 6px;
  background: #d8dedb;
}

.case-item:nth-child(3),
.case-item:nth-child(4) {
  grid-column: span 6;
  min-height: 300px;
}

.case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.case-item:hover img {
  transform: scale(1.02);
}

.case-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 22px 18px;
  background: rgba(13, 28, 24, 0.78);
}

.case-caption strong,
.case-caption span {
  display: block;
}

.case-caption strong {
  font-size: 18px;
}

.case-caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.disclosure {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.region-groups {
  display: grid;
  gap: 38px;
}

.region-group {
  display: grid;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  gap: 24px;
  grid-template-columns: 220px 1fr;
}

.region-group h3 {
  margin: 0;
  font-size: 20px;
}

.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-links a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.region-links a:hover {
  color: var(--ink);
  background: #fff;
}

.steps {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.step {
  min-width: 0;
  padding: 30px 24px;
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 8px;
  color: var(--forest);
  content: "+";
  font-size: 28px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 920px;
  margin: 0;
  padding: 0 40px 25px 0;
  color: var(--muted);
}

.cta-band {
  padding: 70px 0;
  color: #fff;
  background: var(--forest);
}

.cta-inner {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr auto;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-buttons .button-primary {
  color: var(--ink);
  background: #fff;
}

.cta-buttons .button-secondary {
  background: transparent;
}

.site-footer {
  padding: 58px 0 108px;
  color: rgba(255, 255, 255, 0.78);
  background: #101714;
}

.footer-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0;
  color: #fff;
}

.footer-grid h2 {
  font-size: 24px;
}

.footer-grid h3 {
  font-size: 15px;
}

.footer-grid p {
  margin: 13px 0 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  margin-top: 14px;
  gap: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-notice {
  padding-top: 28px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.contact-dock {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
  grid-template-columns: repeat(4, 1fr);
}

.contact-dock a {
  display: grid;
  width: 78px;
  min-height: 62px;
  place-items: center;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-dock a + a {
  border-left: 1px solid var(--line);
}

.contact-dock a:first-child {
  color: #fff;
  background: var(--forest);
}

.contact-dock strong {
  color: inherit;
  font-size: 14px;
}

.subhero {
  min-height: 560px;
}

.subhero .hero-content {
  padding-top: 110px;
}

.route-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  margin-bottom: 18px;
  border-radius: 5px;
  color: #fff;
  background: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.route-status.partner {
  color: var(--ink);
  background: #f3bc70;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.7fr);
}

.fact-table {
  border-top: 2px solid var(--ink);
}

.fact-row {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
  grid-template-columns: 115px 1fr;
}

.fact-row dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.fact-row dd {
  margin: 0;
  font-weight: 700;
}

.notice-box {
  padding: 22px 24px;
  border-left: 4px solid var(--amber);
  background: #fff7ec;
}

.notice-box strong {
  display: block;
  margin-bottom: 6px;
}

.notice-box p {
  margin: 0;
  color: #5e4a31;
  font-size: 14px;
}

.split-content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.content-block h3 {
  margin: 0 0 16px;
  font-size: 25px;
}

.photo-guide {
  display: grid;
  align-items: center;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  gap: 30px;
  grid-template-columns: 1fr auto;
}

.photo-guide h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

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

.region-directory {
  border-top: 1px solid var(--line);
}

.region-directory-group {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 25px;
  grid-template-columns: 210px 1fr;
}

.region-directory-group h3 {
  margin: 0;
  font-size: 20px;
}

.region-directory-links {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.region-directory-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.region-directory-links a::after {
  color: var(--forest);
  content: "›";
  font-size: 20px;
}

.region-directory-links a:hover {
  border-color: var(--forest);
}

.service-mini-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.service-mini {
  min-width: 0;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-mini:nth-child(4n) {
  border-right: 0;
}

.service-mini small {
  color: var(--forest);
  font-weight: 900;
}

.service-mini h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

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

.service-mini:hover {
  background: var(--soft);
}

.legal-copy {
  max-width: 840px;
}

.legal-copy h2 {
  margin: 45px 0 12px;
  font-size: 24px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  padding-left: 21px;
}

.not-found {
  display: grid;
  min-height: 70svh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 110px);
  line-height: 1;
}

.not-found h2 {
  margin: 18px 0 0;
  font-size: 28px;
}

.not-found p {
  margin: 12px 0 26px;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 20px 110px;
    overflow: auto;
    color: #fff;
    background: var(--ink);
  }

  .mobile-menu[data-open="true"] {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-menu nav a {
    padding: 18px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 800;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 20px;
  }

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

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

  .service-mini:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .service-mini:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .container,
  .hero-content {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .subhero {
    min-height: 640px;
  }

  .hero-content,
  .subhero .hero-content {
    padding: 70px 0 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 55px);
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-routing {
    grid-template-columns: 1fr;
  }

  .hero-routing > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

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

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }

  .section-heading,
  .intro-grid,
  .split-content,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .route-panel,
  .route-panel + .route-panel {
    padding: 32px 0;
  }

  .route-panel + .route-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .service-row img {
    min-height: 195px;
  }

  .service-row-copy {
    padding: 22px 18px;
  }

  .service-row-copy h3 {
    font-size: 18px;
  }

  .service-row-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .service-row-link {
    display: none;
  }

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

  .case-item,
  .case-item:nth-child(3),
  .case-item:nth-child(4) {
    min-height: 320px;
    grid-column: auto;
  }

  .region-group,
  .region-directory-group {
    grid-template-columns: 1fr;
  }

  .region-directory-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .step:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .photo-guide {
    grid-template-columns: 1fr;
  }

  .photo-guide .button {
    width: 100%;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-dock {
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-dock a {
    width: auto;
    min-height: 68px;
  }

  .site-footer {
    padding-bottom: 54px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div + div,
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .service-row-copy {
    padding: 18px 14px;
  }

  .service-row-copy small {
    font-size: 11px;
  }

  .service-row-copy h3 {
    font-size: 16px;
  }

  .region-directory-links,
  .steps,
  .service-mini-grid,
  .cta-buttons {
    grid-template-columns: 1fr;
  }

  .step + .step,
  .step:nth-child(3),
  .step:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-mini,
  .service-mini:nth-child(2n),
  .service-mini:nth-child(4n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
