:root {
  --ink: #071d1c;
  --ink-2: #0d2b28;
  --paper: #eee9dc;
  --paper-2: #e4ddcc;
  --paper-3: #f7f3e9;
  --text: #102522;
  --muted: #61706b;
  --line: rgba(16, 37, 34, .18);
  --light-line: rgba(238, 233, 220, .2);
  --accent: #ff765f;
  --accent-deep: #d85340;
  --brass: #c7a76a;
  --mint: #9bc5b8;
  --display: "Gowun Batang", "Nanum Myeongjo", Georgia, serif;
  --sans: "Manrope", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(22px, 5vw, 78px);
  --section: clamp(86px, 10vw, 156px);
  --mx: 70%;
  --my: 18%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
p, h1, h2, h3 { margin: 0; }
ul { margin: 0; padding: 0; }
::selection { color: var(--paper-3); background: var(--accent-deep); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.naver-carousel-dom {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stage {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background:
    radial-gradient(900px circle at var(--mx) var(--my), rgba(65, 129, 112, .28), transparent 58%),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .045) 50%, transparent 50.2%),
    var(--ink);
}
.stage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.frame {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 90px rgba(0,0,0,.28);
  overflow: clip;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 120;
  background: rgba(255,255,255,.06);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--brass));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.rail {
  position: fixed;
  z-index: 20;
  color: rgba(238,233,220,.7);
  font: 600 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.rail--left {
  left: max(14px, calc((100vw - 1440px)/2 - 38px));
  top: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}
.rail--left i { width: 1px; height: 34px; background: rgba(238,233,220,.28); }
.rail--right {
  right: max(11px, calc((100vw - 1440px)/2 - 44px));
  top: 50%;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}
.rail-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 58px;
  border: 1px solid rgba(238,233,220,.2);
  background: rgba(7,29,28,.62);
  backdrop-filter: blur(10px);
  transition: color .3s, background .3s, transform .3s;
}
.rail-btn b { color: var(--accent); font-size: 16px; }
.rail-btn span { font-size: 8px; letter-spacing: .08em; }
.rail-btn:hover { color: var(--ink); background: var(--paper); transform: translateX(-4px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 var(--gutter);
  color: var(--paper-3);
  background: rgba(7,29,28,.91);
  border-bottom: 1px solid rgba(238,233,220,.12);
  backdrop-filter: blur(18px) saturate(120%);
}
.brand { justify-self: start; display: inline-flex; }
.brand img { width: 168px; height: 34px; }
.site-header nav { display: flex; gap: clamp(18px, 2.7vw, 40px); }
.site-header nav a {
  position: relative;
  padding: 28px 0 24px;
  color: rgba(247,243,233,.72);
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: var(--accent);
  transition: right .35s cubic-bezier(.2,.8,.2,1);
}
.site-header nav a:hover { color: #fff; }
.site-header nav a:hover::after { right: 0; }
.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(238,233,220,.26);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .25s, color .25s;
}
.header-call span { color: var(--accent); font-size: 10px; letter-spacing: .16em; }
.header-call:hover { color: var(--ink); background: var(--paper); }

main > section { position: relative; padding: var(--section) var(--gutter); scroll-margin-top: 82px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  grid-template-rows: auto auto auto auto 1fr;
  gap: 24px 54px;
  min-height: min(820px, calc(100vh - 82px));
  color: var(--paper-3);
  background:
    radial-gradient(circle at 24% 16%, rgba(155,197,184,.13), transparent 28%),
    linear-gradient(135deg, var(--ink), #0a2522 60%, #061514);
  overflow: hidden;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(238,233,220,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(238,233,220,.025), 0 0 0 34px rgba(238,233,220,.018);
}
.hero-thai {
  position: absolute;
  left: -20px;
  top: 44%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,233,220,.12);
  font: 600 clamp(52px, 8vw, 128px)/1 var(--sans);
  letter-spacing: -.04em;
  white-space: nowrap;
  transform: rotate(-90deg) translate(-50%, 0);
  transform-origin: left top;
}
.hero > .eyebrow, .page-hero > .eyebrow { align-self: end; grid-column: 1; }
.hero h1, .page-hero h1 {
  position: relative;
  z-index: 2;
  grid-column: 1;
  color: var(--paper-3);
  font: 400 clamp(52px, 6.2vw, 92px)/1.14 var(--display);
  letter-spacing: -.055em;
  text-wrap: balance;
  word-break: keep-all;
}
.page-hero h1 { font-size: clamp(44px, 4.1vw, 60px); }
.hero h1 .ln, .page-hero h1 .ln { display: block; }
.hero h1 em, .page-hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: 590px;
  color: rgba(247,243,233,.66);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.85;
  text-wrap: pretty;
}
.hero-actions { position: relative; z-index: 3; grid-column: 1; display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .28s, background .28s, border .28s, transform .28s;
}
.btn::after { content: "↗"; margin-left: 16px; font-size: 15px; }
.btn--gold { color: var(--ink); background: var(--accent); }
.btn--gold:hover { color: var(--paper-3); background: var(--accent-deep); }
.btn--ghost { color: var(--paper-3); border-color: rgba(238,233,220,.32); }
.btn--ghost:hover { color: var(--ink); background: var(--paper); }
.hero-kws { grid-column: 1; align-self: end; display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 24px; }
.hero-kws span { color: rgba(247,243,233,.52); font-size: 11px; letter-spacing: .08em; }
.hero-kws span::before { content: "+"; color: var(--accent); margin-right: 7px; }
.hero-figure {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 6;
  align-self: stretch;
  min-height: 570px;
  margin: 0;
  clip-path: ellipse(45% 49% at 52% 50%);
  overflow: hidden;
  isolation: isolate;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,29,28,.06), rgba(7,29,28,.42));
  pointer-events: none;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.hero-note {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 9%;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 17px 20px;
  color: var(--ink);
  background: rgba(247,243,233,.92);
  border-left: 4px solid var(--accent);
  backdrop-filter: blur(8px);
}
.hero-note strong { font-size: 11px; letter-spacing: .12em; }
.hero-note span { font-size: 12px; }

