/* ===== goatduck.hyanggoat.com — 한지 & 와인 시스템 (govgoat 다크럭셔리와 정반대) ===== */

:root {
  --paper:       #fbf6ec;
  --paper-deep:  #f3eadb;
  --paper-soft:  #fff9ed;
  --ink:         #1a1715;
  --ink-soft:    #4d4640;
  --ink-mute:    #88817a;
  --wine:        #6e1f1f;
  --wine-bright: #9a2a2a;
  --wine-wash:   rgba(110,31,31,0.10);
  --wine-line:   rgba(110,31,31,0.22);
  --sage:        #607a6a;
  --sage-soft:   #8aa698;
  --brass:       #b08a4f;
  --brass-line:  rgba(176,138,79,0.34);
  --brass-thin:  rgba(176,138,79,0.18);
  --shadow-1:    0 2px 6px rgba(50,30,18,0.06), 0 14px 32px rgba(50,30,18,0.06);
  --shadow-2:    0 4px 14px rgba(50,30,18,0.10), 0 28px 56px rgba(50,30,18,0.10);
  --maxw:        1200px;
  --pad:         clamp(18px, 4vw, 56px);
  --radius:      6px;
  --radius-lg:   12px;
  --serif-kr:    "Nanum Myeongjo", "Gowun Batang", "Noto Serif KR", "Apple SD Gothic Neo", serif;
  --serif-en:    "Crimson Pro", "EB Garamond", Georgia, serif;
  --sans:        "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.78;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; border-radius: 2px; }
hr { border: 0; border-top: 1px solid var(--brass-line); margin: 0; }

/* hanji paper grain on body — subtle, only visible on close inspection */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(40vw 35vh at 90% -5%, rgba(110,31,31,0.05), transparent 60%),
    radial-gradient(45vw 38vh at -5% 90%, rgba(96,122,106,0.05), transparent 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,   rgba(120,80,40,0.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg,  rgba(120,80,40,0.018) 0 1px, transparent 1px 4px);
  opacity: 0.7;
}

/* ===== Ink-wash drift canvas (different from govgoat's gold particles) ===== */
.ink-wash {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  width: 100%; height: 100%;
}

/* ===== Top bar — paper ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 18px var(--pad);
  background: rgba(251,246,236,0.94);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border-bottom: 1px solid var(--brass-line);
  transition: padding .25s, border-color .25s;
}
.topbar.scrolled { padding-top: 12px; padding-bottom: 12px; border-bottom-color: var(--brass); }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__seal { width: 44px; height: 44px; flex: 0 0 44px; }
.brand__seal img { width: 100%; height: 100%; }
.brand__txt {
  font-family: var(--serif-kr);
  font-weight: 800; font-size: 18px;
  color: var(--ink); white-space: nowrap;
  letter-spacing: -0.005em;
}

.topnav { margin-left: auto; display: flex; gap: 26px; flex-wrap: wrap; }
.topnav a {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--ink-soft); position: relative; padding: 6px 0;
  transition: color .2s;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--wine);
  transition: right .35s ease;
}
.topnav a:hover { color: var(--wine); }
.topnav a:hover::after { right: 0; }

.topcall {
  display: inline-flex; flex-direction: column; padding: 10px 18px;
  border: 1px solid var(--wine); border-radius: 999px;
  background: var(--paper-soft);
  transition: background .25s, transform .25s;
}
.topcall:hover { background: var(--wine); transform: translateY(-1px); }
.topcall:hover span, .topcall:hover strong { color: var(--paper); }
.topcall span { font-size: 10px; letter-spacing: .25em; color: var(--wine); text-transform: uppercase; }
.topcall strong { font-family: var(--serif-en); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: .03em; transition: color .25s; }

@media (max-width: 980px) {
  .topnav { display: none; }
  .brand__txt { font-size: 16px; }
  .brand__seal { width: 38px; height: 38px; flex-basis: 38px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .02em;
  border: 1px solid transparent; border-radius: 0;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.3), background .25s, color .25s, border-color .25s, box-shadow .3s;
  position: relative;
}
.btn--wine {
  color: var(--paper);
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 8px 22px rgba(110,31,31,0.18);
}
.btn--wine:hover { background: var(--wine-bright); border-color: var(--wine-bright); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(110,31,31,0.28); }
.btn--ink {
  color: var(--ink); background: transparent;
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--paper {
  color: var(--ink); background: var(--paper-soft);
  border-color: var(--brass-line);
}
.btn--paper:hover { background: var(--paper-deep); border-color: var(--brass); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* ===== Hero (editorial 2-column, image right) ===== */
.hero {
  position: relative;
  padding: 80px var(--pad) 100px;
  border-bottom: 1px solid var(--brass-line);
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}

.hero__copy { padding: 24px 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif-en); font-size: 13px;
  letter-spacing: .42em; color: var(--wine); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: ""; display: inline-block;
  width: 32px; height: 1px; background: var(--brass);
}
.hero__title {
  font-family: var(--serif-kr);
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 78px); line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title .accent { display: block; color: var(--wine); }
.hero__sub {
  font-size: clamp(15px, 1.16vw, 18px);
  color: var(--ink-soft); margin: 0 0 32px;
  line-height: 1.85; max-width: 560px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  max-width: 580px;
  border-top: 1px solid var(--brass-line);
}
.hero__chips li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--brass-thin);
  color: var(--ink-soft);
  font-size: 15px;
}
.hero__chips li span {
  color: var(--wine); font-family: var(--serif-en); font-weight: 600;
  font-size: 11px; letter-spacing: .28em; min-width: 64px; text-transform: uppercase;
}
.hero__chips li strong { color: var(--ink); font-weight: 500; }

