@charset "UTF-8";
/* ═══════════════════════════════════════════════════════
   도고수산 — 1989년부터 국내산 민물장어
   먹빛 붓글씨 × 한지 톤
   ═══════════════════════════════════════════════════════ */

/* ── 폰트 ───────────────────────────────────────────── */
@font-face {
  font-family: 'Pretendard Variable';
  src: url('../fonts/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'MaruBuri';
  src: url('../fonts/MaruBuri-Light.woff2') format('woff2');
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: 'MaruBuri';
  src: url('../fonts/MaruBuri-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'MaruBuri';
  src: url('../fonts/MaruBuri-SemiBold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'MaruBuri';
  src: url('../fonts/MaruBuri-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Haerye';
  src: url('../fonts/SangjuHaerye.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}

/* ── 토큰 ───────────────────────────────────────────── */
:root {
  /* 먹 — 5단계 */
  --ink-900: #14110f;
  --ink-800: #221d19;
  --ink-700: #3a322c;
  --ink-500: #5c5148;
  --ink-300: #8d8177;
  --ink-100: #c4b9ad;

  /* 한지 */
  --paper:      #f4efe4;
  --paper-warm: #ece4d4;
  --paper-deep: #ded3bd;
  --paper-card: #fbf8f1;

  /* 강물 — 청록 계열 (물, 신선함) */
  --river-deep: #1c3f42;
  --river:      #2f6b6b;
  --river-soft: #6f9b96;
  --river-mist: #cfdfda;

  /* 숯불 — 액센트 (구이, 온기) */
  --ember:      #b8452a;
  --ember-soft: #d97c4f;
  --gold:       #a8813c;

  --f-brush: 'Haerye', 'MaruBuri', serif;
  --f-serif: 'MaruBuri', serif;
  --f-sans:  'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1180px;
  --r-sm: 4px;
  --r-md: 10px;

  --shadow-soft: 0 2px 14px rgba(20,17,15,.07);
  --shadow-lift: 0 14px 40px rgba(20,17,15,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── 리셋 ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-800);
  background: var(--paper);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.32;
  text-rendering: geometricPrecision;
}

/* 한지 텍스처 — 전역 은은한 결 */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  background-image:
    repeating-linear-gradient(94deg, rgba(140,124,100,.028) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(4deg,  rgba(140,124,100,.022) 0 1px, transparent 1px 4px);
}

.wrap { width: min(var(--wrap), 100% - 44px); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(var(--wrap), 100% - 32px); } }

/* 반응형 br */
.br-md { display: none; }
@media (min-width: 768px) { .br-md { display: inline; } }

/* ═══════════════════════════════════════════════════════
   인트로
   ═══════════════════════════════════════════════════════ */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--paper);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
body.intro-done #intro { opacity: 0; visibility: hidden; }
#intro video, #intro .intro-fallback {
  width: min(60vmin, 460px);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.intro-logo {
  position: absolute;
  width: min(42vmin, 320px);
  opacity: 0;
  animation: introLogo 1.5s var(--ease) 2.6s forwards;
}
@keyframes introLogo {
  from { opacity: 0; transform: scale(.94); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1);   filter: blur(0); }
}
.intro-skip {
  position: absolute; bottom: 6vh; left: 50%; transform: translateX(-50%);
  font-family: var(--f-serif); font-size: .84rem; letter-spacing: .22em;
  color: var(--ink-300);
  padding: 10px 20px;
}
@media (prefers-reduced-motion: reduce) {
  #intro { display: none; }
}

/* ═══════════════════════════════════════════════════════
   헤더
   ═══════════════════════════════════════════════════════ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .45s var(--ease), box-shadow .45s var(--ease);
}
.hdr::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(244,239,228,.9);
  backdrop-filter: blur(14px) saturate(1.1);
  opacity: 0; transition: opacity .45s var(--ease);
}
.hdr.scrolled::after { opacity: 1; }
.hdr.scrolled { box-shadow: 0 1px 0 rgba(20,17,15,.09); }

.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand-txt { line-height: 1.16; }
.brand-name {
  font-family: var(--f-brush); font-size: 1.32rem; letter-spacing: .06em;
  color: var(--ink-900); display: block;
}
.brand-sub {
  font-family: var(--f-serif); font-size: .68rem; letter-spacing: .3em;
  color: var(--ink-300); display: block; margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  font-family: var(--f-serif); font-weight: 600; font-size: .97rem;
  padding: 11px 17px; color: var(--ink-700);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 17px; right: 17px; bottom: 6px;
  height: 1px; background: var(--ink-900);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--ink-900); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-current { color: var(--ink-900); }
.nav a.is-current::after { transform: scaleX(1); background: var(--ember); }

.hdr-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink-900); color: var(--paper);
  font-family: var(--f-sans); font-weight: 700; font-size: .92rem;
  letter-spacing: .01em;
  padding: 12px 20px; border-radius: 999px;
  min-height: 44px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hdr-tel:hover { background: var(--ember); transform: translateY(-1px); }
.hdr-tel svg { width: 15px; height: 15px; }

.burger { display: none; width: 46px; height: 46px; place-items: center; }
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink-800);
  position: relative; transition: background .3s;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 1.5px;
  background: var(--ink-800); transition: transform .35s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--paper-card);
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 4px; padding: 40px 30px;
    transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(20,17,15,.16);
  }
  body.menu-open .nav { transform: translateX(0); }
  .nav a { font-size: 1.16rem; padding: 15px 6px; }
  .nav a::after { left: 6px; right: auto; width: 26px; }
  .hdr-tel { display: none; }
  /* ⚠️ .nav a 의 color가 .hdr-tel 을 덮어써 글씨가 안 보이던 문제 — 색 명시 */
  .nav .hdr-tel {
    display: inline-flex; margin-top: 20px; justify-content: center;
    color: var(--paper); font-size: 1.06rem;
  }
  .nav .hdr-tel::after { display: none; }   /* 밑줄 애니메이션 제외 */
}

/* ═══════════════════════════════════════════════════════
   히어로
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(47,107,107,.13), transparent 62%),
    radial-gradient(90% 70% at 8% 92%,   rgba(184,69,42,.08),  transparent 60%),
    linear-gradient(178deg, var(--paper) 0%, var(--paper-warm) 100%);
}
/* 물결 결 — 배경 깊이 */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-radial-gradient(ellipse 900px 120px at 70% 42%,
      rgba(47,107,107,.055) 0 2px, transparent 2px 42px);
  mask-image: linear-gradient(105deg, transparent 20%, #000 55%, transparent 92%);
  opacity: .8;
}

.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 5vw, 76px); align-items: center;
}
@media (max-width: 940px) {
  .hero-in { grid-template-columns: 1fr; gap: 42px; }
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--f-serif); font-weight: 600;
  font-size: .84rem; letter-spacing: .2em;
  color: var(--river); margin-bottom: 26px;
}
.hero-kicker::before {
  content: ''; width: 40px; height: 1px; background: var(--river-soft);
}

