:root {
  --wine: #5f1726;
  --wine-deep: #2e0d17;
  --wine-soft: #8b3a4c;
  --gold: #c8a96d;
  --gold-light: #ead8b5;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --ink: #241b1d;
  --muted: #756a6c;
  --line: rgba(52, 27, 32, 0.14);
  --shadow: 0 24px 70px rgba(56, 24, 30, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.026;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wine);
  color: var(--wine);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.brand-mark.small { width: 40px; height: 40px; font-size: 19px; border-color: var(--gold); color: var(--gold-light); }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 14px; font-weight: 650; letter-spacing: 0.02em; }
.brand-copy small { color: var(--muted); font-family: Georgia, serif; font-size: 9px; letter-spacing: 0.18em; }

.desktop-nav { display: flex; gap: clamp(28px, 4vw, 54px); font-size: 13px; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--wine);
  transition: right 220ms ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-contact {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  padding: 7px 0;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) clamp(22px, 7vw, 110px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 169, 109, 0.17), transparent 26%),
    linear-gradient(115deg, #fffdf9 0 55%, #f3e9dd 55% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(22px, 7vw, 110px);
  top: 8%;
  height: 1px;
  width: 80px;
  background: var(--gold);
}
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(95, 23, 38, 0.17);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.15em;
}
.status-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 5px rgba(95, 23, 38, 0.08); }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.23em;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  white-space: pre-line;
  font-family: Georgia, "Noto Serif KR", "Batang", serif;
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.055em;
  word-break: keep-all;
}
.hero-description {
  margin: 32px 0 0;
  max-width: 550px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.button {
  min-width: 142px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--wine);
  font-size: 12px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: white; }