/* Hero image frame — paper mat with wine corner mark */
.hero__art {
  position: relative;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--brass-line);
  box-shadow: var(--shadow-1);
}
.hero__art::before, .hero__art::after {
  content: ""; position: absolute; width: 22px; height: 22px;
  border: 2px solid var(--wine);
}
.hero__art::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero__art::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero__art img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.hero__art-caption {
  position: absolute; left: 28px; bottom: -14px;
  background: var(--wine); color: var(--paper);
  padding: 8px 18px;
  font-family: var(--serif-en); font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { order: -1; }
}

/* ===== Quote band (editorial pull-quote) ===== */
.quote {
  position: relative;
  padding: 110px var(--pad);
  background: var(--paper-deep);
  text-align: center;
  border-bottom: 1px solid var(--brass-line);
  overflow: hidden;
}
.quote__inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 1; }
.quote__mark {
  font-family: var(--serif-en); font-size: 120px; line-height: 1; color: var(--wine);
  display: block; margin-bottom: -40px; opacity: .85;
}
.quote__text {
  font-family: var(--serif-kr); font-weight: 700;
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.45;
  color: var(--ink); margin: 0 0 28px;
  letter-spacing: -0.012em;
}
.quote__text em { font-style: italic; color: var(--wine); font-weight: 800; }
.quote__attr {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink-mute); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  font-family: var(--serif-en); font-weight: 500;
}
.quote__attr::before, .quote__attr::after {
  content: ""; width: 28px; height: 1px; background: var(--brass);
}