.hero h1 {
  font-family: var(--f-brush);
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.24;
  letter-spacing: -.005em;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
/* 붓으로 그은 밑줄 — 글자 아래로만 */
.hero h1 em::after {
  content: ''; position: absolute;
  left: -1.5%; right: -1.5%; bottom: -.1em; height: .16em;
  background: linear-gradient(92deg,
    rgba(184,69,42,0) 0%, rgba(184,69,42,.34) 12%,
    rgba(184,69,42,.4) 84%, rgba(184,69,42,0) 100%);
  border-radius: 50%;
  transform: scaleX(0); transform-origin: left;
  animation: brushIn 1.1s var(--ease) .5s forwards;
}
@keyframes brushIn { to { transform: scaleX(1); } }

.hero-lead {
  font-family: var(--f-serif);
  font-size: clamp(1.04rem, .6vw + .92rem, 1.24rem);
  line-height: 1.95; color: var(--ink-500);
  max-width: 30em; margin: 0 0 38px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 15px 30px;
  font-family: var(--f-sans); font-weight: 700; font-size: 1rem;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--ink {
  background: var(--ink-900); color: var(--paper);
  box-shadow: 0 6px 22px rgba(20,17,15,.2);
}
.btn--ink:hover { background: var(--ember); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,69,42,.3); }
.btn--ghost {
  border: 1.5px solid var(--ink-100); color: var(--ink-800); background: rgba(251,248,241,.6);
}
.btn--ghost:hover { border-color: var(--ink-900); background: var(--paper-card); transform: translateY(-2px); }
.btn--store {
  background: var(--river); color: #fff;
  box-shadow: 0 6px 22px rgba(47,107,107,.26);
}
.btn--store:hover { background: var(--river-deep); transform: translateY(-2px); }

/* 히어로 비주얼 — 원형 먹 프레임 */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px; margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(20,17,15,.07);
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-frame:hover img { transform: scale(1.07); }
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 56%, rgba(20,17,15,.22) 100%);
}
/* 원을 감싸는 붓 획 */
.hero-ring {
  position: absolute; inset: -5%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(20,17,15,.5);
  border-right-color: rgba(20,17,15,.34);
  animation: ringSpin 26s linear infinite;
  pointer-events: none;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* 히어로 배지 — 1989 */
.hero-badge {
  position: absolute; right: 2%; bottom: 6%;
  z-index: 3;
  background: var(--paper-card);
  border-radius: 50%;
  width: clamp(92px, 15vw, 124px); aspect-ratio: 1;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-lift);
  font-family: var(--f-brush);
  line-height: 1.3;
}
.hero-badge b { display: block; font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--ink-900); }
.hero-badge span { display: block; font-family: var(--f-serif); font-size: .7rem; letter-spacing: .14em; color: var(--ink-300); }

