:root {
  color-scheme: light;
  --ink: #182126;
  --muted: #5f6c72;
  --line: #d8e0dd;
  --paper: #fbfcfa;
  --soft: #eef3f0;
  --green: #1f5b4f;
  --gold: #b48332;
  --blue: #27496d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 33, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  backface-visibility: hidden;
  transform: translateZ(0);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 50%;
  background: #050505;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  color: #334047;
  font-size: 14px;
  font-weight: 650;
}

nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: calc(82vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.local-hero {
  min-height: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 28, 31, 0.9), rgba(16, 28, 31, 0.56) 46%, rgba(16, 28, 31, 0.18)),
    url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 110px;
  background: linear-gradient(180deg, rgba(251, 252, 250, 0), var(--paper));
  content: "";
}

.hero-content {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 92px;
  color: var(--white);
}

.local-hero .hero-content {
  width: min(940px, calc(100% - 40px));
  padding: 92px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

.affiliation-line {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

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

.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--gold);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--green);
}

.kakao-link {
  border-color: #f9e000;
  background: #f9e000;
  color: #171717;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 48px 0 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.band,
.process,
.service-grid,
.about-jp,
.buyer-checklist,
.home-value,
.seller-checklist,
.blog-preview,
.blog-article {
  padding: clamp(56px, 8vw, 98px) clamp(20px, 5vw, 64px);
}

.intro,
.areas,
.video-feature,
.buyer-roadmap,
.seller-package,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.intro > p,
.contact p,
.video-feature p,
.buyer-roadmap p,
.home-value p,
.seller-package p,
.about-jp p,
.trust-band p,
.buyer-checklist p,
.faq p,
.seller-checklist p,
.blog-preview p,
.blog-content p,
.blog-content li,
.blog-aside p,
.service-card p,
.process p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 690px;
}

.about-jp {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--paper);
}

.about-photo {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 28, 31, 0.1), rgba(16, 28, 31, 0.24)),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 720px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 13px;
  color: #304046;
  font-weight: 800;
}

.trust-band {
  border-top: 1px solid rgba(216, 224, 221, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.service-card div {
  padding: clamp(24px, 4vw, 38px);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: #2f3b41;
  font-weight: 650;
}

.service-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(56px, 8vw, 98px) clamp(20px, 5vw, 64px);
  background: var(--paper);
}

.local-copy {
  display: grid;
  gap: 22px;
}

.local-copy article,
.local-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.local-copy h2,
.local-copy h3,
.local-copy p,
.local-card h2,
.local-card h3,
.local-card p {
  margin-top: 0;
}

.local-copy p,
.local-card p {
  color: var(--muted);
  font-size: 17px;
}

.local-card {
  position: sticky;
  top: 96px;
}

.local-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #2f3b41;
  font-weight: 650;
}

.buyer-checklist {
  background: var(--paper);
}

.buyer-checklist .section-heading {
  margin-bottom: 34px;
}

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

.buyer-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.buyer-list span {
  color: var(--gold);
  font-weight: 900;
}

.buyer-list p {
  margin: 10px 0 0;
}

.buyer-roadmap {
  align-items: center;
  border-top: 1px solid rgba(216, 224, 221, 0.72);
}

.roadmap-steps {
  display: grid;
  gap: 14px;
}

.roadmap-steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.roadmap-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.roadmap-steps h3,
.roadmap-steps p {
  margin: 0;
}

.seller-package {
  align-items: center;
  border-top: 1px solid rgba(216, 224, 221, 0.72);
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.package-grid,
.checklist-grid,
.area-seo-grid {
  display: grid;
  gap: 16px;
}

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

.package-grid article,
.checklist-grid article,
.area-seo-grid article,
.blog-preview article,
.blog-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.blog-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--paper);
}

.blog-preview article h3 {
  margin-top: 0;
}

.blog-article {
  background: var(--paper);
}

.blog-hero {
  max-width: 980px;
  margin: 0 auto clamp(34px, 6vw, 62px);
}

.blog-hero h1 {
  color: var(--ink);
}

