:root {
  --ink: #1f2926;
  --muted: #68736f;
  --paper: #f6f3ed;
  --card: #ffffff;
  --line: #ded8cd;
  --accent: #df6b3f;
  --accent-dark: #a84428;
  --green: #526f62;
  --green-soft: #e8efea;
  --sand: #f1e4d3;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #e8e4dc;
}
body {
  margin: 0;
  color: var(--ink);
  background: #e8e4dc;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.app {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 40px rgba(37, 43, 39, .12);
}
.topbar, .detail-top {
  min-height: 78px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 850; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; background: var(--green);
  font-size: 15px; font-weight: 900;
}
.logo em { color: var(--accent); font-style: normal; }
.menu-btn, .back-btn, .menu-close {
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); background: var(--green-soft);
  font-size: 24px; cursor: pointer;
}
.menu-drawer {
  position: fixed; z-index: 50;
  top: 0; bottom: 0; left: 50%;
  width: min(100vw, 480px);
  transform: translateX(-50%);
  display: none; background: rgba(24, 31, 28, .5);
}
.menu-drawer.show { display: flex; justify-content: flex-end; }
.menu-panel {
  width: min(84%, 360px);
  height: 100vh;
  height: 100dvh;
  margin-left: auto;
  padding: max(18px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -18px 0 48px rgba(24, 31, 28, .16);
}
.menu-panel-head { display: flex; justify-content: flex-end; margin-bottom: clamp(16px, 4vh, 28px); }
.menu-panel nav { display: grid; }
.menu-panel nav a {
  padding: clamp(15px, 3vh, 20px) 4px; border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 4.4vw, 20px); font-weight: 750;
}
@media (max-width: 360px) {
  .menu-panel { width: 88%; padding-inline: 16px; }
}
.hero {
  position: relative;
  min-height: 470px;
  padding: 42px 24px 112px;
  display: flex; flex-direction: column; justify-content: flex-start;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 25, .52), rgba(20, 28, 25, .84));
}
.hero > * { position: relative; }
.eyebrow, .label {
  width: max-content; max-width: 100%;
  padding: 9px 13px; border-radius: 999px;
  font-size: 13px; font-weight: 850; letter-spacing: .02em;
}
.hero .eyebrow { border: 1px solid rgba(255,255,255,.58); }
.hero h1 { margin: 24px 0 16px; font-size: clamp(36px, 9vw, 46px); line-height: 1.16; letter-spacing: -.045em; }
.hero h1 strong { color: #ff9a70; }
.hero-copy { margin: 0; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.7; }
.consult-card {
  margin: -92px 18px 20px;
  position: relative; z-index: 3;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(35, 45, 40, .15);
}
.consult-card h2, .section h2, .detail-card h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.consult-card p, .section-head p { color: var(--muted); line-height: 1.65; }
.actions { display: grid; grid-template-columns: 1.25fr 1fr; gap: 10px; margin-top: 18px; }
.btn {
  min-height: 54px; padding: 0 13px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--accent); border-radius: 18px;
  color: var(--accent-dark); background: #fff;
  font-size: 16px; font-weight: 850; white-space: nowrap;
}
.btn.primary { color: #fff; background: var(--accent); }
.content { padding: 0; }
.detail-stack { padding: 0; }
.section, .detail-card {
  margin: 0;
  padding: 38px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.section + .section,
.detail-card + .detail-card { border-top: 0; }
.content > .section:nth-of-type(odd) { background: #fff; }
.content > .section:nth-of-type(even) { background: #f1eee7; }
.content > .service-section { background: #e9f0eb; }
.content > .faq { background: #edf1ee; }
.content > #region { background: #f4e9dc; }
.content > #consult { background: #fff; }
.detail-stack > .detail-card:nth-of-type(odd) { background: #fff; }
.detail-stack > .detail-card:nth-of-type(even) { background: #f1eee7; }
.section-head { margin-bottom: 22px; }
.section-head p { margin: 8px 0 0; }
.service-section {
  background: #e9f0eb;
  border: 0;
}
.section-kicker {
  margin-bottom: 8px; color: var(--green);
  font-size: 12px; font-weight: 900; letter-spacing: .1em;
}
.service-list { display: grid; gap: 12px; }
.service-card {
  padding: 18px 0;
  display: grid; grid-template-columns: 122px 1fr; gap: 16px;
  align-items: center;
  border-radius: 0; background: transparent;
  box-shadow: none;
}
.service-card + .service-card { border-top: 1px solid var(--line); }
.service-card img { width: 122px; height: 146px; border-radius: 16px; object-fit: cover; }
.service-card .label { padding: 6px 10px; color: var(--green); background: var(--green-soft); }
.service-card h3 { margin: 10px 0 6px; font-size: 19px; line-height: 1.35; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.more { display: inline-block; margin-top: 10px; color: var(--accent-dark); font-size: 14px; font-weight: 850; }
.case-list { display: grid; }
.case-row {
  padding: 16px 0;
  display: grid; grid-template-columns: 96px 1fr; gap: 14px;
  border-bottom: 1px solid var(--line);
}
.case-row:last-child { border-bottom: 0; }
.case-row img { width: 96px; height: 96px; border-radius: 18px; object-fit: cover; }
.case-row b { display: block; margin-bottom: 7px; font-size: 17px; line-height: 1.4; }
.case-row span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.process-item {
  padding: 18px 0;
  display: grid; grid-template-columns: 44px 1fr; gap: 12px;
  align-items: center;
  border-radius: 0; background: transparent;
  border-bottom: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 0; }
.process-item b {
  width: 40px; height: 40px; margin: 0;
  display: grid; place-items: center;
  color: #fff; background: var(--accent);
  border-radius: 50%; font-size: 13px;
}
.process-item span { font-size: 16px; font-weight: 750; line-height: 1.45; }
.process-grid.compact { margin-top: 20px; }
.related-services { display: grid; }
.related-service-link {
  position: relative;
  padding: 18px 30px 18px 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.related-service-link > img {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  object-fit: cover;
}
.related-service-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.related-service-link b { font-size: 17px; }
.related-service-copy > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.related-service-link i {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
  transform: translateY(-50%);
}
.info-list { display: grid; gap: 10px; }
.info-list article { padding: 18px 0; border-radius: 0; background: transparent; border-bottom: 1px solid var(--line); }
.info-list article:last-child { border-bottom: 0; }
.info-list b { color: var(--green); }
.info-list p { margin: 6px 0 0; color: var(--muted); line-height: 1.6; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 18px 0; font-weight: 800; cursor: pointer; }
.faq details p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.regions { display: flex; flex-wrap: wrap; gap: 9px; }
.region { padding: 11px 15px; border-radius: 999px; background: #f2efe9; color: #55605c; font-size: 14px; }
.coverage { margin: 0 0 18px; color: var(--accent-dark); font-size: 23px; line-height: 1.4; }
.coverage strong {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px 6px;
  color: var(--accent-dark);
  background: linear-gradient(110deg, #ffe2d3 0%, #fff0d2 100%);
  border: 1px solid rgba(223, 107, 63, .3);
  border-radius: 10px;
  box-shadow: inset 0 -2px 0 rgba(223, 107, 63, .1);
}
.region-guide .coverage { margin-bottom: 22px; }
.more-regions { margin-top: 9px; }
.more-regions[hidden] { display: none; }
.all-regions-btn { margin-top: 28px; }
.sub-hero {
  padding: 38px 24px;
  color: #fff; background: var(--green);
}
.sub-hero.coral { background: var(--accent); }
.crumb { display: flex; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: 13px; }
.sub-hero .label { border: 1px solid rgba(255,255,255,.5); }
.sub-hero h1 { margin: 16px 0 10px; font-size: 32px; line-height: 1.28; letter-spacing: -.04em; }
.sub-hero p { margin: 0; color: rgba(255,255,255,.84); line-height: 1.7; }
.contact-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.2), transparent 27%),
    linear-gradient(145deg, #df6b3f 0%, #c94f31 100%);
}
.contact-hero::after {
  content: "";
  position: absolute;
  right: -78px; bottom: -95px;
  width: 230px; height: 230px;
  border: 42px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.contact-hero > * { position: relative; z-index: 1; }
.contact-phone {
  width: 226px;
  margin: 28px auto 16px;
  padding: 9px;
  border-radius: 30px;
  background: #1f2926;
  box-shadow: 0 20px 38px rgba(87, 33, 21, .3);
  transform: rotate(1.5deg);
}
.phone-speaker {
  width: 48px; height: 4px;
  margin: 2px auto 7px;
  border-radius: 999px;
  background: #66706d;
}
.phone-screen {
  padding: 12px 10px 10px;
  color: var(--ink);
  background: #f8f6f1;
  border-radius: 21px;
}
.phone-chat-head { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid #e2ddd3; }
.phone-chat-head span:nth-child(2) { display: grid; line-height: 1.15; }
.phone-chat-head b { font-size: 11px; }
.phone-chat-head small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.phone-chat-head i { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: #58a36c; }
.phone-avatar {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: #fff; background: var(--green);
  border-radius: 9px;
  font-size: 8px; font-weight: 900;
}
.phone-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 12px; }
.phone-photo-row span {
  aspect-ratio: 1;
  padding: 5px;
  display: flex; align-items: flex-end;
  color: #fff;
  border-radius: 8px;
  font-size: 7px; font-weight: 800;
  background:
    linear-gradient(0deg, rgba(31,41,38,.65), transparent 70%),
    linear-gradient(135deg, #9bb2a4, #d6c5ac);
}
.phone-photo-row span:nth-child(2) { background: linear-gradient(0deg, rgba(31,41,38,.65), transparent 70%), linear-gradient(135deg, #d5a37e, #eee0cb); }
.phone-photo-row span:nth-child(3) { background: linear-gradient(0deg, rgba(31,41,38,.65), transparent 70%), linear-gradient(135deg, #9da7ad, #ddd8ce); }
.phone-message, .phone-reply { width: fit-content; max-width: 82%; margin-top: 9px; padding: 7px 9px; border-radius: 10px; font-size: 8px; line-height: 1.45; }
.phone-message { margin-left: auto; color: #fff; background: var(--accent); border-bottom-right-radius: 3px; }
.phone-reply { background: #e5ece7; border-bottom-left-radius: 3px; }
.phone-input { margin-top: 12px; padding: 7px 8px; display: flex; align-items: center; gap: 7px; color: #8a928f; background: #fff; border: 1px solid #e5dfd5; border-radius: 999px; font-size: 7px; }
.phone-input b { margin-left: auto; color: var(--accent); }
.contact-hero-note {
  display: grid;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.contact-hero-note b { font-size: 14px; }
.contact-hero-note span { margin-top: 4px; color: rgba(255,255,255,.78); font-size: 11px; }
.detail-stack { padding-top: 2px; }
.case-intro p, .detail-card > p, .step-copy { color: var(--muted); line-height: 1.75; }
.detail-photo { margin: 18px 0; overflow: hidden; border-radius: 22px; background: #eee; }
.detail-photo img { width: 100%; height: min(76vw, 350px); object-fit: cover; }
.step-title { display: flex; align-items: center; gap: 12px; }
.step-no {
  flex: 0 0 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: var(--accent); font-weight: 900;
}
.related-grid { display: grid; gap: 10px; }
.related-card {
  padding: 14px 0; display: grid; grid-template-columns: 96px 1fr; gap: 14px;
  align-items: center; border: 0; border-radius: 0;
}
.related-card + .related-card { border-top: 1px solid var(--line); }
.related-card img { width: 96px; height: 96px; border-radius: 14px; object-fit: cover; }
.related-card b { font-size: 16px; line-height: 1.45; }
.scope { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.9; }
footer { padding: 34px 24px 110px; color: #e9eee9; background: #22302b; }
.footer-logo { margin-bottom: 12px; font-size: 19px; font-weight: 900; }
.footer-meta { color: #bbc6bf; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 18px; color: #d6ded9; font-size: 13px; }
.sticky {
  position: fixed; z-index: 30; left: 50%; bottom: 0;
  width: min(100%, 480px); padding: 10px 14px;
  transform: translateX(-50%);
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 9px;
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.sticky.hidden { display: none; }
.sticky .btn { min-height: 52px; }

@media (max-width: 380px) {
  .logo { gap: 7px; font-size: 17px; }
  .logo-mark { width: 38px; height: 38px; }
  .hero { min-height: 450px; padding: 34px 20px 106px; }
  .hero h1 { font-size: 34px; }
  .consult-card { margin-inline: 12px; padding: 21px 18px; }
  .actions, .sticky { grid-template-columns: 1.15fr 1fr; }
  .btn { padding-inline: 8px; font-size: 14px; }
  .section, .detail-card { padding-inline: 16px; }
  .service-card { grid-template-columns: 108px 1fr; gap: 13px; }
  .service-card img { width: 108px; height: 136px; }
  .related-service-link { grid-template-columns: 82px 1fr; gap: 12px; }
  .related-service-link > img { width: 82px; height: 82px; }
}