/* ═══════════════════════════════════════════════════════
   신뢰 스트립
   ═══════════════════════════════════════════════════════ */
.strip {
  background: var(--ink-900); color: var(--paper);
  padding: 26px 0;
  position: relative; z-index: 2;
}
.strip-in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; text-align: center;
}
.strip-item b {
  display: block; font-family: var(--f-brush);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--paper);
  letter-spacing: .02em;
}
.strip-item span {
  display: block; font-family: var(--f-serif);
  font-size: .78rem; letter-spacing: .13em; color: rgba(244,239,228,.55);
  margin-top: 3px;
}
@media (max-width: 720px) {
  .strip-in { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
}

/* ═══════════════════════════════════════════════════════
   섹션 공통
   ═══════════════════════════════════════════════════════ */
.sec { padding: clamp(76px, 10vw, 132px) 0; position: relative; }
.sec--paper { background: var(--paper-warm); }
.sec--card  { background: var(--paper-card); }

.sec-head { margin-bottom: clamp(38px, 5vw, 64px); }
.sec-head--center { text-align: center; }
.sec-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-serif); font-weight: 600;
  font-size: .8rem; letter-spacing: .2em; color: var(--river);
  margin-bottom: 16px;
}
.sec-kicker::before { content: ''; width: 26px; height: 1px; background: var(--river-soft); }
.sec-head--center .sec-kicker::after { content: ''; width: 26px; height: 1px; background: var(--river-soft); }

