
:root {
  --black: #151515;
  --white: #ffffff;
  --cream: #f8f5ef;
  --soft: #fbfaf7;
  --text: #292520;
  --muted: #736b61;
  --line: #e8dfd4;
  --gold: #8a684c;
  --shadow: 0 12px 34px rgba(50,35,20,.038);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.78;
  letter-spacing: -0.018em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  height: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,223,212,0.9);
}

.nav {
  max-width: 1540px;
  height: 108px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 255px 1fr 132px;
  align-items: center;
  gap: 28px;
}

.logo-placeholder {
  width: 118px;
  height: 64px;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.menu-toggle { display:none; }

.menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  opacity: 0.96;
  transition: opacity .22s ease, transform .22s ease;
}

.menu a:hover {
  opacity: .66;
  transform: translateY(-1px);
}

.menu .kr {
  font-size: 17px;
  font-weight: 520;
  letter-spacing: -0.025em;
}

.menu .en {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .08em;
  color: #33302b;
  font-weight: 360;
}

.nav-cta {
  justify-self: end;
  min-width: 132px;
  height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 540;
  box-shadow: 0 6px 20px rgba(0,0,0,.13);
  transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  opacity: .92;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

section {
  padding: 112px 70px;
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
}

.hero {
  margin-top: 108px;
  height: calc(100vh - 108px);
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: image-set(url("images/hero.webp") type("image/webp"), url("images/hero.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.47), rgba(0,0,0,.36)),
    radial-gradient(circle at 50% 45%, rgba(0,0,0,.10), rgba(0,0,0,.54));
  backdrop-filter: blur(1.2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 0 24px;
}

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: .075em;
  font-weight: 580;
  margin-bottom: 22px;
}

h1 {
  font-family: Georgia, "Noto Serif KR", "Apple SD Gothic Neo", serif;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.18;
  letter-spacing: -0.052em;
  font-weight: 470;
  margin-bottom: 34px;
  text-shadow: 0 4px 22px rgba(0,0,0,.35);
}

.hero-copy {
  font-size: 21px;
  line-height: 1.76;
  font-weight: 390;
  margin-bottom: 42px;
  text-shadow: 0 3px 16px rgba(0,0,0,.42);
}

.buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  min-width: 220px;
  height: 60px;
  border-radius: 999px;
  border: 1.2px solid rgba(255,255,255,.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 520;
  color: #fff;
  background: rgba(255,255,255,.025);
  transition: transform .22s ease, opacity .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: .94;
  background: rgba(255,255,255,.08);
}

.btn.primary {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.20);
}

.btn.primary:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}

.story {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 96px;
}

.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.section-kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .13em;
  font-weight: 540;
  margin-bottom: 16px;
  color: #725a49;
}

