@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

/* =========================================================
   이음상회 IEUM — design tokens
   ========================================================= */
:root {
  --paper:       #FBF9F5;
  --paper-2:     #F3EDE4;
  --paper-3:     #EBE3D7;
  --card:        #FFFFFF;

  --ink:         #17130F;
  --ink-2:       #453B34;
  --muted:       #8A7E73;
  --line:        #E7DFD3;
  --line-soft:   #F0EAE0;

  --accent:      #BE3A2B;
  --accent-2:    #8E271C;
  --accent-soft: #FBEEEB;

  --forest:      #26463A;
  --forest-2:    #172E26;
  --forest-soft: #E9F0EC;

  --gold:        #A6803F;
  --gold-soft:   #F7F0E2;

  --r-lg: 22px;
  --r:    16px;
  --r-sm: 10px;

  --shadow-s: 0 1px 2px rgba(23,19,15,.05), 0 4px 14px rgba(23,19,15,.05);
  --shadow-m: 0 2px 6px rgba(23,19,15,.05), 0 18px 40px -18px rgba(23,19,15,.22);
  --shadow-l: 0 30px 70px -32px rgba(23,19,15,.38);

  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22,.8,.28,1);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.011em;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.033em;
  word-break: keep-all;
}
p { margin: 0; word-break: keep-all; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Korean line-breaking: never split inside a word */
.fact__v, .strip__d, .strip__t, .cat__d, .card__d, .card__t, .step__d, .step__t,
.band__li span, .band__li b, .f-hint, .check span, .summary__note, .note p,
.panel__d, .footer__slogan, .footer__disclaimer, .drawer__meta, .chip, .faq__q {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* =========================================================
   type helpers
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55;
}
.eyebrow--plain::before { display: none; }

.h-xl { font-size: clamp(2.1rem, 5.4vw, 3.65rem); }
.h-lg { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
.h-md { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.lead {
  font-size: clamp(1rem, 1.35vw, 1.075rem);
  color: var(--muted);
  line-height: 1.85;
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding: clamp(56px, 6vw, 84px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head > * + * { margin-top: 16px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* =========================================================
   buttons
   ========================================================= */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 28px;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--accent { --btn-bg: var(--accent); --btn-bd: var(--accent); }
.btn--accent:hover { --btn-bg: var(--accent-2); --btn-bd: var(--accent-2); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--ink); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.42); }
.btn--outline-light:hover { --btn-bd: #fff; }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: 15px; color: var(--ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,249,245,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.nav {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__ko { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.brand__en { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; color: var(--muted); }

.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav__link {
  position: relative;
  padding: 9px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--paper-2); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

.nav__side { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__tel {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
}
.nav__tel svg { width: 15px; height: 15px; color: var(--accent); }

.nav__toggle {
  display: none; width: 42px; height: 42px; margin-left: auto;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px;
  background: transparent; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 17px; height: 1.6px; border-radius: 2px;
  background: var(--ink); position: relative;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.6px;
  border-radius: 2px; background: var(--ink);
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -5.5px; }
.nav__toggle span::after  { top:  5.5px; }
.nav__toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(-90deg); }
.nav__toggle[aria-expanded="true"] span::after  { opacity: 0; }

@media (max-width: 940px) {
  .nav__menu, .nav__side { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { height: 66px; }
}

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
  z-index: 70; background: var(--paper);
  border-left: 1px solid var(--line);
  padding: 92px var(--gut) 32px;
  transform: translateX(102%);
  transition: transform .42s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__link {
  display: block; padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.drawer__foot { margin-top: 28px; display: grid; gap: 10px; }
.drawer__meta { margin-top: 24px; font-size: 13px; color: var(--muted); line-height: 1.9; }
.scrim {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(23,19,15,.42);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }

/* =========================================================
   hero
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 6vw, 86px) 0 clamp(64px, 8vw, 108px); }
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 68vw; height: 68vw; max-width: 900px; max-height: 900px;
  right: -16vw; top: -22vw; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F7E4DD 0%, #F6EDE2 45%, rgba(246,237,226,0) 72%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero__copy > * + * { margin-top: 22px; }
.hero__title { font-size: clamp(2.15rem, 5.3vw, 3.55rem); line-height: 1.18; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead { max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.7);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.chip svg { width: 13px; height: 13px; color: var(--accent); }

.hero__art { position: relative; min-height: 340px; }
.hero__disc {
  position: absolute; inset: 8% 6% 8% 6%;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff 0%, var(--paper-2) 100%);
  box-shadow: var(--shadow-l);
}
.hero__img-a, .hero__img-b {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(23,19,15,.06);
  background: #fff;
  box-shadow: 0 26px 54px -20px rgba(23,19,15,.38);
}
.hero__img-a { width: 78%; left: 6%; bottom: 6%; z-index: 2; }
.hero__img-b { width: 42%; right: 0; top: 2%; z-index: 1; }

.hero__note {
  position: absolute; left: 0; bottom: -6px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow-m);
  font-size: 12.5px; font-weight: 600; color: var(--ink);
}
.hero__note b { color: var(--accent); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 300px; }
  .hero__note { left: 4%; }
}

/* =========================================================
   marquee / trust strip
   ========================================================= */
.strip { border-block: 1px solid var(--line); background: var(--card); }
.strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  padding: 26px 26px; display: flex; gap: 13px; align-items: flex-start;
  border-left: 1px solid var(--line-soft);
}
.strip__item:first-child { border-left: 0; }
.strip__icon {
  width: 34px; height: 34px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.strip__icon svg { width: 17px; height: 17px; }
.strip__t { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.strip__d { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 3px; }
@media (max-width: 900px) { .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(3) { border-left: 0; }
  .strip__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); } }
@media (max-width: 520px) { .strip__grid { grid-template-columns: 1fr; }
  .strip__item { border-left: 0; border-top: 1px solid var(--line-soft); }
  .strip__item:first-child { border-top: 0; } }

/* =========================================================
   category cards
   ========================================================= */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .cats { grid-template-columns: 1fr; } }

.cat {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 236px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: transparent; }
.cat::after {
  content: ""; position: absolute; right: -46px; bottom: -46px;
  width: 148px; height: 148px; border-radius: 50%;
  background: var(--paper-2); transition: transform .55s var(--ease);
}
.cat:hover::after { transform: scale(1.18); }
.cat > * { position: relative; z-index: 1; }
.cat__num { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; color: var(--muted); }
.cat__body { margin-top: auto; padding-top: 26px; }
.cat__t { font-size: 1.28rem; font-weight: 700; color: var(--ink); }
.cat__d { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.cat__go {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
}
.cat__go svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.cat:hover .cat__go svg { transform: translateX(4px); }
.cat--gold::after  { background: var(--gold-soft); }
.cat--gold .cat__go { color: var(--gold); }
.cat--forest::after { background: var(--forest-soft); }
.cat--forest .cat__go { color: var(--forest); }
.cat--soon .cat__go { color: var(--muted); }

/* =========================================================
   product grid
   ========================================================= */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 30px;
}
.filter {
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid-p { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1060px) { .grid-p { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .grid-p { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 440px)  { .grid-p { grid-template-columns: 1fr; } }

.card {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: transparent; }
.card.is-hidden { display: none; }

.card__media {
  position: relative; aspect-ratio: 1/1; background: var(--paper-2); overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.055); }
.card__tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
}
.card__tag--accent { background: var(--accent); }
.card__tag--gold { background: var(--gold); }

.card__body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; color: var(--muted); }
.card__t { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.card__d { font-size: 13.2px; color: var(--muted); line-height: 1.65; }
.card__sizes { display: flex; flex-wrap: wrap; gap: 5px; }
.size {
  padding: 3.5px 9px; border-radius: 6px;
  background: var(--paper-2); font-size: 11.5px; font-weight: 600; color: var(--ink-2);
}
.card__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.card__price { font-size: 1.12rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.card__price small { font-size: 11.5px; font-weight: 600; color: var(--muted); margin-right: 5px; letter-spacing: 0; }
.card__cta {
  font-size: 12.5px; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
}
.card__cta svg { width: 13px; height: 13px; }

/* =========================================================
   story / split
   ========================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__copy > * + * { margin-top: 18px; }
.split__art {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--paper-2), #fff);
  padding: clamp(26px, 4vw, 48px); min-height: 300px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.split__art img {
  border-radius: 14px;
  border: 1px solid rgba(23,19,15,.06);
  background: #fff;
  box-shadow: 0 22px 44px -20px rgba(23,19,15,.32);
}

.facts { display: grid; gap: 2px; margin-top: 8px; }
.fact { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.fact:last-child { border-bottom: 0; }
.fact__k {
  flex: none; width: 116px; font-size: 13px; font-weight: 700; color: var(--ink);
}
.fact__v { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   band (CTA sections)
   ========================================================= */
.band {
  position: relative; overflow: hidden;
  background: var(--forest); color: rgba(255,255,255,.78);
}
.band--ink { background: var(--ink); }
.band::before {
  content: ""; position: absolute; right: -10%; top: -40%;
  width: 620px; height: 620px; border-radius: 50%;
  background: rgba(255,255,255,.045);
}
.band .wrap { position: relative; z-index: 1; }
.band h2, .band h3 { color: #fff; }
.band__grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 60px); align-items: center;
  padding: clamp(56px, 7vw, 92px) 0;
}
@media (max-width: 880px) { .band__grid { grid-template-columns: 1fr; } }
.band__copy > * + * { margin-top: 18px; }
.band .eyebrow { color: rgba(255,255,255,.6); }
.band__cta { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.band__list { display: grid; gap: 12px; }
.band__li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 17px 19px; border-radius: var(--r);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.band__li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: rgba(255,255,255,.75); }
.band__li b { display: block; color: #fff; font-size: 14.5px; font-weight: 700; }
.band__li span { font-size: 13px; line-height: 1.65; }

/* =========================================================
   steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 26px 22px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card);
}
.step__n {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 700;
}
.step__t { margin-top: 16px; font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.step__d { margin-top: 7px; font-size: 13.3px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   faq
   ========================================================= */
.faq { border-top: 1px solid var(--line); max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 1.02rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
}
.faq__q svg { width: 18px; height: 18px; flex: none; color: var(--muted); transition: transform .35s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); color: var(--accent); }
.faq__a { overflow: hidden; height: 0; transition: height .38s var(--ease); }
.faq__a > div { padding: 0 4px 26px; font-size: 14.5px; color: var(--muted); line-height: 1.85; max-width: 62ch; }

/* =========================================================
   page header (sub pages)
   ========================================================= */
.page-head {
  position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 82px) 0 clamp(34px, 4vw, 52px);
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-head__inner { max-width: 720px; }
.page-head__inner > * + * { margin-top: 15px; }
.crumb { font-size: 12.5px; color: var(--muted); }
.crumb a:hover { color: var(--ink); }

/* =========================================================
   forms
   ========================================================= */
.form-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(26px, 4vw, 52px); align-items: start; }
@media (max-width: 940px) { .form-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 38px);
}
.panel + .panel { margin-top: 18px; }
.panel__t { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.panel__d { margin-top: 7px; font-size: 13.5px; color: var(--muted); line-height: 1.75; }

.fieldset { border: 0; padding: 0; margin: 0; }
.fieldset + .fieldset { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.fieldset__legend {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  margin-bottom: 20px;
}
.fieldset__legend i {
  width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 11px; font-weight: 700; font-style: normal;
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-row--3 { grid-template-columns: 1.2fr .9fr .9fr; }
@media (max-width: 620px) { .f-row, .f-row--3 { grid-template-columns: 1fr; } }
.f-row + .f-row, .f-field + .f-row, .f-row + .f-field, .f-field + .f-field { margin-top: 16px; }

.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.f-label span { color: var(--accent); margin-left: 2px; }
.f-hint { font-size: 12px; color: var(--muted); }

.input, .select, .textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); font-size: 14.5px; color: var(--ink);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: #B6ABA0; }
.input:focus, .select:focus, .textarea:focus {
  outline: 0; border-color: var(--ink); background: #fff;
  box-shadow: 0 0 0 3px rgba(23,19,15,.06);
}
.textarea { resize: vertical; min-height: 108px; line-height: 1.7; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A7E73' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 16px;
  padding-right: 40px;
}

.check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.check input { margin: 3px 0 0; width: 16px; height: 16px; accent-color: var(--accent); flex: none; }
.check span { font-size: 13.2px; color: var(--muted); line-height: 1.65; }
.check a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.items { display: grid; gap: 12px; }
.item-row {
  display: grid; grid-template-columns: 1.6fr 1fr .55fr auto; gap: 10px; align-items: center;
}
@media (max-width: 700px) {
  .item-row { grid-template-columns: 1fr 1fr; }
  .item-row .item-del { grid-column: 2; justify-self: end; }
}
.item-del {
  width: 40px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: transparent; color: var(--muted); cursor: pointer; display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.item-del:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.item-del svg { width: 15px; height: 15px; }

.summary { position: sticky; top: 96px; }
.summary__list { display: grid; gap: 11px; margin-top: 18px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.8px; }
.summary__row b { color: var(--ink); font-weight: 700; }
.summary__empty { font-size: 13.5px; color: var(--muted); }
.summary__total {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary__total b { font-size: 1.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.summary__note { margin-top: 14px; font-size: 12px; color: var(--muted); line-height: 1.7; }

.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 90;
  transform: translate(-50%, 20px);
  padding: 13px 22px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-l);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   notice box
   ========================================================= */
.note {
  display: flex; gap: 13px; padding: 18px 20px;
  border-radius: var(--r); border: 1px solid var(--line);
  background: var(--paper-2);
}
.note svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--muted); }
.note p { font-size: 13.2px; color: var(--muted); line-height: 1.8; }
.note b { color: var(--ink); }
.note--accent { background: var(--accent-soft); border-color: #F2DCD7; }
.note--accent svg { color: var(--accent); }

/* =========================================================
   footer
   ========================================================= */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.55);
  padding: clamp(52px, 6vw, 78px) 0 34px;
  font-size: 13.4px; line-height: 1.85;
}
.footer__top {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.1fr; gap: 34px;
  padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.11);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .brand__ko { color: #fff; }
.footer__brand .brand__en { color: rgba(255,255,255,.42); }
.footer__slogan { margin-top: 16px; max-width: 26em; }
.footer__h {
  font-size: 12px; font-weight: 700; letter-spacing: .13em; color: #fff;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer__list li + li { margin-top: 8px; }
.footer__list a:hover { color: #fff; }
.footer__tel { font-size: 1.42rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.3; }
.footer__hours { margin-top: 8px; font-size: 12.8px; }
.footer__legal {
  padding-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 26px;
  justify-content: space-between; align-items: flex-start;
  font-size: 12.3px; color: rgba(255,255,255,.4);
}
.footer__biz { max-width: 62ch; line-height: 1.9; }
.footer__biz span { white-space: nowrap; }
.footer__biz span::after { content: "·"; margin: 0 8px; opacity: .5; }
.footer__biz span:last-child::after { content: ""; margin: 0; }
.footer__disclaimer {
  margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.055); color: rgba(255,255,255,.5);
  font-size: 12.2px; line-height: 1.8;
}

/* =========================================================
   float cta (mobile)
   ========================================================= */
.float-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55;
  display: none; gap: 9px;
}
.float-cta .btn { flex: 1; padding: 14px 16px; box-shadow: var(--shadow-l); }
@media (max-width: 700px) { .float-cta { display: flex; } body { padding-bottom: 78px; } }

/* =========================================================
   reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .cat:hover { transform: none; }
}