.sec-title {
  font-family: var(--f-brush);
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  color: var(--ink-900); line-height: 1.34;
  letter-spacing: -.002em;
}
.sec-desc {
  font-family: var(--f-serif);
  font-size: clamp(1rem, .4vw + .9rem, 1.13rem);
  line-height: 1.9; color: var(--ink-500);
  margin: 18px 0 0; max-width: 46em;
}
.sec-head--center .sec-desc { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════
   메뉴 3분기 (블로그 / 상품 / 스토어)
   ═══════════════════════════════════════════════════════ */
.gates { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
@media (max-width: 860px) { .gates { grid-template-columns: 1fr; } }

.gate {
  position: relative;
  display: block;
  background: var(--paper-card);
  border: 1px solid rgba(20,17,15,.08);
  border-radius: var(--r-md);
  padding: clamp(30px, 3.4vw, 44px) clamp(24px, 2.6vw, 34px) clamp(26px, 3vw, 36px);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.gate::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent, var(--river));
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.gate:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.gate:hover::before { transform: scaleY(1); }

.gate-num {
  font-family: var(--f-serif); font-size: .76rem; letter-spacing: .26em;
  color: var(--ink-300); display: block; margin-bottom: 20px;
}
.gate-ico {
  display: block;
  width: 44px; height: 44px; margin-bottom: 20px;
  color: var(--accent, var(--river));
}
.gate-ico svg { display: block; width: 44px; height: 44px; }
.gate h3 {
  font-family: var(--f-brush); font-size: clamp(1.32rem, 2vw, 1.6rem);
  color: var(--ink-900); margin-bottom: 12px;
}
.gate p {
  font-family: var(--f-serif); font-size: .97rem; line-height: 1.85;
  color: var(--ink-500); margin: 0 0 22px;
}
.gate-go {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 700; font-size: .93rem;
  color: var(--accent, var(--river));
}
.gate-go svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.gate:hover .gate-go svg { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
   About — 좌 카피 / 우 이미지
   ═══════════════════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px); align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-quote {
  font-family: var(--f-brush);
  font-size: clamp(1.3rem, 2.2vw, 1.72rem);
  line-height: 1.72; color: var(--ink-900);
  padding-left: 26px; border-left: 2px solid var(--ember);
  margin: 0 0 30px;
}
.about-body p {
  font-family: var(--f-serif); line-height: 1.95;
  color: var(--ink-500); margin: 0 0 17px;
}
.about-sign {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(20,17,15,.1);
  font-family: var(--f-serif); font-size: .93rem; color: var(--ink-300);
}
.about-sign b { color: var(--ink-800); font-weight: 600; }

.about-photo {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(transparent, rgba(20,17,15,.86));
  color: var(--paper);
  font-family: var(--f-serif); font-size: .88rem; letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════
   상품 카드
   ═══════════════════════════════════════════════════════ */
.filters {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-bottom: clamp(28px, 3.4vw, 42px);
}
.filter {
  font-family: var(--f-serif); font-weight: 600; font-size: .94rem;
  padding: 10px 21px; min-height: 44px;
  border: 1px solid rgba(20,17,15,.14); border-radius: 999px;
  color: var(--ink-500); background: transparent;
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--ink-500); color: var(--ink-900); }
.filter.is-on {
  background: var(--ink-900); border-color: var(--ink-900); color: var(--paper);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 262px), 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper-card);
  border: 1px solid rgba(20,17,15,.07);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.card-media { position: relative; overflow: hidden; background: var(--paper-deep); }
.card-media img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }

/* 반짝임 — 쇼핑몰 느낌 */
.card-media::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%;
  background: linear-gradient(100deg,
    transparent, rgba(255,255,255,.5) 46%, rgba(255,255,255,.72) 52%, transparent);
  transform: skewX(-16deg);
  transition: left .85s var(--ease);
  pointer-events: none;
}
.card:hover .card-media::after { left: 130%; }

.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--f-serif); font-weight: 600; font-size: .72rem;
  letter-spacing: .1em;
  background: var(--ink-900); color: var(--paper);
  padding: 6px 12px; border-radius: 999px;
}
.card-tag--best { background: var(--ember); }

.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-family: var(--f-serif); font-size: .74rem; letter-spacing: .16em;
  color: var(--river); margin-bottom: 9px;
}
.card h3 {
  font-family: var(--f-brush); font-size: 1.2rem; line-height: 1.42;
  color: var(--ink-900); margin-bottom: 4px;
}
.card-spec {
  font-family: var(--f-serif); font-size: .85rem; color: var(--ink-300);
  margin-bottom: 12px;
}
.card-note {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, .3vw + .88rem, 1rem);   /* 모바일 15px 이상 확보 */
  line-height: 1.78;
  color: var(--ink-500); margin: 0 0 16px;
}
.card-foot { margin-top: auto; }
.card-price {
  display: flex; align-items: baseline; gap: 7px;
  margin-bottom: 14px;
}
.card-price b {
  font-family: var(--f-sans); font-weight: 800;
  font-size: 1.42rem; color: var(--ink-900); letter-spacing: -.01em;
}
.card-price i {
  font-style: normal; font-family: var(--f-serif);
  font-size: .8rem; color: var(--ink-300);
}
.card-buy {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 48px;
  background: var(--ink-900); color: var(--paper);
  font-family: var(--f-sans); font-weight: 700; font-size: .95rem;
  border-radius: var(--r-sm);
  transition: background .3s var(--ease);
}
.card-buy svg { width: 15px; height: 15px; }
.card-buy:hover { background: var(--river); }

