:root {
  color-scheme: light;
  --ink: #332727;
  --muted: #766766;
  --paper: #fffaf7;
  --soft: #f8ece8;
  --blush: #fde1e9;
  --rose: #e65f92;
  --rose-deep: #ad356a;
  --cream: #f6eadb;
  --deep: #6f2d46;
  --coral: #c85d75;
  --line: #ead8d0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(121, 61, 78, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    system-ui,
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 250, 247, 0.94);
  border-bottom: 1px solid rgba(234, 216, 208, 0.9);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 330px;
}

.brand-logo {
  display: block;
  height: 44px;
  object-fit: contain;
  width: 210px;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

nav {
  display: flex;
  gap: clamp(12px, 2.2vw, 26px);
  font-weight: 700;
}

nav a {
  color: #5f3b47;
  white-space: nowrap;
}

.hero {
  min-height: 78vh;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(111, 45, 70, 0.86) 0%, rgba(173, 53, 106, 0.58) 42%, rgba(255, 250, 247, 0.04) 82%),
    linear-gradient(0deg, rgba(94, 36, 57, 0.14), rgba(94, 36, 57, 0.04));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
  padding: clamp(76px, 12vw, 142px) clamp(20px, 6vw, 82px) 96px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.hero .eyebrow {
  color: #ffd8e4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 670px;
}

.trust-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -44px auto 0;
  max-width: 1080px;
  position: relative;
  width: calc(100% - 40px);
  z-index: 3;
}

.trust-strip div {
  background: var(--white);
  padding: 24px;
}

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

.trust-strip strong {
  color: var(--rose-deep);
  font-size: 1.15rem;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 82px);
  scroll-margin-top: 96px;
}

#top,
#about,
#service,
#process,
#area,
#contact {
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1360px;
}

.intro .section-copy {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.vehicle-gallery {
  min-width: 0;
}

.vehicle-slides {
  display: grid;
  gap: 22px;
  grid-auto-columns: minmax(760px, 82%);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--rose) var(--soft);
}

.vehicle-slides figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.vehicle-slides img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.vehicle-slides figcaption {
  color: var(--rose-deep);
  font-weight: 900;
  padding: 14px 16px 16px;
}

.gallery-help {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 4px 0 0;
  text-align: center;
}

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