/* ===== Section heads (left-aligned editorial) ===== */
.sec-head {
  max-width: var(--maxw); margin: 0 auto 56px;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: end;
}
.sec-head__kicker {
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: .42em; color: var(--wine); text-transform: uppercase;
  padding-bottom: 14px; border-bottom: 2px solid var(--wine);
  font-weight: 600;
}
.sec-head h2 {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(28px, 4.2vw, 50px); line-height: 1.18; letter-spacing: -0.014em;
  margin: 0; color: var(--ink);
}
.sec-head h2 em { font-style: italic; color: var(--wine); font-weight: 800; }
.sec-head__lead { color: var(--ink-soft); margin: 18px 0 0; max-width: 720px; font-size: 16px; }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Story (image-left / copy-right — opposite of govgoat) ===== */
.story { padding: 110px var(--pad); border-bottom: 1px solid var(--brass-line); }
.story__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.story__art {
  position: relative;
  display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 80px);
  gap: 14px; min-height: 540px;
}
.story__art figure {
  margin: 0; border: 1px solid var(--brass-line);
  background: var(--paper-soft); padding: 8px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.story__art figure img { width: 100%; height: 100%; object-fit: cover; }
.story__art .ph-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.story__art .ph-2 { grid-column: 2 / 3; grid-row: 1 / 4; }
.story__art .ph-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
.story__copy h3 {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.25; margin: 0 0 22px;
  color: var(--ink);
}
.story__copy h3 em { font-style: italic; color: var(--wine); font-weight: 800; }
.story__copy p { color: var(--ink-soft); margin: 0 0 20px; font-size: 16px; line-height: 1.85; max-width: 540px; }
.story__copy strong { color: var(--ink); font-weight: 700; }
.story__copy .seal-stamp {
  display: inline-block; margin-top: 14px;
  padding: 14px 22px;
  background: var(--paper-deep);
  border-left: 3px solid var(--wine);
  font-family: var(--serif-kr); font-weight: 700;
  color: var(--ink); font-size: 16px; line-height: 1.6;
}
@media (max-width: 980px) {
  .story__inner { grid-template-columns: 1fr; gap: 36px; }
  .story__art { min-height: 420px; }
}

/* ===== Pillars — vertical timeline (govgoat=horizontal grid) ===== */
.pillars { padding: 110px var(--pad); background: var(--paper-deep); border-bottom: 1px solid var(--brass-line); }
.pillars__list {
  list-style: none; padding: 0; margin: 0;
  max-width: 980px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border-left: 2px solid var(--wine);
  padding-left: 0;
}
.pillar {
  position: relative;
  padding: 36px 0 36px 56px;
  display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start;
  border-bottom: 1px solid var(--brass-thin);
}
.pillar:last-child { border-bottom: 0; }
.pillar::before {
  content: ""; position: absolute; left: -10px; top: 48px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper-deep); border: 2px solid var(--wine);
}
.pillar::after {
  content: ""; position: absolute; left: -3px; top: 55px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--wine);
}
.pillar__no {
  font-family: var(--serif-en);
  font-weight: 600; font-size: 64px; color: var(--wine);
  line-height: 1; padding-top: 12px;
  letter-spacing: 0;
  font-style: italic;
}
.pillar__no::after { content: ""; display: block; width: 40px; height: 2px; background: var(--brass); margin-top: 14px; }
.pillar__body h3 {
  font-family: var(--serif-kr); font-weight: 800; font-size: 24px;
  margin: 8px 0 14px; color: var(--ink);
}
.pillar__body p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin: 0; }
.pillar__body p strong { color: var(--wine); font-weight: 700; }

@media (max-width: 720px) {
  .pillar { grid-template-columns: 1fr; gap: 12px; padding-left: 36px; }
  .pillar__no { font-size: 48px; padding-top: 0; }
}

/* ===== Stats strip ===== */
.stats {
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--brass-line);
}
.stats__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--brass-thin);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif-en); font-weight: 600; font-style: italic;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1;
  color: var(--wine); display: block; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stat__num small { font-size: 0.55em; color: var(--brass); margin-left: 4px; font-style: normal; font-weight: 500; }
.stat__label {
  font-family: var(--serif-kr); font-weight: 700; color: var(--ink);
  font-size: 16px; line-height: 1.45; display: block; margin-bottom: 4px;
}
.stat__sub { font-size: 13px; color: var(--ink-mute); line-height: 1.55; }

@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--brass-thin); }
  .stat:nth-child(odd) { border-right: 1px solid var(--brass-thin); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ===== Signature — staggered 2-up ===== */
.signature { padding: 110px var(--pad); border-bottom: 1px solid var(--brass-line); }
.sig-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px 32px;
}
.sig-card {
  position: relative;
  display: flex; flex-direction: column;
}
.sig-card:nth-child(even) { margin-top: 60px; }
.sig-card__media {
  position: relative;
  border: 1px solid var(--brass-line);
  background: var(--paper-soft); padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.sig-card__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1.6s ease;
}
.sig-card:hover .sig-card__media img { transform: scale(1.04); }
.sig-card__num {
  position: absolute; top: 16px; left: 16px;
  background: var(--wine); color: var(--paper);
  font-family: var(--serif-en); font-style: italic; font-weight: 600;
  font-size: 18px; padding: 6px 14px;
  letter-spacing: .04em;
}
.sig-card__copy { padding: 20px 4px 0; }
.sig-card__tag {
  display: inline-block; font-family: var(--serif-en);
  font-size: 11px; letter-spacing: .28em; color: var(--brass); text-transform: uppercase;
  font-weight: 600; margin-bottom: 12px;
}
.sig-card h3 {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2;
  margin: 0 0 14px; color: var(--ink);
}
.sig-card p { color: var(--ink-soft); margin: 0 0 18px; font-size: 15px; line-height: 1.78; }
.sig-card__price {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--brass-thin);
}
.sig-card__price li {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--brass-thin);
  color: var(--ink-soft); font-size: 14px;
}
.sig-card__price li em {
  font-style: normal; font-family: var(--serif-en); font-weight: 600;
  font-size: 20px; color: var(--wine); letter-spacing: .01em;
}