.page-hero { min-height: 700px; padding-top: clamp(100px, 10vw, 150px); }
.page-hero .hero-figure { min-height: 500px; }
.page-hero .hero-actions { align-self: start; }
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 50px;
  padding: 0 var(--gutter);
  color: var(--muted);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .02em;
}
.crumb a:hover { color: var(--accent-deep); }
.crumb b { color: var(--text); }

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
  border-block: 1px solid rgba(7,29,28,.35);
  font: 600 11px/1 var(--sans);
  letter-spacing: .13em;
  white-space: nowrap;
}
.marquee-inner { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { display: block; padding: 17px 20px; }
.marquee i { margin: 0 20px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { position: relative; display: grid; gap: 8px; min-height: 210px; padding: 35px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat::before { content: "0" counter(item); position: absolute; top: 20px; right: 20px; color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.stat:nth-child(1)::before { content: "01"; }
.stat:nth-child(2)::before { content: "02"; }
.stat:nth-child(3)::before { content: "03"; }
.stat:nth-child(4)::before { content: "04"; }
.stat b { align-self: end; color: var(--text); font: 400 clamp(42px, 5vw, 70px)/1 var(--display); letter-spacing: -.06em; }
.stat small { color: var(--accent-deep); font: 600 12px/1 var(--sans); margin-left: 4px; letter-spacing: 0; }
.stat span { color: var(--muted); font-size: 12px; }

.sec-head { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr); gap: 18px 60px; align-items: end; margin-bottom: clamp(42px, 6vw, 82px); }
.sec-head .eyebrow { grid-column: 1; }
.sec-head h2 {
  grid-column: 1;
  color: var(--text);
  font: 400 clamp(38px, 4.6vw, 62px)/1.18 var(--display);
  letter-spacing: -.05em;
  text-wrap: balance;
}
.sec-head p { grid-column: 2; grid-row: 1 / 3; align-self: end; max-width: 560px; color: var(--muted); font-size: 15px; }
.scroll-cue { display: none; }

.area-slider { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.area-card {
  position: relative;
  grid-column: span 5;
  height: clamp(330px, 34vw, 480px);
  color: #fff;
  background: var(--ink-2);
  overflow: hidden;
  transform-style: preserve-3d;
}
.area-card:nth-child(4n+1), .area-card:nth-child(4n+4) { grid-column: span 7; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .6s; }
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(7,29,28,.82)); }
.area-card figcaption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 25px; display: grid; gap: 3px; transform: translateZ(22px); }
.area-card figcaption strong { font: 700 clamp(23px, 2.4vw, 36px)/1.25 var(--display); letter-spacing: -.035em; }
.area-card figcaption em { color: rgba(255,255,255,.66); font-style: normal; font-size: 11px; letter-spacing: .08em; }
.chip-live { position: absolute; z-index: 3; top: 18px; left: 18px; padding: 6px 9px; color: var(--ink); background: var(--paper-3); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.chip-live::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: #24a271; box-shadow: 0 0 0 4px rgba(36,162,113,.16); vertical-align: 1px; }
.area-card:hover img { transform: scale(1.075); filter: saturate(.82) contrast(1.05); }

#price { color: var(--paper-3); background: var(--ink); }
#price .sec-head h2 { color: var(--paper-3); }
#price .sec-head p { color: rgba(247,243,233,.56); }
#price .eyebrow { color: var(--accent); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--light-line); }
.price-card { position: relative; min-height: 410px; padding: clamp(28px, 4vw, 54px); border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); overflow: hidden; transition: background .35s, color .35s; }
.price-card:nth-child(2n) { border-right: 0; }
.price-card:nth-last-child(-n+2) { border-bottom: 0; }
.price-card > i { display: block; margin-bottom: 50px; color: var(--accent); font: 600 12px/1 var(--sans); letter-spacing: .18em; }
.price-card h3 { font: 400 clamp(28px, 3vw, 46px)/1.2 var(--display); letter-spacing: -.04em; }
.price-card > p { max-width: 430px; margin-top: 14px; color: rgba(247,243,233,.55); font-size: 13px; }
.price-lines { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--light-line); }
.price-lines span { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--light-line); }
.price-lines b { color: rgba(247,243,233,.52); font-size: 11px; font-weight: 500; }
.price-lines strong { font-size: 13px; font-weight: 600; }
.price-card:hover { color: var(--ink); background: var(--accent); }
.price-card:hover > i, .price-card:hover > p, .price-card:hover .price-lines b { color: var(--ink); }
.price-card:hover .price-lines, .price-card:hover .price-lines span { border-color: rgba(7,29,28,.22); }
.price-note { margin-top: 20px; color: rgba(247,243,233,.46); font-size: 11px; text-align: right; }