.grid-empty {
  grid-column: 1/-1; text-align: center; padding: 70px 20px;
  font-family: var(--f-serif); color: var(--ink-300);
}

/* ═══════════════════════════════════════════════════════
   프로세스
   ═══════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 30px; }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(20,17,15,.13);
}
.step-n {
  font-family: var(--f-serif); font-size: .76rem; letter-spacing: .22em;
  color: var(--ember); display: block; margin-bottom: 13px;
}
.step h4 { font-family: var(--f-brush); font-size: 1.24rem; color: var(--ink-900); margin-bottom: 9px; }
.step p {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, .3vw + .88rem, 1rem);   /* 모바일 15px 이상 */
  line-height: 1.82; color: var(--ink-500); margin: 0;
}

/* ═══════════════════════════════════════════════════════
   매장 / 연락
   ═══════════════════════════════════════════════════════ */
.shops { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 28px); }
@media (max-width: 720px) { .shops { grid-template-columns: 1fr; } }

.shop {
  background: var(--paper-card);
  border: 1px solid rgba(20,17,15,.08);
  border-radius: var(--r-md);
  padding: clamp(26px, 3vw, 36px);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.shop:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.shop-name {
  font-family: var(--f-brush); font-size: 1.44rem;
  color: var(--ink-900); margin-bottom: 6px;
}
.shop-role {
  font-family: var(--f-serif); font-size: .8rem; letter-spacing: .16em;
  color: var(--river); margin-bottom: 20px;
}
.shop-tel {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-weight: 800;
  font-size: clamp(1.32rem, 2.6vw, 1.62rem);
  color: var(--ink-900); letter-spacing: -.01em;
  min-height: 48px;
  transition: color .3s var(--ease);
}
.shop-tel:hover { color: var(--ember); }
.shop-tel svg { width: 19px; height: 19px; color: var(--ember); }
.shop-meta {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(20,17,15,.09);
  font-family: var(--f-serif); font-size: .9rem; line-height: 1.8; color: var(--ink-500);
}

/* ═══════════════════════════════════════════════════════
   최종 CTA
   ═══════════════════════════════════════════════════════ */
.cta {
  position: relative; overflow: hidden;
  background: var(--ink-900); color: var(--paper);
  padding: clamp(72px, 9vw, 122px) 0;
  text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(47,107,107,.3), transparent 68%),
    radial-gradient(60% 90% at 82% 100%, rgba(184,69,42,.2), transparent 66%);
}
.cta-in { position: relative; z-index: 2; }
.cta h2 {
  font-family: var(--f-brush);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.38; margin-bottom: 20px;
}
.cta p {
  font-family: var(--f-serif);
  font-size: clamp(1rem, .5vw + .9rem, 1.15rem);
  line-height: 1.9; color: rgba(244,239,228,.72);
  max-width: 34em; margin: 0 auto 38px;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta .btn--ghost { border-color: rgba(244,239,228,.3); color: var(--paper); background: transparent; }
.cta .btn--ghost:hover { border-color: var(--paper); background: rgba(244,239,228,.09); }

/* ═══════════════════════════════════════════════════════
   푸터
   ═══════════════════════════════════════════════════════ */
.ftr { background: var(--paper-warm); padding: clamp(50px, 6vw, 76px) 0 32px; }
.ftr-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(20,17,15,.1);
}
@media (max-width: 780px) { .ftr-top { grid-template-columns: 1fr; gap: 32px; } }