.blog-hero .lead {
  color: var(--muted);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.blog-content h2,
.blog-content p,
.blog-content ul {
  margin: 0;
}

.blog-content h2 {
  margin-top: 14px;
}

.blog-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-aside {
  position: sticky;
  top: 96px;
}

.blog-aside h2 {
  font-size: 26px;
}

.blog-aside ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.package-grid span {
  color: var(--gold);
  font-weight: 900;
}

.home-value {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(24, 33, 38, 0.9), rgba(24, 33, 38, 0.7)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.home-value h2 {
  max-width: 760px;
}

.home-value p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.value-points span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.value-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.value-card p {
  color: var(--muted);
}

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

.contact .button.primary,
.contact .button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--green);
}

.contact .kakao-link {
  border-color: #f9e000;
  background: #f9e000;
  color: #171717;
}

.seller-checklist {
  background: var(--paper);
}

.seller-checklist .section-heading {
  margin-bottom: 34px;
}

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

.video-feature {
  align-items: center;
  border-top: 1px solid rgba(216, 224, 221, 0.72);
}

.top-video {
  border-top: 0;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111a1f;
  box-shadow: var(--shadow);
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.area-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.area-map {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 340px;
  aspect-ratio: 1200 / 620;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d9e8e8;
  box-shadow: var(--shadow);
}

.service-area-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  background: #d9e8e8;
  font-family: inherit;
  outline-offset: 1px;
  touch-action: pan-x pan-y;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-right .leaflet-control {
  margin-right: 12px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 12px;
}

.leaflet-control-zoom {
  margin-top: 12px;
  margin-left: 12px;
  border: 1px solid rgba(22, 39, 44, 0.14);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(16, 33, 38, 0.16);
}

.leaflet-control-zoom a {
  display: block;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.96);
  color: #18323a;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  text-align: center;
}

.leaflet-control-zoom a + a {
  border-top: 1px solid rgba(22, 39, 44, 0.14);
}

.map-open-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 39, 44, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(16, 33, 38, 0.16);
  padding: 9px 12px;
  color: #22628d;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.service-area-marker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content !important;
  height: auto !important;
}

.service-area-marker span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(9, 57, 47, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  padding: 8px 11px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.service-area-marker span::before {
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #e2b458;
  content: "";
  flex: 0 0 auto;
}

.leaflet-control-attribution {
  margin-right: 0;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.78);
  padding: 2px 6px;
  color: #314149;
  font-size: 11px;
}

.leaflet-container img,
.leaflet-container .leaflet-tile {
  display: block;
  max-width: none !important;
  max-height: none !important;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 14px;
  color: #304046;
  font-weight: 750;
}

.area-seo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.area-seo-grid article {
  padding: 20px;
}

.area-seo-grid h3,
.area-seo-grid p {
  margin: 0;
}

.area-seo-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.referral-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
  border: 1px solid rgba(31, 91, 79, 0.24);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.referral-card h3,
.referral-card p {
  margin: 0;
}

.referral-card h3 {
  margin-bottom: 8px;
}

.referral-card .eyebrow {
  margin-bottom: 10px;
}

.referral-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.process {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  min-height: 190px;
  border-left: 4px solid var(--green);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid rgba(216, 224, 221, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(24, 33, 38, 0.08);
}

.faq summary {
  color: #243237;
  font-weight: 850;
  cursor: pointer;
}

.faq details p {
  margin: 12px 0 0;
}

.contact {
  align-items: center;
}

.contact-note {
  max-width: 620px;
  margin-top: 18px;
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: #2e3d43;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6d2;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

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

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-stats,
  .service-grid,
  .about-jp,
  .trust-grid,
  .buyer-list,
  .buyer-roadmap,
  .home-value,
  .seller-package,
  .package-grid,
  .checklist-grid,
  .area-seo-grid,
  .referral-card,
  .steps,
  .intro,
  .areas,
  .video-feature,
  .faq,
  .contact,
  .blog-preview,
  .blog-layout,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .local-card,
  .blog-aside {
    position: static;
  }

  .about-photo {
    min-height: 320px;
  }

  .roadmap-steps article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .roadmap-steps p {
    grid-column: 2;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 28, 31, 0.58), rgba(16, 28, 31, 0.94)),
      url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1200&q=80") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 48px 0 42px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .area-map {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .youtube-frame {
    min-height: 210px;
  }

  .service-area-marker span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .map-open-link {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .site-header,
  .band,
  .process,
  .service-grid,
  .about-jp,
  .buyer-checklist,
  .home-value,
  .seller-checklist,
  .blog-preview,
  .blog-article,
  .local-grid,
  footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