.flow { position: relative; display: grid; counter-reset: flow; border-top: 1px solid var(--line); }
.flow-step { counter-increment: flow; display: grid; grid-template-columns: .42fr 1fr; min-height: 170px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.flow-step::before { content: "0" counter(flow); color: var(--accent-deep); font: 400 clamp(36px, 5vw, 70px)/1 var(--display); }
.flow-step > div { display: grid; grid-template-columns: .65fr 1fr; gap: 30px; align-items: center; }
.flow-step h3 { font: 400 clamp(24px, 2.6vw, 38px)/1.25 var(--display); letter-spacing: -.04em; }
.flow-step h3 small { display: block; margin-bottom: 10px; color: var(--muted); font: 700 9px/1 var(--sans); letter-spacing: .18em; }
.flow-step p { max-width: 470px; color: var(--muted); font-size: 13px; }

#review { background: var(--paper-2); }
.chat { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 70px; }
.bubble { position: relative; min-height: 150px; padding: 28px; border: 1px solid var(--line); font: 400 clamp(19px, 2vw, 26px)/1.55 var(--display); }
.bubble small { display: block; margin-top: 24px; color: var(--muted); font: 600 10px/1 var(--sans); letter-spacing: .1em; }
.bubble--out { color: var(--paper-3); background: var(--ink); border-color: var(--ink); transform: translateY(36px); }
.bubble--out small { color: rgba(247,243,233,.52); }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.review-card { min-height: 260px; padding: 34px; background: rgba(247,243,233,.25); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 18px; line-height: 1.75; transition: background .3s, transform .3s; }
.review-card > b { color: var(--accent-deep); font-size: 24px; font-weight: 400; }
.review-card footer { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); font: 600 10px/1.4 var(--sans); }
.review-card footer span { color: var(--muted); }
.review-card footer i { color: var(--accent-deep); font-style: normal; letter-spacing: .12em; }
.review-card:hover { z-index: 2; background: var(--paper-3); transform: translateY(-6px); }

#faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(34px, 6vw, 90px); }
#faq .sec-head { display: block; margin: 0; }
#faq .sec-head h2 { margin-top: 16px; }
#faq .sec-head p { margin-top: 24px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 54px 25px 0; list-style: none; cursor: pointer; font: 400 clamp(18px, 2vw, 25px)/1.45 var(--display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 24px; color: var(--accent-deep); font: 400 24px/1 var(--sans); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 650px; padding: 0 55px 26px 0; color: var(--muted); font-size: 14px; }

.deep { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 70px; background: var(--paper-3); border-top: 1px solid var(--line); }
.deep-intro { align-self: start; position: sticky; top: 125px; }
.deep-intro h2 { margin-top: 18px; font: 400 clamp(36px, 4.6vw, 66px)/1.2 var(--display); letter-spacing: -.05em; }
.deep-intro > p { margin-top: 26px; color: var(--muted); font-size: 14px; }
.deep-intro > small { display: block; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.deep-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deep-card { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deep-card > span { color: var(--accent-deep); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.deep-card h3 { margin-top: 55px; font: 400 clamp(21px, 2.2vw, 29px)/1.4 var(--display); letter-spacing: -.035em; }
.deep-card p { margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.neighbor-block { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; margin-top: 20px; padding-top: 60px; border-top: 1px solid var(--line); }
.neighbor-block > div > span { color: var(--accent-deep); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.neighbor-block h3 { margin-top: 12px; font: 400 clamp(25px, 3vw, 40px)/1.3 var(--display); }
.neighbor-block p { margin-top: 16px; color: var(--muted); font-size: 13px; }
.neighbor-block nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.neighbor-block a { display: flex; justify-content: space-between; gap: 15px; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
.neighbor-block a:nth-child(odd) { margin-right: 18px; }
.neighbor-block a:hover { color: var(--accent-deep); }
.neighbor-block i { font-style: normal; }

.hub-banner { position: relative; min-height: 500px; padding: clamp(70px, 9vw, 126px) var(--gutter); color: var(--paper-3); background: var(--ink); overflow: hidden; }
.hub-banner::before { content: ""; position: absolute; right: -9%; top: -30%; width: 620px; height: 620px; border: 1px solid rgba(238,233,220,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(238,233,220,.025), 0 0 0 110px rgba(238,233,220,.018); }
.hub-banner > span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hub-banner h2 { position: relative; max-width: 820px; margin-top: 16px; font: 400 clamp(42px, 6vw, 82px)/1.16 var(--display); letter-spacing: -.05em; }
.hub-banner p { position: relative; max-width: 580px; margin-top: 24px; color: rgba(247,243,233,.58); }
.hub-banner .btn { margin-top: 35px; }

.sub-links { display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); }
.sub-links a { position: relative; min-width: 25%; padding: 18px 42px 18px 4px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; transition: color .25s, padding-left .25s; }
.sub-links a::after { content: "↗"; position: absolute; right: 12px; color: var(--accent-deep); }
.sub-links a:hover, .sub-links a.hot { color: var(--text); }
.sub-links a:hover { padding-left: 12px; }
.sub-links a.hot::before { content: "●"; margin-right: 8px; color: var(--accent); font-size: 7px; vertical-align: 2px; }

.hub-metro { padding-top: clamp(70px, 9vw, 120px); }
.hub-metro + .hub-metro { border-top: 1px solid var(--line); }
.hub-metro > h2 { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 50px; font: 400 clamp(39px, 6vw, 76px)/1.2 var(--display); letter-spacing: -.05em; }
.hub-metro > h2 a:hover { color: var(--accent-deep); }
.hub-metro > h2 small { color: var(--muted); font: 700 9px/1 var(--sans); letter-spacing: .15em; }
.hub-dist { display: grid; grid-template-columns: minmax(190px, .36fr) 1fr; gap: 40px; padding: 26px 0; border-top: 1px solid var(--line); }
.hub-dist h3 { font: 400 24px/1.4 var(--display); }
.hub-dist h3 a:hover { color: var(--accent-deep); }
.hub-dist .sub-links { border-top: 0; }
.hub-dist .sub-links a { min-width: auto; margin-right: 20px; padding: 5px 22px 5px 0; border-bottom: 0; }

.site-footer { padding: 75px var(--gutter) 115px; color: rgba(247,243,233,.58); background: #041311; border-top: 1px solid rgba(238,233,220,.12); }
.foot-brand { color: var(--paper-3); font: 700 11px/1 var(--sans); letter-spacing: .15em; }
.foot-tel { display: inline-block; margin-top: 22px; color: var(--accent); font: 400 clamp(32px, 5vw, 66px)/1.1 var(--display); letter-spacing: -.04em; }
.site-footer > p { max-width: 650px; margin-top: 24px; font-size: 12px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(238,233,220,.12); font-size: 11px; }
.site-footer nav a:hover { color: var(--paper-3); }
.callbar {
  position: fixed;
  z-index: 80;
  right: max(22px, calc((100vw - 1440px)/2 + 22px));
  bottom: 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-width: 250px;
  padding: 12px 18px 12px 12px;
  color: var(--paper-3);
  background: var(--accent-deep);
  box-shadow: 0 18px 45px rgba(7,29,28,.25);
  transition: transform .3s, background .3s;
}
.callbar b { grid-row: 1 / 3; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; }
.callbar span { font-size: 13px; font-weight: 700; }
.callbar em { font-style: normal; font-size: 9px; letter-spacing: .08em; opacity: .72; }
.callbar:hover { background: var(--ink); transform: translateY(-4px); }

[data-rv], [data-rv-group] > * { opacity: 0; transform: translateY(28px); }
.is-revealed { opacity: 1 !important; transform: none !important; transition: opacity .8s ease, transform .9s cubic-bezier(.2,.8,.2,1); }

body.tone-b { --accent: #d9a84b; --accent-deep: #a97822; --mint: #c7c096; }
body.tone-c { --accent: #79bfae; --accent-deep: #347c70; --brass: #d5b177; }
body.layout-b .page-hero { grid-template-columns: minmax(330px,.88fr) minmax(0,1.12fr); }
body.layout-b .page-hero .hero-figure { clip-path: polygon(9% 0, 100% 0, 100% 88%, 78% 100%, 0 100%, 0 14%); }
body.layout-b .deep-card:nth-child(3n) { background: var(--paper-2); }
body.layout-c .page-hero .hero-figure { clip-path: inset(6% 0 2% 7% round 48% 48% 0 0); }
body.layout-c .page-hero h1 { font-size: clamp(44px, 4.1vw, 60px); }
body.layout-c .deep-grid { transform: translateY(38px); margin-bottom: 38px; }

@media (max-width: 1180px) {
  .frame { width: calc(100% - 48px); }
  .rail { display: none; }
  .hero, .page-hero { gap: 22px 34px; grid-template-columns: minmax(0, 1fr) minmax(300px, .84fr); }
  .site-header { grid-template-columns: 1fr auto auto; gap: 24px; }
  .sub-links a { min-width: 33.333%; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; --section: 82px; }
  body { padding-bottom: 62px; }
  body::after { opacity: .035; }
  .stage { background: var(--ink); }
  .frame { width: 100%; box-shadow: none; }
  .site-header { min-height: 68px; grid-template-columns: 1fr auto; padding-inline: 18px; }
  .brand img { width: 148px; height: 30px; }
  .site-header nav { display: none; }
  .header-call { min-height: 38px; padding: 0 11px; font-size: 11px; }
  .header-call span { display: none; }
  .hero, .page-hero, body.layout-b .page-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 20px;
    padding-top: 88px;
    padding-bottom: 62px;
  }
  .hero::after, .page-hero::after { display: none; }
  .hero-thai { left: 20px; top: 34px; transform: none; font-size: 38px; }
  .hero > .eyebrow, .page-hero > .eyebrow,
  .hero h1, .page-hero h1, .hero-sub, .hero-actions, .hero-kws,
  .hero-figure, .page-hero .hero-figure { grid-column: 1; grid-row: auto; }
  .hero h1, .page-hero h1, body.layout-c .page-hero h1 { font-size: clamp(40px, 12.5vw, 58px); line-height: 1.19; letter-spacing: -.055em; }
  .hero h1 .ln, .page-hero h1 .ln { display: inline; }
  .hero h1 .ln::after, .page-hero h1 .ln::after { content: " "; }
  .hero-sub { max-width: 100%; font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-kws { gap: 6px 14px; padding-top: 5px; }
  .hero-figure, .page-hero .hero-figure, body.layout-b .page-hero .hero-figure, body.layout-c .page-hero .hero-figure {
    min-height: 470px;
    margin-top: 18px;
    clip-path: inset(0 0 0 12% round 46% 46% 0 0);
  }
  .hero-note { right: 0; bottom: 7%; min-width: 190px; }
  .crumb { min-height: 44px; padding-inline: 18px; overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 150px; padding: 24px 18px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat b { font-size: 43px; }
  .sec-head { display: block; }
  .sec-head h2 { margin-top: 16px; font-size: 41px; }
  .sec-head p { margin-top: 20px; font-size: 14px; }
  .scroll-cue { display: flex; justify-content: space-between; margin: -30px 0 16px; color: var(--muted); font-size: 10px; }
  .area-slider { display: flex; gap: 12px; margin-inline: -20px; padding: 0 20px 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .area-slider::-webkit-scrollbar { display: none; }
  .area-card, .area-card:nth-child(4n+1), .area-card:nth-child(4n+4) { flex: 0 0 79vw; height: 430px; scroll-snap-align: center; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--light-line) !important; padding: 30px 24px; }
  .price-card:last-child { border-bottom: 0 !important; }
  .price-card > i { margin-bottom: 38px; }
  .flow-step { grid-template-columns: 64px 1fr; min-height: 0; padding: 24px 0; }
  .flow-step::before { font-size: 37px; }
  .flow-step > div { grid-template-columns: 1fr; gap: 12px; }
  .chat { grid-template-columns: 1fr; gap: 10px; margin-bottom: 50px; }
  .bubble { min-height: 0; }
  .bubble--out { transform: none; margin-left: 24px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card { min-height: 220px; }
  #faq { grid-template-columns: 1fr; gap: 45px; }
  .faq summary { padding-block: 21px; font-size: 19px; }
  .faq summary::after { top: 21px; }
  .deep { grid-template-columns: 1fr; gap: 48px; }
  .deep-intro { position: static; }
  .deep-grid { grid-template-columns: 1fr; transform: none !important; margin-bottom: 0 !important; }
  .deep-card { min-height: 0; padding: 27px 22px 30px; }
  .deep-card h3 { margin-top: 34px; font-size: 23px; }
  .neighbor-block { grid-template-columns: 1fr; gap: 32px; padding-top: 45px; }
  .neighbor-block nav { grid-template-columns: 1fr; }
  .neighbor-block a:nth-child(odd) { margin-right: 0; }
  .sub-links a { min-width: 50%; padding-right: 28px; }
  .hub-banner { min-height: 470px; }
  .hub-banner::before { width: 390px; height: 390px; right: -45%; }
  .hub-banner h2 { font-size: 45px; }
  .hub-metro > h2 { display: block; font-size: 47px; }
  .hub-metro > h2 small { display: block; margin-top: 10px; }
  .hub-dist { grid-template-columns: 1fr; gap: 15px; }
  .hub-dist .sub-links a { min-width: auto; }
  .site-footer { padding-bottom: 80px; }
  .foot-tel { font-size: 35px; }
  .callbar { left: 0; right: 0; bottom: 0; min-width: 0; height: 62px; padding: 9px 20px; border-top: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 420px) {
  .hero h1, .page-hero h1, body.layout-c .page-hero h1 { font-size: 39px; }
  .hero-figure, .page-hero .hero-figure, body.layout-b .page-hero .hero-figure, body.layout-c .page-hero .hero-figure { min-height: 410px; }
  .stat { min-height: 140px; }
  .area-card, .area-card:nth-child(4n+1), .area-card:nth-child(4n+4) { flex-basis: 84vw; height: 400px; }
  .sub-links a { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-rv], [data-rv-group] > * { opacity: 1 !important; transform: none !important; }
  .marquee-inner { transform: none !important; }
}