@media (max-width: 880px) {
  .sig-grid { grid-template-columns: 1fr; gap: 40px; }
  .sig-card:nth-child(even) { margin-top: 0; }
}

/* ===== Menu posters — paper-frame grid ===== */
.menu { padding: 110px var(--pad); background: var(--paper-deep); border-bottom: 1px solid var(--brass-line); }
.menu__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.menu-card {
  display: block; position: relative;
  background: var(--paper-soft); padding: 8px 8px 14px;
  border: 1px solid var(--brass-line);
  box-shadow: var(--shadow-1);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--wine); }
.menu-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--paper-deep);
}
.menu-card__label {
  display: block; padding: 12px 6px 0;
  font-family: var(--serif-kr); font-weight: 700;
  color: var(--ink); font-size: 13px; line-height: 1.4;
  text-align: center;
  letter-spacing: -0.01em;
}
@media (max-width: 980px) { .menu__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Audience — wine-washed strip ===== */
.audience {
  padding: 90px var(--pad);
  background: var(--wine);
  color: var(--paper);
  border-bottom: 1px solid var(--brass);
}
.audience__inner { max-width: var(--maxw); margin: 0 auto; }
.audience__head {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px;
}
.audience__kicker {
  font-family: var(--serif-en); font-size: 12px; letter-spacing: .42em;
  color: var(--brass); text-transform: uppercase; font-weight: 600;
}
.audience h2 {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.2; margin: 0;
  color: var(--paper);
}
.audience__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.audience__list li {
  padding: 28px 26px;
  background: rgba(255,252,245,0.05);
  border: 1px solid rgba(176,138,79,0.3);
  font-size: 15px; line-height: 1.85;
  color: rgba(255,252,245,0.92);
  position: relative;
}
.audience__list li::before {
  content: ""; position: absolute; left: 26px; top: -1px;
  width: 36px; height: 2px; background: var(--brass);
}
.audience__list li strong { color: var(--paper); font-weight: 700; }
@media (max-width: 880px) { .audience__list { grid-template-columns: 1fr; } }

/* ===== Gallery — masonry-ish ===== */
.gallery { padding: 110px var(--pad); border-bottom: 1px solid var(--brass-line); }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  columns: 4; column-gap: 16px;
}
.gallery a {
  display: block; margin-bottom: 16px;
  break-inside: avoid;
  border: 1px solid var(--brass-line);
  background: var(--paper-soft); padding: 6px;
  box-shadow: var(--shadow-1);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
}
.gallery a:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--wine); }
.gallery img { width: 100%; height: auto; display: block; }
@media (max-width: 1080px) { .gallery__grid { columns: 3; } }
@media (max-width: 720px)  { .gallery__grid { columns: 2; } }

/* ===== Info — single-column stepper + map ===== */
.info { padding: 110px var(--pad); background: var(--paper-deep); border-bottom: 1px solid var(--brass-line); }
.info__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; }
.info__cards { display: flex; flex-direction: column; gap: 22px; }
.info-card {
  padding: 28px 28px;
  background: var(--paper-soft);
  border: 1px solid var(--brass-line);
  border-left: 3px solid var(--wine);
  box-shadow: var(--shadow-1);
}
.info-card__label {
  font-family: var(--serif-en); font-size: 11px; letter-spacing: .35em; color: var(--wine);
  text-transform: uppercase; font-weight: 600; margin-bottom: 12px; display: block;
}
.info-card__big {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(20px, 2vw, 28px); color: var(--ink); line-height: 1.3;
  margin: 0 0 10px; letter-spacing: -0.005em;
}
.info-card__big--phone {
  font-family: var(--serif-en); font-style: italic; font-weight: 600;
  font-size: clamp(28px, 3vw, 40px); color: var(--wine);
  letter-spacing: 0.01em; display: block;
}
.info-card__sub { color: var(--ink-soft); font-size: 14px; line-height: 1.78; margin: 0 0 14px; }
.info-card__sub strong { color: var(--wine); font-weight: 700; }
.info-card .btn { margin-top: 4px; }

