:root {
  --paper: #f4f3ee;
  --paper-soft: #ebece6;
  --sage: #758477;
  --sage-dark: #4f5d51;
  --silver: #c7c9c4;
  --ink: #20231f;
  --muted: #686d67;
  --apricot: #d97757;
  --line: rgba(32, 35, 31, .22);
  --font: "Noto Sans KR", system-ui, sans-serif;
  --header-h: 68px;
  --gutter: clamp(48px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); background: var(--paper); color: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--paper); font-family: var(--font); }
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
section { scroll-margin-top: calc(var(--header-h) + 18px); }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 12px 18px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 80; top: 0; display: grid; grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr); align-items: center; height: var(--header-h); min-height: var(--header-h) !important; padding: 0 var(--gutter); border-bottom: 1px solid var(--line); background: rgba(244, 243, 238, .98); }
.brand { display: inline-flex; align-items: baseline; gap: 12px; width: max-content; }
.brand strong { font-size: 22px; letter-spacing: -.05em; }
.brand span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: stretch; height: 100%; }
.desktop-nav a { position: relative; display: grid; min-width: 92px; padding: 0 16px; place-items: center; font-size: 15px; font-weight: 500; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 16px; bottom: -1px; left: 16px; height: 2px; background: var(--sage); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a[aria-current="true"]::after { transform: scaleX(1); }
.nav-cta { justify-self: end; min-width: 120px; padding: 13px 18px; background: var(--sage); color: white; text-align: center; font-size: 15px; font-weight: 700; transition: background .2s ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--sage-dark); }
.menu-button { display: none; }
.site-header[data-navigation-pattern="utility-sticky"] .mh-customer-nav-toggle,
.mh-customer-nav-layer[data-navigation-pattern="utility-sticky"] { display: none !important; }

.drawer-backdrop { position: fixed; z-index: 88; inset: var(--header-h) 0 0; background: rgba(32, 35, 31, .4); opacity: 0; transition: opacity .25s ease; }
.drawer-backdrop.is-open { opacity: 1; }
.mobile-drawer { position: fixed; z-index: 90; top: var(--header-h); right: 0; bottom: 0; display: flex; width: min(88vw, 390px); padding: 0 24px max(24px, env(safe-area-inset-bottom)); background: var(--paper); content-visibility: hidden; contain: layout paint; flex-direction: column; transform: translateX(102%); visibility: hidden; transition: transform .28s ease, visibility 0s linear .28s; }
.mobile-drawer.is-open { content-visibility: visible; transform: none; visibility: visible; transition-delay: 0s; }
.mobile-drawer:not(.is-open) nav,
.mobile-drawer:not(.is-open) .drawer-facts { display: none; }
.drawer-head { display: none; }
.drawer-head strong { font-size: 21px; letter-spacing: -.04em; }
.drawer-close { position: relative; width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; }
.drawer-close span { position: absolute; top: 23px; left: 12px; width: 24px; height: 2px; background: var(--sage-dark); transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }
.mobile-drawer nav { margin-top: 28px; }
.mobile-drawer nav a { position: relative; display: flex; align-items: center; min-height: 68px; border-bottom: 1px solid var(--line); font-size: 23px; font-weight: 500; word-break: keep-all; }
.mobile-drawer nav a[aria-current="true"]::before { position: absolute; top: 0; bottom: 0; left: -24px; width: 3px; background: var(--sage); content: ""; }
.drawer-facts { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); }
.drawer-facts p { display: grid; grid-template-columns: 78px 1fr; margin: 0 0 12px; font-size: 13px; }
.drawer-facts span { color: var(--muted); }
.drawer-facts strong { font-weight: 500; }
.drawer-facts a { display: grid; min-height: 56px; margin-top: 24px; background: var(--sage); color: white; place-items: center; font-weight: 700; }

.eyebrow { margin: 0 0 24px; color: var(--sage-dark); font-size: 12px; font-weight: 700; letter-spacing: .13em; }
h1, h2, h3, p { word-break: keep-all; }
h1, h2 { margin: 0; font-weight: 500; letter-spacing: -.055em; }
h2 { font-size: clamp(52px, 5.5vw, 78px); line-height: 1.1; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 164px; min-height: 58px; padding: 0 22px; font-weight: 700; }
.button-sage { background: var(--sage); color: white; }
.button-sage:hover, .button-sage:focus-visible { background: var(--sage-dark); }
.text-link { display: inline-flex; align-items: center; gap: 32px; min-height: 44px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-weight: 600; }