.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-grid span {
  color: var(--rose);
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-grid p,
.promise-list,
.steps span,
.service-points span,
.contact p,
address {
  color: var(--muted);
}

.service-band {
  align-items: start;
  background: var(--soft);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.service-band > * {
  min-width: 0;
}

.service-band > div:first-child {
  max-width: 680px;
}

.service-band > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-points {
  display: grid;
  gap: 14px;
}

.service-points article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.service-points strong,
.service-points span {
  display: block;
}

.service-points strong {
  color: var(--rose-deep);
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.fee-guide {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  grid-column: 1 / -1;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
}

.fee-heading {
  margin-bottom: 18px;
}

.fee-heading h3 {
  color: var(--rose-deep);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 0;
}

.fee-heading p:not(.eyebrow),
.fee-note {
  color: var(--muted);
}

.fee-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.fee-table {
  border-collapse: collapse;
  min-width: 860px;
  width: 100%;
}

.fee-table caption {
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fee-table th,
.fee-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
}

.fee-table thead th {
  background: var(--cream);
  color: var(--deep);
  font-weight: 900;
}

.fee-table tbody th {
  background: #fff5f2;
  color: var(--rose-deep);
  font-weight: 900;
}

.fee-table td {
  background: var(--white);
  color: var(--ink);
}

.fee-table strong {
  color: var(--rose-deep);
  font-size: 1.08rem;
}

.fee-amount {
  color: var(--rose-deep);
  font-weight: 900;
  white-space: nowrap;
}

.fee-note {
  border-left: 4px solid var(--rose);
  margin: 16px 0 0;
  padding-left: 12px;
}

.calm-band {
  align-items: start;
  background: linear-gradient(135deg, var(--rose-deep), #8f3c58);
  color: var(--white);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.calm-band .eyebrow {
  color: #ffe1ea;
}

.promise-list {
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.promise-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 0 14px 30px;
  position: relative;
}

.promise-list li::before {
  background: var(--blush);
  border-radius: 99px;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 10px;
}

.process {
  margin: 0 auto;
  max-width: 1180px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.steps li {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px 22px;
  grid-template-columns: 190px 1fr;
  padding: 22px;
}

.steps strong {
  color: var(--rose-deep);
  font-size: 1.1rem;
}

.steps strong::before {
  color: var(--rose);
  content: counter(step, decimal-leading-zero) " ";
  counter-increment: step;
}

.area {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1360px;
}

.area-heading {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(14px, 2vw, 22px);
  width: 100%;
}

.map-image-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.map-image-wrap img {
  display: block;
  height: auto;
  width: 100%;
}

.map-count {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 95, 146, 0.72);
  border-radius: 99px;
  box-shadow: 0 4px 9px rgba(173, 53, 106, 0.12);
  color: var(--rose-deep);
  display: inline-flex;
  line-height: 1.05;
  min-width: 38px;
  padding: 3px 7px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 0);
}

.map-count b {
  font-size: clamp(0.54rem, 0.72vw, 0.7rem);
  white-space: nowrap;
}

.map-count.dobong {
  left: 59.6%;
  top: 17%;
}

.map-count.nowon {
  left: 66.1%;
  top: 21.8%;
}

.map-count.gangbuk {
  left: 55.5%;
  top: 25.5%;
}

.map-count.seongbuk {
  left: 56.1%;
  top: 37.4%;
}

.map-count.jungnang {
  left: 69.3%;
  top: 39.6%;
}

.map-count.jongno {
  left: 50.6%;
  top: 43.7%;
}

.map-count.dongdaemun {
  left: 61.7%;
  top: 44.2%;
}

.map-count.jung {
  left: 52.5%;
  top: 51.5%;
}

.map-count.seongdong {
  left: 60.4%;
  top: 53.8%;
}

.map-count.gwangjin {
  left: 67.8%;
  top: 57%;
}

.map-count.gangnam {
  left: 61.7%;
  top: 70.9%;
}

.map-count.songpa {
  left: 71.2%;
  top: 68.3%;
}

.contact {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

address {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-style: normal;
  gap: 10px;
  padding: 28px;
}

.phone {
  color: var(--rose-deep);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
}

footer {
  align-items: center;
  background: #5a3040;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 82px);
}

footer strong {
  color: var(--white);
}

footer a {
  color: var(--white);
  font-weight: 800;
}

.policy-page {
  background: var(--paper);
}

.policy {
  margin: 0 auto;
  max-width: 920px;
}

.policy h1 {
  color: var(--rose-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.policy h2 {
  border-top: 1px solid var(--line);
  color: var(--rose-deep);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 34px 0 10px;
  padding-top: 24px;
}

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 18px 8px;
  }

  .section {
    scroll-margin-top: 112px;
  }

  #top,
  #about,
  #service,
  #process,
  #area,
  #contact {
    scroll-margin-top: 112px;
  }

  nav {
    border-top: 1px solid var(--line);
    display: flex;
    font-size: 0.92rem;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-top: 8px;
    scrollbar-width: none;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

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

  nav a {
    background: rgba(253, 225, 233, 0.72);
    border: 1px solid rgba(234, 216, 208, 0.92);
    border-radius: 999px;
    flex: 0 0 auto;
    line-height: 1.2;
    padding: 7px 12px;
  }

  .hero {
    min-height: calc(100svh - 88px);
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(111, 45, 70, 0.92), rgba(173, 53, 106, 0.66)),
      linear-gradient(0deg, rgba(111, 45, 70, 0.18), rgba(111, 45, 70, 0.18));
  }

  .hero-content {
    max-width: none;
    padding: 58px 22px 76px;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.35rem);
  }

  .trust-strip,
  .intro,
  .feature-grid,
  .service-band,
  .calm-band,
  .area,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    width: 100%;
  }

  .vehicle-slides {
    grid-auto-columns: minmax(560px, 88%);
  }

  .trust-strip div,
  .feature-grid article,
  .service-points article,
  .steps li,
  address {
    padding: 20px;
  }

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

@media (max-width: 520px) {
  html {
    scroll-padding-top: 112px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  .brand-logo {
    height: 34px;
    width: 164px;
  }

  .brand strong {
    font-size: 1rem;
  }

  nav {
    font-size: 0.98rem;
  }

  nav a {
    padding: 8px 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - 86px);
  }

  .section {
    scroll-margin-top: 112px;
  }

  #top,
  #about,
  #service,
  #process,
  #area,
  #contact {
    scroll-margin-top: 112px;
  }

  .hero-content {
    padding: 44px 18px 62px;
  }

  .hero .eyebrow {
    font-size: 0.86rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fee-guide {
    padding: 20px 16px;
  }

  .fee-table {
    min-width: 760px;
  }

  .vehicle-slides {
    gap: 14px;
    grid-auto-columns: minmax(280px, 92%);
  }

  .map-card {
    overflow-x: auto;
  }

  .map-image-wrap {
    min-width: 720px;
  }

  .phone {
    font-size: clamp(1.45rem, 8vw, 2rem);
    overflow-wrap: anywhere;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.9rem;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  nav {
    font-size: 0.9rem;
  }
}
