:root {
  --ink: #1d1815;
  --ink-soft: #4a3f38;
  --paper: #f7f1e6;
  --paper-warm: #efe5d2;
  --cream: #fbf7ee;
  --accent: #8a3b1f;        /* 깊은 참기름색 */
  --accent-dark: #5e2611;
  --accent-soft: #d6a07a;
  --gold: #c89b48;          /* 들기름 황금색 */
  --green: #4a5e3a;          /* 깻잎 */
  --line: #e2d6bc;
  --shadow: 0 12px 32px rgba(45, 28, 14, 0.12);
  --shadow-lg: 0 24px 60px rgba(45, 28, 14, 0.18);
  --radius: 14px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', -apple-system, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--cream);
  font-family: 'Gowun Batang', serif;
  font-weight: 700; font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(138, 59, 31, 0.3);
}
.brand-text strong {
  display: block;
  font-family: 'Gowun Batang', serif;
  font-size: 19px; letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-text em {
  display: block;
  font-size: 11px; font-style: normal;
  color: var(--ink-soft); letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav { margin-left: auto; display: flex; gap: 28px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  transition: transform .15s, background .2s;
}
.header-cta:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 110px 24px 130px;
  background: linear-gradient(180deg, #f7eddc 0%, var(--cream) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(200, 155, 72, 0.16), transparent 65%),
    radial-gradient(50% 50% at 10% 90%, rgba(74, 94, 58, 0.10), transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; max-width: var(--max); margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px; border: 1px solid var(--accent);
  color: var(--accent); border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Gowun Batang', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.18; letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.accent {
  background: linear-gradient(180deg, transparent 62%, rgba(200, 155, 72, 0.35) 62%);
}
.lede {
  max-width: 620px;
  font-size: 18px; color: var(--ink-soft);
  margin-bottom: 36px;
}
.lede strong { color: var(--accent-dark); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  transition: transform .15s, box-shadow .2s, background .2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent); color: var(--cream);
  box-shadow: 0 8px 20px rgba(138, 59, 31, 0.25);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(138, 59, 31, 0.32); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  list-style: none; color: var(--ink-soft); font-size: 14px;
}
.hero-meta span { color: var(--accent); font-weight: 700; margin-right: 6px; }

/* ---------- Trust ---------- */
.trust {
  background: var(--ink); color: var(--cream);
  padding: 28px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.trust-grid > div { display: flex; flex-direction: column; gap: 4px; }
.trust-grid strong {
  font-family: 'Gowun Batang', serif;
  font-size: 18px; color: var(--gold);
}
.trust-grid span { font-size: 13px; color: rgba(251, 247, 238, 0.7); }
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sections shared ---------- */
section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.32em;
  color: var(--accent); font-weight: 700;
  margin-bottom: 14px;
}
.section-tag.light { color: var(--gold); }
h2 {
  font-family: 'Gowun Batang', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25; color: var(--ink);
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.section-lede { max-width: 660px; color: var(--ink-soft); margin-bottom: 48px; font-size: 16px; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text p { color: var(--ink-soft); margin-bottom: 20px; font-size: 16px; }
.about-text em { color: var(--accent); font-style: normal; font-weight: 700; }
.about-stats {
  margin-top: 36px;
  display: grid; gap: 18px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.about-stats > div { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.about-stats dt { color: var(--ink-soft); }
.about-stats dd { color: var(--ink); font-weight: 700; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.photo-caption {
  display: block; margin-top: 12px;
  font-size: 13px; color: var(--ink-soft); text-align: center;
  font-style: italic;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Story ---------- */
.story {
  background: linear-gradient(180deg, var(--ink) 0%, #2b2018 100%);
  color: var(--cream);
}
.story-title { color: var(--cream); margin-bottom: 56px; }
.story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  background: rgba(251, 247, 238, 0.04);
  border: 1px solid rgba(251, 247, 238, 0.10);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.story-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.story-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.story-card figcaption { padding: 24px; }
.story-card h3 {
  font-family: 'Gowun Batang', serif;
  font-size: 20px; color: var(--gold);
  margin-bottom: 10px;
}
.story-card p { color: rgba(251, 247, 238, 0.78); font-size: 14.5px; }
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- Products ---------- */
.products { background: var(--cream); }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--paper-warm);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tag {
  align-self: flex-start;
  padding: 3px 10px; border-radius: 999px;
  background: var(--paper-warm); color: var(--accent-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.product h3 {
  font-family: 'Gowun Batang', serif;
  font-size: 19px; color: var(--ink); line-height: 1.4;
}
.product p { color: var(--ink-soft); font-size: 14px; flex: 1; }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.price s { color: #b9a98a; font-size: 13px; }
.price strong { color: var(--ink); font-size: 22px; font-weight: 700; }
.price em { font-style: normal; color: var(--accent); font-weight: 700; font-size: 13px; }
.products-note {
  margin-top: 32px; font-size: 13px; color: var(--ink-soft); text-align: center;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.reviews-text p { color: var(--ink-soft); margin-bottom: 28px; }
.reviews-text p strong { color: var(--ink); }
.keyword-list { list-style: none; display: grid; gap: 8px; }
.keyword-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: var(--cream); border-radius: 10px;
  border: 1px solid var(--line);
}
.keyword-list li span { font-weight: 500; color: var(--ink); }
.keyword-list li b { color: var(--accent); font-weight: 700; font-size: 14px; }
.reviews-cards { display: grid; gap: 16px; }
.review-card {
  background: #fff; padding: 26px 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '“';
  position: absolute; top: 8px; left: 18px;
  font-family: 'Gowun Batang', serif;
  font-size: 64px; color: var(--accent-soft);
  line-height: 1; opacity: 0.6;
}
.review-card p {
  position: relative;
  font-family: 'Gowun Batang', serif;
  font-size: 18px; color: var(--ink);
  line-height: 1.6; margin: 18px 0 16px;
}
.review-card footer { display: flex; gap: 12px; align-items: center; color: var(--ink-soft); font-size: 13px; }
.review-card footer span { font-weight: 700; color: var(--ink); }
.review-card.highlight { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--cream); border: none; }
.review-card.highlight::before { color: rgba(251, 247, 238, 0.35); }
.review-card.highlight p { color: var(--cream); }
.review-card.highlight footer { color: rgba(251, 247, 238, 0.7); }
.review-card.highlight footer span { color: var(--cream); }
@media (max-width: 880px) {
  .reviews-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.visit-list { display: grid; gap: 18px; margin: 32px 0; }
.visit-list > div {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding-bottom: 16px; border-bottom: 1px dashed var(--line);
}
.visit-list dt { color: var(--ink-soft); font-size: 14px; }
.visit-list dd { color: var(--ink); font-size: 15px; font-weight: 500; }
.visit-list a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.visit-photo img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-list > div { grid-template-columns: 90px 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(251, 247, 238, 0.78);
  padding: 40px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer-inner strong {
  font-family: 'Gowun Batang', serif;
  font-size: 18px; color: var(--cream);
  display: block; margin-bottom: 4px;
}
.footer-inner p { font-size: 13px; }
.copyright { font-size: 12px; color: rgba(251, 247, 238, 0.5); }