.button-primary:hover { background: var(--wine-deep); }
.button-ghost { color: var(--wine); background: rgba(255,255,255,.25); }
.button-ghost:hover { background: white; }
.hero-notes {
  display: flex;
  gap: clamp(24px, 5vw, 66px);
  margin: 74px 0 0;
}
.hero-notes div { min-width: 100px; }
.hero-notes dt { margin-bottom: 8px; color: var(--gold); font-family: Georgia, serif; font-size: 11px; }
.hero-notes dd { margin: 0; color: #5e5355; font-size: 12px; }

.hero-art {
  width: min(100%, 560px);
  aspect-ratio: 0.88;
  justify-self: end;
  position: relative;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(95, 23, 38, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orbit-large { inset: 8% 3% 10% 8%; }
.orbit-small { inset: 20% 18% 24% 22%; border-color: rgba(200, 169, 109, 0.5); transform: rotate(23deg); }
.gem {
  width: 45%;
  aspect-ratio: 0.85;
  position: absolute;
  top: 22%;
  left: 31%;
  background: linear-gradient(135deg, #7f2438 0%, #4f1220 48%, #2a0a12 100%);
  clip-path: polygon(50% 0%, 88% 20%, 100% 70%, 50% 100%, 0 70%, 12% 20%);
  filter: drop-shadow(0 32px 28px rgba(60, 10, 25, 0.24));
  animation: float 5.5s ease-in-out infinite;
}
.gem::before, .gem::after { content: ""; position: absolute; inset: 0; clip-path: inherit; }
.gem::before { background: linear-gradient(38deg, transparent 48%, rgba(255,255,255,.14) 49% 51%, transparent 52%); }
.gem::after { background: linear-gradient(145deg, rgba(255,255,255,.2), transparent 34%); transform: scale(.7); }
.gem-shine { position: absolute; left: 27%; top: 22%; width: 14%; height: 28%; background: rgba(255,255,255,.25); transform: rotate(26deg); filter: blur(7px); }
.art-card {
  position: absolute;
  right: 1%;
  bottom: 13%;
  width: 205px;
  padding: 26px 24px;
  display: grid;
  gap: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
.art-card span, .art-card small { color: var(--muted); font-family: Georgia, serif; font-size: 8px; letter-spacing: .18em; }
.art-card strong { color: var(--wine); font-family: "Noto Serif KR", "Batang", serif; font-size: 26px; font-weight: 400; letter-spacing: .12em; }
.spark { position: absolute; color: var(--gold); font-size: 29px; }
.spark-one { top: 14%; right: 8%; }
.spark-two { bottom: 29%; left: 8%; font-size: 20px; }

.intro-section, .products-section { padding: clamp(92px, 11vw, 160px) clamp(22px, 8vw, 128px); }
.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 160px); align-items: end; }
.intro-grid h2, .section-heading h2, .contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif KR", "Batang", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.22;
}
.intro-grid h2 { font-size: clamp(42px, 5vw, 72px); }
.intro-grid > div > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 2; word-break: keep-all; }
.coming-line { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: var(--wine); font-family: Georgia, serif; font-size: 9px; letter-spacing: .15em; }
.coming-line span { width: 44px; height: 1px; background: var(--gold); }

.products-section { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 58px; }
.section-heading h2 { font-size: clamp(39px, 4vw, 60px); }
.section-heading > p { max-width: 360px; margin: 0 0 7px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { background: var(--paper); border: 1px solid rgba(95,23,38,.08); overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1 / .9; background: #e7dcd2; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover img { transform: scale(1.025); }
.product-copy { padding: 24px; }
.product-category { color: var(--wine-soft); font-size: 9px; letter-spacing: .14em; }
.product-copy h3 { margin: 9px 0 10px; font-family: Georgia, "Noto Serif KR", serif; font-size: 21px; font-weight: 400; }
.product-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.empty-products { min-height: 330px; display: grid; place-items: center; align-content: center; text-align: center; border: 1px solid rgba(95,23,38,.14); background: rgba(255,255,255,.38); }
.empty-products[hidden] { display: none; }
.empty-symbol { margin-bottom: 17px; color: var(--gold); font-size: 42px; font-family: Georgia, serif; }
.empty-products h3 { margin: 0 0 10px; font-family: Georgia, "Noto Serif KR", serif; font-size: 24px; font-weight: 400; }
.empty-products p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-section {
  padding: clamp(90px, 10vw, 148px) clamp(22px, 8vw, 128px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(48px, 10vw, 150px);
  color: white;
  background:
    radial-gradient(circle at 15% 12%, rgba(200,169,109,.16), transparent 30%),
    var(--wine-deep);
}
.section-kicker.light { color: var(--gold-light); }
.contact-copy h2 { max-width: 480px; font-size: clamp(40px, 4.4vw, 68px); }
.contact-copy > p:last-child { max-width: 440px; margin: 30px 0 0; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.9; }
.contact-actions { display: grid; align-content: center; }
.contact-card { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 23px 4px; border-bottom: 1px solid rgba(255,255,255,.16); transition: padding 180ms ease, background 180ms ease; }
.contact-card:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.contact-card:not(.is-pending):hover { padding-left: 15px; padding-right: 15px; background: rgba(255,255,255,.04); }
.contact-card.is-pending { cursor: default; opacity: .58; }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-family: Georgia, serif; }
.contact-card > span:nth-child(2) { display: grid; gap: 4px; }
.contact-card small { color: var(--gold-light); font-size: 8px; letter-spacing: .15em; }
.contact-card strong { font-size: 14px; font-weight: 500; }
.contact-card i { color: var(--gold-light); font-style: normal; }

.site-footer { min-height: 140px; padding: 32px clamp(22px, 8vw, 128px); display: flex; justify-content: space-between; align-items: center; gap: 30px; color: white; background: #19080e; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand > div { display: grid; gap: 4px; }
.footer-brand strong { font-size: 13px; }
.footer-brand small { color: rgba(255,255,255,.45); font-size: 10px; }
.footer-meta { display: flex; gap: 25px; color: rgba(255,255,255,.43); font-size: 9px; letter-spacing: .12em; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(1.5deg); } }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-art { width: min(84vw, 520px); justify-self: center; margin-top: 50px; }
  .intro-grid, .contact-section { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .site-header { min-height: 74px; padding: 12px 18px; }
  .brand-mark { width: 40px; height: 40px; font-size: 19px; }
  .brand-copy small { display: none; }
  .header-contact { font-size: 9px; }
  .hero { min-height: auto; padding: 66px 22px 76px; background: radial-gradient(circle at 88% 38%, rgba(200,169,109,.16), transparent 30%), #fffdf9; }
  .status-pill { margin-bottom: 34px; font-size: 7.5px; }
  .hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .hero-description { margin-top: 25px; font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-notes { margin-top: 54px; gap: 12px; justify-content: space-between; }
  .hero-notes div { min-width: 0; }
  .hero-notes dd { font-size: 10px; }
  .hero-art { width: 92vw; margin-left: -6vw; }
  .art-card { right: 5%; width: 180px; }
  .intro-section, .products-section { padding: 86px 22px; }
  .intro-grid { gap: 36px; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .empty-products { min-height: 270px; padding: 28px; }
  .contact-section { padding: 84px 22px; }
  .site-footer { padding: 35px 22px; align-items: flex-start; flex-direction: column; }
  .footer-meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