.ftr-brand img { width: 66px; margin-bottom: 16px; }
.ftr-brand p {
  font-family: var(--f-serif); font-size: .93rem; line-height: 1.85;
  color: var(--ink-500); margin: 0; max-width: 26em;
}
.ftr-col h4 {
  font-family: var(--f-serif); font-size: .78rem; letter-spacing: .2em;
  color: var(--ink-300); margin-bottom: 16px; font-weight: 600;
}
.ftr-col ul { list-style: none; margin: 0; padding: 0; }
.ftr-col li { margin-bottom: 2px; }
/* 터치타겟 44px 확보 — 전화 링크가 핵심 CTA라 반드시 */
.ftr-col a, .ftr-col span {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 4px 0;
  font-family: var(--f-serif);
  font-size: clamp(.98rem, .3vw + .9rem, 1rem);
  color: var(--ink-700);
  transition: color .3s var(--ease);
}
.ftr-col a:hover { color: var(--ember); }

.ftr-btm {
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  align-items: center; justify-content: space-between;
  font-family: var(--f-serif); font-size: .84rem; color: var(--ink-300);
}
.ftr-credit { letter-spacing: .1em; }
.ftr-credit a {
  display: inline-flex; align-items: center;
  min-height: 44px; color: var(--ink-500);
}
.ftr-credit a:hover { color: var(--ember); }

/* ═══════════════════════════════════════════════════════
   모바일 고정 CTA
   ═══════════════════════════════════════════════════════ */
.sticky {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 800;
  display: none; gap: 9px;
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky .btn {
  flex: 1; min-height: 54px; padding: 14px 16px;
  white-space: nowrap;                 /* 좁은폰서 두 줄 접힘 방지 */
  box-shadow: 0 8px 26px rgba(20,17,15,.26);
}
.sticky .btn--store { flex: 0 0 34%; }
@media (max-width: 860px) { .sticky { display: flex; } body { padding-bottom: 92px; } }
/* 좁은 화면에선 버튼 글씨 줄여 한 줄 유지 */
@media (max-width: 380px) {
  .sticky .btn { font-size: .92rem; padding: 14px 10px; gap: 6px; }
  .sticky .btn svg { width: 15px; height: 15px; }
}

/* ═══════════════════════════════════════════════════════
   스크롤 리빌
   ═══════════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════════════
   서브페이지 히어로
   ═══════════════════════════════════════════════════════ */
.phero {
  position: relative;
  padding: clamp(120px, 15vw, 176px) 0 clamp(44px, 6vw, 70px);
  background: linear-gradient(178deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden;
}
.phero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 88% 10%, rgba(47,107,107,.11), transparent 62%);
}
.phero-in { position: relative; z-index: 2; }
.phero h1 {
  font-family: var(--f-brush);
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  color: var(--ink-900); line-height: 1.3;
}
.phero p {
  font-family: var(--f-serif);
  font-size: clamp(1rem, .5vw + .9rem, 1.13rem);
  line-height: 1.9; color: var(--ink-500);
  margin: 18px 0 0; max-width: 44em;
}
.crumb {
  font-family: var(--f-serif); font-size: .88rem; letter-spacing: .1em;
  color: var(--ink-300); margin-bottom: 14px;
}
.crumb a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; min-width: 44px;      /* 터치타겟 44x44 확보 */
}
.crumb a:hover { color: var(--ember); }

/* 안내 배너 */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper-card);
  border: 1px solid rgba(47,107,107,.22);
  border-left: 3px solid var(--river);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin-bottom: clamp(28px, 3.4vw, 40px);
}
.notice svg { width: 19px; height: 19px; color: var(--river); flex: none; margin-top: 3px; }
.notice p {
  margin: 0; font-family: var(--f-serif);
  font-size: clamp(.95rem, .3vw + .88rem, 1rem);
  line-height: 1.82; color: var(--ink-500);
}
.notice b { color: var(--ink-800); font-weight: 600; }
/* 안내문 속 전화번호도 터치타겟 확보 */
.notice a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 2px;
}