.hero { position: relative; display: grid; min-height: calc(100svh - var(--header-h)); border-bottom: 1px solid var(--line); grid-template-columns: 1fr; }
.hero-media { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,243,238,.98) 0%, rgba(244,243,238,.94) 26%, rgba(244,243,238,.2) 55%, transparent 74%); content: ""; }
.hero-media img { object-position: center; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 780px; padding: 68px var(--gutter) 88px; }
.hero h1 { font-size: clamp(58px, 5.4vw, 78px); line-height: 1.06; }
.hero-summary { max-width: 510px; margin: 28px 0 0; color: #41463f; font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.hero-caption { position: absolute; z-index: 2; right: var(--gutter); bottom: 28px; margin: 0; color: var(--sage-dark); font-size: 11px; letter-spacing: .08em; }

.buying { padding: 118px var(--gutter) 126px; border-bottom: 1px solid var(--line); }
.section-heading { display: grid; align-items: end; margin-bottom: 68px; grid-template-columns: 1fr 1.35fr; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { grid-column: 1; }
.buying-layout { display: grid; align-items: stretch; grid-template-columns: minmax(480px, .95fr) minmax(480px, 1.05fr); }
.buying-list { border-top: 1px solid var(--line); }
.buying-item { border-bottom: 1px solid var(--line); }
.buying-item button { display: grid; align-items: center; width: 100%; min-height: 104px; padding: 0 24px 0 8px; border: 0; background: transparent; grid-template-columns: 78px 150px 1fr 32px; text-align: left; }
.buying-item button b { color: var(--sage); font-size: 38px; font-weight: 500; }
.buying-item button strong { font-size: 22px; }
.buying-item button span { color: var(--muted); font-size: 15px; line-height: 1.6; }
.buying-item button i { font-size: 22px; font-style: normal; text-align: right; }
.buying-item button:hover, .buying-item button:focus-visible { background: var(--paper-soft); }
.buying-item p { margin: -6px 0 0; padding: 0 62px 28px 86px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.buying-item p[hidden] { display: none; }
.device-media { min-height: 430px; margin: 0 0 0 52px; overflow: hidden; }

.criteria { display: grid; min-height: 700px; padding: 118px var(--gutter); background: var(--paper-soft); grid-template-columns: .85fr 1.15fr; gap: 8vw; }
.criteria header > p:last-child { max-width: 450px; margin: 32px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.criteria-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.criteria-list li { display: grid; min-height: 162px; padding: 30px 0; border-bottom: 1px solid var(--line); grid-template-columns: 92px 1fr; }
.criteria-list b { color: var(--sage); font-size: 38px; font-weight: 500; }
.criteria-list h3 { margin: 2px 0 12px; font-size: 24px; font-weight: 600; }
.criteria-list p { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.75; }

.consultation { border-bottom: 1px solid var(--line); }
.consultation-media { height: clamp(390px, 48vw, 650px); margin: 0; overflow: hidden; }
.consultation-media img { object-position: center 46%; }
.consultation-content { display: grid; padding: 88px var(--gutter) 106px; grid-template-columns: .7fr 1.3fr; gap: 6vw; }
.consultation-content h2 { font-size: clamp(48px, 4.8vw, 72px); }
.consultation-content ol { position: relative; display: grid; margin: 8px 0 0; padding: 50px 0 0; list-style: none; grid-template-columns: repeat(4, 1fr); }
.consultation-content ol::before { position: absolute; top: 12px; right: 0; left: 0; height: 1px; background: var(--apricot); content: ""; }
.consultation-content ol::after { position: absolute; top: 8px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--apricot); content: ""; }
.consultation-content li { min-width: 0; padding: 0 24px; border-left: 1px solid var(--line); }
.consultation-content li:first-child { padding-left: 0; border-left: 0; }
.consultation-content b { color: var(--sage); font-size: 36px; font-weight: 500; }
.consultation-content h3 { margin: 14px 0 10px; font-size: 19px; }
.consultation-content li p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.news { display: grid; min-height: 760px; border-bottom: 1px solid var(--line); grid-template-columns: 58% 42%; }
.news-content { padding: 106px var(--gutter); }
.news-content header { margin-bottom: 54px; }
.news-content h2 { font-size: clamp(58px, 6vw, 86px); }
.news-list { border-top: 1px solid var(--line); }
.news-list a { display: grid; align-items: center; min-height: 112px; border-bottom: 1px solid var(--line); grid-template-columns: 126px 1fr 30px; transition: color .2s ease, padding .2s ease; }
.news-list a:hover, .news-list a:focus-visible { padding-left: 10px; color: var(--sage-dark); }
.news-list time { color: var(--sage-dark); font-size: 13px; }
.news-list strong { font-size: 23px; font-weight: 500; }
.news-list span { font-size: 24px; }
.news-more { margin-top: 32px; }
.news-media { position: relative; margin: 0; overflow: hidden; }
.news-media img { object-position: 58% center; transform: scale(1.08); }
.news-media figcaption { position: absolute; top: 0; right: 0; bottom: 0; display: grid; width: 46px; background: rgba(117,132,119,.94); color: white; place-items: center; font-size: 9px; letter-spacing: .12em; writing-mode: vertical-rl; }

.inquiry { display: grid; border-bottom: 1px solid var(--line); grid-template-columns: 40% 60%; }
.inquiry-intro { display: flex; min-width: 0; padding: 92px var(--gutter) 0; background: var(--sage); color: white; flex-direction: column; }
.inquiry-intro .eyebrow { color: rgba(255,255,255,.72); }
.inquiry-intro h2 { font-size: clamp(54px, 5.2vw, 78px); }
.inquiry-intro > div > p:last-child { max-width: 460px; margin: 28px 0 0; color: rgba(255,255,255,.82); line-height: 1.75; }
.store-facts { margin: 52px 0; }
.store-facts div { display: grid; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.28); grid-template-columns: 96px 1fr; }
.store-facts div:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.store-facts dt { color: rgba(255,255,255,.65); font-size: 12px; }
.store-facts dd { margin: 0; font-size: 18px; line-height: 1.6; }
.inquiry-intro figure { height: 330px; margin: auto calc(var(--gutter) * -1) 0; overflow: hidden; }
.form-wrap { padding: 92px clamp(40px, 5vw, 76px); }
.inquiry-form { max-width: 850px; margin: 0 auto; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; }
.field { position: relative; }
.field label { display: flex; gap: 7px; margin-bottom: 10px; font-size: 15px; font-weight: 600; }
.field label span { color: var(--apricot); font-size: 11px; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 14px 15px; border: 1px solid var(--silver); border-radius: 8px; outline: none; background: rgba(255,255,255,.24); }
.field textarea { min-height: 144px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #999d97; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 2px rgba(117,132,119,.24); }
.field small { display: none; margin-top: 7px; color: var(--apricot); font-size: 12px; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--apricot); box-shadow: 0 0 0 1px rgba(217,119,87,.2); }
.field input:user-invalid + small, .field textarea:user-invalid + small { display: block; }
.field-message { margin-top: 28px; }
.privacy { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; margin-top: 24px; padding: 8px 0; font-size: 14px; line-height: 1.6; }
.privacy input { flex: 0 0 auto; width: 22px; height: 22px; margin: 0; accent-color: var(--sage-dark); }
.privacy input:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.privacy b { color: var(--apricot); font-weight: 600; }
.feedback { min-height: 28px; margin: 12px 0 0; color: var(--sage-dark); font-size: 13px; }
.feedback[data-state="error"] { color: var(--apricot); }
.submit-button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 62px; margin-top: 16px; padding: 0 22px; border: 0; border-radius: 8px; background: var(--ink); color: white; font-weight: 700; }
.submit-button:hover, .submit-button:focus-visible { background: var(--sage-dark); }
.submit-button:disabled { background: var(--silver); color: var(--muted); cursor: not-allowed; opacity: .72; }

footer { display: flex; align-items: center; justify-content: space-between; min-height: 112px; padding: 24px var(--gutter); background: var(--ink); color: var(--paper); }
footer > a:first-child { font-size: 22px; font-weight: 700; }
footer p { margin: 0; color: #c9ccc7; font-size: 13px; }
footer > a:last-child { padding-bottom: 5px; border-bottom: 1px solid; font-size: 14px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.hero .hero-copy { animation: rise-in .75s .08s both; }
.hero .hero-media img { animation: image-in 1s both; }
@keyframes rise-in { from { opacity: 0; transform: translateY(24px); } }
@keyframes image-in { from { opacity: .35; transform: scale(1.025); } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: grid; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; place-content: center; gap: 5px; }
  .menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); }
  .drawer-open .menu-button span { transition: transform .2s ease, opacity .2s ease; }
  .drawer-open .menu-button span:first-child { transform: translateY(7px) rotate(45deg); }
  .drawer-open .menu-button span:nth-child(2) { opacity: 0; }
  .drawer-open .menu-button span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .buying-layout { grid-template-columns: 1fr; }
  .device-media { height: 520px; margin: 52px 0 0; }
  .criteria { gap: 5vw; }
  .consultation-content { grid-template-columns: 1fr; }
  .consultation-content ol { margin-top: 42px; }
  .inquiry { grid-template-columns: 1fr; }
  .inquiry-intro { display: grid; padding-bottom: 0; grid-template-columns: 1fr 1fr; }
  .inquiry-intro > div, .store-facts { padding-right: 40px; }
  .inquiry-intro figure { grid-column: 1 / -1; width: auto; margin-top: 40px; }
}