.info-stepper {
  list-style: none; padding: 0; margin: 0;
  border-left: 2px solid var(--brass);
}
.info-stepper li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--brass-thin);
  font-size: 14px; line-height: 1.78;
  color: var(--ink-soft);
}
.info-stepper li::before {
  content: ""; position: absolute; left: -7px; top: 22px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper-soft); border: 2px solid var(--wine);
}
.info-stepper li:last-child { border-bottom: 0; }
.info-stepper strong {
  display: block; font-family: var(--serif-kr); font-weight: 800;
  color: var(--ink); font-size: 15px; margin-bottom: 4px;
}

.info__map {
  position: sticky; top: 100px;
  border: 1px solid var(--brass-line);
  background: var(--paper-soft); padding: 8px;
  box-shadow: var(--shadow-1);
  align-self: start;
}
.info__map iframe {
  width: 100%; aspect-ratio: 4/5; min-height: 480px;
  border: 0; display: block;
  filter: grayscale(0.15) sepia(0.05) contrast(1.05);
}

@media (max-width: 980px) {
  .info__inner { grid-template-columns: 1fr; }
  .info__map { position: static; }
}

/* ===== CTA — wine full-bleed ===== */
.cta {
  padding: 130px var(--pad);
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(110,31,31,0.32), transparent 70%);
  pointer-events: none;
}
.cta__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.cta__seal {
  width: 90px; height: 90px; margin: 0 auto 28px; display: block;
}
.cta h2 {
  font-family: var(--serif-kr); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.2;
  margin: 0 0 18px; color: var(--paper);
  letter-spacing: -0.014em;
}
.cta p { color: rgba(255,252,245,0.78); font-size: 17px; margin: 0 0 36px; }
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Footer ===== */
.footer { padding: 70px var(--pad) 40px; background: var(--paper); border-top: 2px solid var(--wine); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand .brand__seal { width: 56px; height: 56px; }
.footer__brandtxt { font-family: var(--serif-kr); font-weight: 800; font-size: 19px; color: var(--ink); }
.footer__lead { color: var(--ink-mute); font-size: 14px; line-height: 1.85; max-width: 360px; margin: 0; }
.footer__contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__contact li { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.footer__contact li span {
  display: inline-block; min-width: 56px; color: var(--wine);
  font-family: var(--serif-en); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
}
.footer__contact li a { color: var(--ink); font-weight: 500; }
.footer__contact li a:hover { color: var(--wine); }
.footer__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__links a {
  color: var(--ink-soft); font-size: 14px; padding-bottom: 4px;
  border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.footer__links a:hover { color: var(--wine); border-bottom-color: var(--wine); }
.footer__legal {
  max-width: var(--maxw); margin: 56px auto 0;
  border-top: 1px solid var(--brass-line); padding-top: 28px;
  color: var(--ink-mute); font-size: 13px; line-height: 1.85;
}
.footer__legal p { margin: 0; }
.footer__legal .copy { margin-top: 14px; color: rgba(136,129,122,0.7); font-size: 12px; }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Anti-gravity reveal — horizontal slide (govgoat=vertical) ===== */
.ag-rise {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.3,1);
  transition-delay: 0ms;
  will-change: transform, opacity;
}
.ag-rise.is-in { opacity: 1; transform: translateX(0); }

/* Right-aligned columns slide from the right */
.ag-rise[data-ag-from="right"] { transform: translateX(22px); }
.ag-rise[data-ag-from="right"].is-in { transform: translateX(0); }

/* Vertical-rise option for hero centerpieces */
.ag-rise[data-ag-from="up"] { transform: translateY(28px); }
.ag-rise[data-ag-from="up"].is-in { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .ag-rise { opacity: 1; transform: none; transition: none; }
}