.section-title {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 420;
  line-height: 1.18;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.title-line {
  width: 44px;
  height: 1px;
  background: #171717;
  margin: 20px 0 28px;
}

.story p {
  font-size: 18.5px;
  line-height: 1.9;
  color: #464038;
  font-weight: 340;
}

.story-photo {
  width: 100%;
  height: 400px;
  background-image: image-set(url("images/story.webp") type("image/webp"), url("images/story.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,.09);
}

.cream {
  background: var(--cream);
}

.section-head {
  margin-bottom: 50px;
}

.section-head .title {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.06;
  font-weight: 360;
  letter-spacing: -0.064em;
}

.section-head .sub {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  font-weight: 440;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.52);
}

.stat {
  padding: 34px 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.num {
  font-size: 42px;
  font-weight: 330;
  line-height: 1;
  color: #151515;
}

.label {
  margin-top: 12px;
  font-size: 14.5px;
  color: #625b52;
  font-weight: 390;
}

.full-bg {
  min-height: 570px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.54);
}

.full-bg .inner {
  position: relative;
  z-index: 2;
}

.big-line {
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.062em;
  font-weight: 410;
  margin-bottom: 30px;
}

.full-bg p {
  font-size: 19px;
  max-width: 690px;
  line-height: 1.84;
  font-weight: 350;
}

.blend-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.blend-card {
  background: white;
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 360px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.blend-card h3 {
  font-size: 30px;
  font-weight: 360;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.blend-card .en {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 430;
}

.blend-desc {
  font-size: 16px;
  line-height: 1.84;
  color: #3a342f;
  margin-bottom: 26px;
  font-weight: 330;
}

.blend-meta {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 14px;
  color: #453f38;
  font-weight: 330;
}

.blend-meta strong {
  display: block;
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 12px;
  color: #6c6258;
  font-weight: 450;
}

.consulting {
  background-image: image-set(url("images/consulting.webp") type("image/webp"), url("images/consulting.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

.consulting::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
}

.consulting .inner {
  position: relative;
  z-index: 2;
}

.consulting .section-head .title {
  color: #fff;
}

.consulting .section-head .sub {
  color: #e9c984;
}

.career {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.34);
  max-width: 760px;
}

.career li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  font-size: 19px;
  color: rgba(255,255,255,.96);
  font-weight: 330;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 13px;
  margin-bottom: 54px;
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  min-height: 96px;
}

.process-step .n {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .17em;
  margin-bottom: 9px;
  font-weight: 440;
}

.process-step .t {
  font-size: 17px;
  font-weight: 390;
  color: #211f1b;
}

.notice {
  background: white;
  border: 1px solid var(--line);
  padding: 30px 34px;
  max-width: 880px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.notice p {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: #342f2a;
  font-weight: 320;
}

.notice p:last-child {
  border-bottom: none;
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  padding: 46px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact h2 {
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: .96;
  font-weight: 330;
  letter-spacing: -0.068em;
  color: #171717;
}

.contact-info p {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 330;
}

.contact-info a { text-decoration: underline; text-decoration-color: #c7b9aa; text-underline-offset: 4px; }

.faq { background: #fff; }
.faq-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:78px; align-items:start; }
.faq-intro { color:var(--muted); max-width:420px; }
.faq-list details { border-top:1px solid var(--line); padding:22px 4px; }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; list-style:none; font-size:18px; font-weight:480; padding-right:36px; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:4px; top:-3px; font-size:26px; font-weight:300; color:var(--gold); }
.faq-list details[open] summary::after { content:'−'; }
.faq-list details p { margin-top:14px; color:var(--muted); font-size:15.5px; line-height:1.75; padding-right:30px; }

.online-store { padding-top:0; padding-bottom:112px; background:#fff; }
.store-card { display:flex; align-items:center; justify-content:space-between; gap:48px; padding:38px 42px; border:1px solid var(--line); border-radius:14px; background:var(--soft); }
.store-card .section-kicker { margin-bottom:10px; font-size:11px; }
.store-card h2 { font-family:Georgia,"Noto Serif KR",serif; font-size:clamp(27px,3vw,38px); line-height:1.28; font-weight:420; letter-spacing:-.045em; }
.store-card p { margin-top:13px; color:var(--muted); font-size:15px; }
.store-btn { flex:0 0 auto; display:inline-flex; align-items:center; gap:14px; padding:0 22px; height:50px; border:1px solid #b9ada0; border-radius:999px; background:#fff; color:#292520; font-size:14.5px; font-weight:480; transition:border-color .2s ease, transform .2s ease; }
.store-btn:hover { border-color:#6f5a48; transform:translateY(-1px); }

.inquiry { background:var(--cream); }
.inquiry-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:76px; align-items:start; }
.inquiry h2 { font-family:Georgia,"Noto Serif KR",serif; font-size:clamp(36px,4vw,54px); line-height:1.22; font-weight:420; letter-spacing:-.05em; }
.inquiry p { margin-top:24px; color:var(--muted); max-width:460px; }
.inquiry-form { background:#fff; border:1px solid var(--line); padding:34px; border-radius:14px; box-shadow:var(--shadow); }
.inquiry-form label { display:block; font-size:14px; font-weight:480; margin-bottom:20px; }
.inquiry-form input[type=text], .inquiry-form input[type=tel], .inquiry-form textarea { width:100%; margin-top:8px; border:1px solid #d8cfc5; border-radius:8px; padding:13px 14px; font:inherit; color:var(--text); background:#fff; }
.inquiry-form textarea { resize:vertical; line-height:1.6; }
.inquiry-form input:focus, .inquiry-form textarea:focus { outline:2px solid rgba(138,104,76,.24); border-color:var(--gold); }
.inquiry-form .consent { font-weight:350; color:var(--muted); display:flex; gap:9px; align-items:flex-start; }
.inquiry-form .consent input { margin-top:6px; }
.submit-btn { width:100%; height:54px; border:0; border-radius:999px; background:#171717; color:#fff; font:inherit; font-weight:520; cursor:pointer; }
.hidden-field { position:absolute!important; left:-9999px!important; }

.floating-kakao {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #171717;
  color: #fff;
  padding: 16px 25px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
  transition: transform .22s ease, opacity .22s ease;
}

.floating-kakao:hover {
  transform: translateY(-2px);
  opacity: .94;
}

.floating-kakao .bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.floating-kakao strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 520;
}

.floating-kakao span {
  font-size: 13.5px;
  opacity: .92;
}

.site-footer {
  padding: 54px 30px 24px;
  background: #171717;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  letter-spacing: .01em;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1.5fr auto;
  gap: 54px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.footer-logo span { color: rgba(255,255,255,.34); font-weight: 300; }
.footer-logo small { font-family: Montserrat, Arial, sans-serif; font-size: 9px; letter-spacing: .18em; font-weight: 600; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,.52); line-height: 1.7; }

.footer-info { display: grid; gap: 9px; }
.footer-info p { display: grid; grid-template-columns: 112px 1fr; gap: 15px; line-height: 1.65; }
.footer-info strong { color: rgba(255,255,255,.46); font-weight: 450; }
.footer-info a, .footer-info span { color: rgba(255,255,255,.82); }

.footer-actions { display: flex; flex-direction: column; gap: 10px; min-width: 128px; }
.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  transition: background .2s ease, color .2s ease;
}
.footer-actions a:hover { background: #fff; color: #171717; }

.footer-bottom {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.38);
  font-size: 11px;
  letter-spacing: .05em;
}

@media(max-width:900px){
  .footer-inner{grid-template-columns:1fr 1.25fr;gap:36px}
  .footer-actions{grid-column:1 / -1;flex-direction:row}
  .footer-actions a{min-width:128px}
}

@media(max-width:620px){
  .site-footer{padding:42px 20px 98px}
  .footer-inner{grid-template-columns:1fr;gap:30px}
  .footer-logo{font-size:18px;gap:9px}
  .footer-logo small{font-size:7px;letter-spacing:.12em}
  .footer-info p{grid-template-columns:1fr;gap:2px}
  .footer-info strong{font-size:11px}
  .footer-actions{grid-column:auto;display:grid;grid-template-columns:1fr 1fr}
  .footer-actions a{min-width:0}
  .footer-bottom{margin-top:28px}
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page { min-height:100vh; display:grid; place-items:center; padding:24px; background:var(--cream); }
.thanks-card { width:min(680px,100%); background:#fff; border:1px solid var(--line); border-radius:18px; padding:64px 42px; text-align:center; box-shadow:var(--shadow); }
.thanks-card h1 { color:var(--text); text-shadow:none; font-size:clamp(36px,6vw,54px); margin-bottom:22px; }
.thanks-card p { color:var(--muted); margin-bottom:34px; }
.thanks-card .btn.dark { background:#171717; border-color:#171717; color:#fff; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  [data-reveal].is-visible,
  .btn,
  .menu a,
  .nav-cta,
  .floating-kakao {
    transition: none;
    transform: none;
  }
}

@media(max-width:1100px) {
  .nav {
    grid-template-columns: 210px 1fr 112px;
    padding: 0 24px;
  }
  .menu {
    gap: 22px;
  }
  .menu .kr {
    font-size: 15.5px;
  }
  .menu .en {
    font-size: 9px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media(max-width:820px) {
  .nav {
    height: 82px;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
  }
  .logo-placeholder {
    width: 54px;
    height: 42px;
  }
  .menu {
    display:flex;
    position:absolute;
    top:82px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:14px 18px 22px;
    flex-direction:column;
    gap:0;
    align-items:stretch;
    visibility:hidden;
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .menu.is-open { visibility:visible; opacity:1; transform:translateY(0); }
  .menu a { align-items:flex-start; padding:13px 4px; border-bottom:1px solid var(--line); }
  .menu .en { margin-top:3px; }
  .menu-toggle { display:block; margin-left:auto; margin-right:10px; border:1px solid var(--line); background:#fff; border-radius:999px; height:42px; padding:0 14px; font-size:13px; color:#222; }
  .nav-cta {
    min-width: 108px;
    height: 44px;
    font-size: 14px;
    padding: 0 18px;
  }
  .hero {
    margin-top: 82px;
    height: auto;
    min-height: 690px;
    padding: 96px 18px 84px;
  }
  section {
    padding: 76px 22px;
  }
  .eyebrow {
    font-size: 16px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .hero-copy {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 34px;
  }
  .buttons {
    gap: 12px;
  }
  .btn {
    min-width: 190px;
    height: 54px;
    font-size: 16px;
  }
  .story {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .story-photo {
    height: 300px;
  }
  .section-title {
    font-size: 34px;
  }
  .story p {
    font-size: 16.5px;
  }
  .stats,
  .blend-grid,
  .process-line,
  .contact-card,
  .faq-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid, .inquiry-grid { gap:38px; }
  .online-store { padding-top:0; padding-bottom:76px; }
  .store-card { align-items:flex-start; flex-direction:column; padding:30px 26px; gap:24px; }
  .store-btn { width:100%; justify-content:center; }
  .inquiry-form { padding:26px 22px; }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 20px;
  }
  .num {
    font-size: 36px;
  }
  .full-bg {
    min-height: 520px;
  }
  .big-line {
    font-size: 40px;
  }
  .full-bg p {
    font-size: 16.5px;
  }
  .blend-card {
    padding: 28px;
    min-height: auto;
  }
  .blend-card h3 {
    font-size: 27px;
  }
  .career li {
    font-size: 16.5px;
  }
  .notice {
    padding: 24px;
  }
  .notice p {
    font-size: 14.5px;
  }
  .contact-card {
    padding: 30px;
  }
  .floating-kakao {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
  }
  .floating-kakao .bubble {
    width: 34px;
    height: 34px;
  }
  .floating-kakao strong {
    font-size: 14px;
  }
  .floating-kakao span {
    font-size: 12px;
  }
}

@media(max-width:480px) {
  .hero {
    min-height: 640px;
  }
  h1 {
    font-size: 34px;
  }
  .btn {
    width: 100%;
    min-width: 0;
  }
  .floating-kakao {
    max-width: calc(100% - 32px);
  }
}


 .text-wordmark{
  min-width:390px;min-height:72px;display:flex;flex-direction:row;
  justify-content:flex-start;align-items:center;color:#171717;line-height:1;
  white-space:nowrap
}
.wordmark-kr{
  display:block;font-family:"Pretendard","Noto Sans KR","Apple SD Gothic Neo",Arial,sans-serif;
  font-size:27px;font-weight:650;letter-spacing:-.045em;line-height:1
}
.wordmark-divider{
  display:block;width:1px;height:30px;margin:0 24px;background:#777;flex:0 0 auto
}
.wordmark-en{
  display:block;font-family:Montserrat,Arial,sans-serif;
  font-size:11px;font-weight:600;letter-spacing:.24em;white-space:nowrap
}

@media(max-width:1100px){
  .text-wordmark{min-width:330px}
  .wordmark-kr{font-size:24px}
  .wordmark-divider{height:27px;margin:0 18px}
  .wordmark-en{font-size:9px;letter-spacing:.18em}
}

@media(max-width:820px){
  .text-wordmark{min-width:0;width:auto;min-height:54px;max-width:calc(100% - 160px)}
  .wordmark-kr{font-size:21px}
  .wordmark-divider{height:23px;margin:0 12px}
  .wordmark-en{font-size:7px;letter-spacing:.13em}
}

@media(max-width:560px){
  .text-wordmark{max-width:calc(100% - 145px)}
  .wordmark-kr{font-size:19px}
  .wordmark-divider{height:21px;margin:0 9px}
  .wordmark-en{font-size:6px;letter-spacing:.08em}
}

@media(max-width:430px){
  .text-wordmark{
    max-width:calc(100% - 132px);
    min-height:54px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
  }
  .wordmark-kr{font-size:18px}
  .wordmark-divider{display:none}
  .wordmark-en{
    display:block;
    font-size:6px;
    letter-spacing:.12em;
    line-height:1.15;
  }
}


/* Mobile presentation polish */
@media(max-width:820px){
  body{padding-bottom:76px}
  header{box-shadow:0 3px 16px rgba(0,0,0,.05)}
  .hero{min-height:calc(100svh - 82px);padding:72px 20px 64px}
  .hero-img{background-position:58% center}
  .hero-img::after{background:linear-gradient(to bottom,rgba(0,0,0,.28),rgba(0,0,0,.58),rgba(0,0,0,.48))}
  .hero-content{padding:0;max-width:520px}
  h1{font-size:clamp(34px,10vw,45px);line-height:1.22;margin-bottom:24px}
  .hero-copy br{display:none}
  .hero-copy{max-width:390px;margin-left:auto;margin-right:auto;font-size:16px;line-height:1.72}
  .buttons{width:100%;max-width:390px;margin:0 auto}
  .buttons .btn{width:100%;min-width:0}
  .section-head{margin-bottom:34px}
  .section-head .title{font-size:38px}
  .story-grid{gap:34px}
  .story-photo{height:250px}
  .stats{grid-template-columns:repeat(2,1fr)}
  .stat{border-right:1px solid var(--line)}
  .stat:nth-child(2n){border-right:0}
  .process-line{grid-template-columns:repeat(2,1fr);gap:18px 14px}
  .contact{padding-bottom:98px}
  .floating-kakao{left:14px;right:14px;bottom:12px;max-width:none;justify-content:center;border-radius:14px;padding:13px 18px}
  .floating-kakao .bubble{display:none}
  .floating-kakao strong{font-size:15px}
  .floating-kakao span{display:none}
}
@media(max-width:480px){
  .menu-toggle{padding:0 12px;margin-right:6px}
  .nav-cta{min-width:76px;height:42px;padding:0 10px;font-size:13px}
  section{padding-left:18px;padding-right:18px}
  .hero{padding-left:18px;padding-right:18px}
  .eyebrow{font-size:13px;letter-spacing:.12em}
  h1{font-size:35px}
  .story-photo{height:220px}
  .blend-card{padding:24px 22px}
  .notice{padding:22px 18px}
  .contact-card{padding:26px 22px}
}