@media (max-width: 780px) {
  :root { --header-h: 64px; --gutter: 24px; }
  .site-header { height: var(--header-h); padding-right: 12px; }
  .brand strong { font-size: 20px; }
  .brand span { display: none; }
  .hero { display: flex; min-height: calc(100svh - var(--header-h)); flex-direction: column; }
  .hero-media { position: relative; order: 2; height: clamp(300px, 48svh, 430px); }
  .hero-media::after { background: linear-gradient(180deg, rgba(244,243,238,.05), rgba(244,243,238,.12)); }
  .hero-media img { object-position: 60% center; }
  .hero-copy { order: 1; align-self: auto; padding: 54px var(--gutter) 40px; }
  .hero h1 { font-size: clamp(44px, 12vw, 54px); line-height: 1.12; }
  .hero-summary { margin-top: 22px; font-size: 16px; line-height: 1.75; }
  .hero-actions { align-items: stretch; margin-top: 30px; flex-direction: column; gap: 14px; }
  .button { width: 100%; min-height: 56px; }
  .text-link { justify-content: space-between; min-height: 48px; }
  .hero-caption { display: none; }
  h2 { font-size: clamp(44px, 12vw, 56px); }
  .eyebrow { margin-bottom: 18px; }
  .buying { padding-top: 78px; padding-bottom: 82px; }
  .section-heading { display: block; margin-bottom: 48px; }
  .buying-item button { min-height: 92px; padding-right: 6px; grid-template-columns: 54px 1fr 32px; }
  .buying-item button b { font-size: 30px; }
  .buying-item button strong { font-size: 20px; }
  .buying-item button span { grid-column: 2; margin-top: 7px; font-size: 14px; }
  .buying-item button i { grid-column: 3; grid-row: 1 / 3; }
  .buying-item p { padding: 0 32px 24px 54px; }
  .device-media { height: 300px; margin-top: 38px; }
  .criteria { min-height: 0; padding-top: 82px; padding-bottom: 84px; grid-template-columns: 1fr; gap: 52px; }
  .criteria header > p:last-child { margin-top: 24px; font-size: 16px; }
  .criteria-list li { min-height: 0; grid-template-columns: 62px 1fr; }
  .criteria-list b { font-size: 30px; }
  .criteria-list h3 { font-size: 21px; }
  .criteria-list p { font-size: 15px; }
  .consultation-media { height: 310px; }
  .consultation-media img { object-position: 49% center; }
  .consultation-content { padding-top: 78px; padding-bottom: 86px; }
  .consultation-content h2 { font-size: clamp(42px, 11vw, 52px); }
  .consultation-content ol { display: block; padding: 0; }
  .consultation-content ol::before, .consultation-content ol::after { display: none; }
  .consultation-content li { display: grid; min-height: 116px; padding: 24px 0; border-top: 1px solid var(--line); border-left: 0; grid-template-columns: 58px 1fr; }
  .consultation-content b { grid-row: 1 / 3; font-size: 30px; }
  .consultation-content h3 { margin: 0 0 8px; }
  .news { min-height: 0; grid-template-columns: 1fr; }
  .news-content { padding: 82px var(--gutter); }
  .news-list a { min-height: 96px; grid-template-columns: 94px 1fr 24px; }
  .news-list time { font-size: 11px; }
  .news-list strong { font-size: 18px; line-height: 1.5; }
  .news-media { height: 330px; }
  .inquiry-intro { display: flex; padding-top: 80px; flex-direction: column; }
  .inquiry-intro > div, .store-facts { padding-right: 0; }
  .inquiry-intro h2 { font-size: clamp(44px, 12vw, 55px); }
  .store-facts { margin: 42px 0; }
  .store-facts div { grid-template-columns: 84px 1fr; }
  .store-facts dd { font-size: 16px; }
  .inquiry-intro figure { width: auto; height: 260px; margin: 0 calc(var(--gutter) * -1); }
  .form-wrap { padding: 72px var(--gutter) 84px; }
  .field-grid { grid-template-columns: 1fr; gap: 22px; }
  .field-message { margin-top: 22px; }
  .field input, .field select { min-height: 54px; }
  .privacy { font-size: 14px; }
  .submit-button { min-height: 58px; }
  footer { align-items: flex-start; min-height: 0; padding-top: 34px; padding-bottom: calc(34px + env(safe-area-inset-bottom)); flex-direction: column; gap: 18px; }
}

@media (max-width: 430px) {
  .hero-copy { padding-top: 46px; }
  .hero h1 { font-size: 46px; }
  .hero-media { height: 330px; }
  .buying-item button { padding-left: 0; }
  .news-content h2 { font-size: 52px; }
  .news-list a { grid-template-columns: 82px 1fr 20px; }
  .news-list strong { font-size: 17px; }
}

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