:root {
  --bg: #100805;
  --bg-2: #1a100a;
  --wood: #24160e;
  --panel: #1e140e;
  --panel-2: #271a12;
  --amber: #d4a017;
  --amber-2: #e8c36a;
  --amber-deep: #8a4b12;
  --copper: #b87333;
  --copper-2: #d4a574;
  --cream: #f3e6c8;
  --muted: #c4b49a;
  --line: rgba(184, 115, 51, 0.45);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Pretendard", "Noto Sans KR", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  background: var(--bg);
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 160, 23, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(138, 75, 18, 0.22), transparent 50%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 7px
    );
  animation: ember 14s ease-in-out infinite alternate;
}

@keyframes ember {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}

.mast-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-2);
  text-decoration: none;
}

.mast-mark strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mast-mark span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.glass-dot {
  width: 14px;
  height: 18px;
  border: 1px solid var(--copper);
  border-radius: 3px 3px 7px 7px;
  background: linear-gradient(180deg, rgba(243, 230, 200, 0.2), var(--amber-deep) 55%, #5a2a08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 12px rgba(212, 160, 23, 0.35);
}

.mast-hours {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 56px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--copper-2);
  font-size: 12px;
  letter-spacing: 0.22em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
  word-break: keep-all;
  font-variant-numeric: lining-nums;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
}

h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  color: var(--amber-2);
}

h4 {
  margin: 18px 0 8px;
  font-size: 18px;
  color: var(--copper-2);
}

p {
  margin: 0 0 14px;
  color: #efe4ce;
}

.lede {
  font-size: 18px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212, 160, 23, 0.08), transparent 40%),
    var(--wood);
  box-shadow: var(--shadow);
}

.frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame--round img {
  border-radius: 50%;
  object-position: center 18%;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.room-grid .frame {
  width: 100%;
  height: 220px;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 195, 106, 0.18);
  pointer-events: none;
}

.frame figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.frame--portrait {
  width: 420px;
  height: 560px;
  max-width: 100%;
}

.frame--wide {
  width: 560px;
  height: 360px;
  max-width: 100%;
}

.frame--banner {
  width: 100%;
  height: 280px;
}

.frame--tall {
  width: 320px;
  height: 480px;
  max-width: 100%;
}

.frame--car {
  width: 480px;
  height: 300px;
  max-width: 100%;
}

.frame--round {
  width: 280px;
  height: 280px;
  border-radius: 50%;
}

.frame--round::after {
  border-radius: 50%;
}

.frame--maphead {
  width: 100%;
  height: 220px;
}

.whiskey-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.glass {
  position: relative;
  width: 120px;
  height: 280px;
  border: 2px solid rgba(243, 230, 200, 0.35);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18% 82%, rgba(255, 255, 255, 0.06));
  overflow: hidden;
  transform: rotate(-8deg);
  box-shadow: 12px 20px 40px rgba(0, 0, 0, 0.4);
}

.glass .liquid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, #f0c35a, #c97816 35%, #7a3b0b);
  animation: liquid 6s ease-in-out infinite;
}

.glass .shine {
  position: absolute;
  top: 12%;
  left: 14%;
  width: 18px;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
  border-radius: 20px;
}

@keyframes liquid {
  0%, 100% { height: 60%; filter: saturate(1); }
  50% { height: 66%; filter: saturate(1.15); }
}

.section {
  position: relative;
  margin: 28px 0;
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(39, 26, 18, 0.92), rgba(16, 8, 5, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section::before {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(212, 160, 23, 0.32);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.section:nth-of-type(1)::before { content: "01"; }
.section:nth-of-type(2)::before { content: "02"; }
.section:nth-of-type(3)::before { content: "03"; }
.section:nth-of-type(4)::before { content: "04"; }
.section:nth-of-type(5)::before { content: "05"; }
.section:nth-of-type(6)::before { content: "06"; }
.section:nth-of-type(7)::before { content: "07"; }
.section:nth-of-type(8)::before { content: "08"; }
.section:nth-of-type(9)::before { content: "09"; }
.section:nth-of-type(10)::before { content: "10"; }
.section:nth-of-type(11)::before { content: "11"; }
.section:nth-of-type(12)::before { content: "12"; }

.faq-list h3 {
  margin-top: 22px;
  font-size: 20px;
}

.faq-list h3:first-child {
  margin-top: 8px;
}

.faq-list p {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(184, 115, 51, 0.28);
}

.faq-list p:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-grid.flip {
  grid-template-columns: 1.05fr 0.95fr;
}

.section-grid.flip .copy {
  order: 2;
}

.section-grid.flip .media {
  order: 1;
}

.split-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.chip {
  padding: 18px 16px;
  border: 1px solid var(--line);
  background: rgba(16, 8, 5, 0.55);
}

.chip strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--amber-2);
}

.chip span {
  color: var(--muted);
  font-size: 14px;
}

.check {
  width: 100%;
  margin-top: 20px;
  table-layout: fixed;
  border-collapse: collapse;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(243, 230, 200, 0.03) 0 28px,
      rgba(243, 230, 200, 0.01) 28px 56px
    );
}

.check th,
.check td {
  padding: 12px 14px;
  border-bottom: 1px dashed rgba(184, 115, 51, 0.35);
  text-align: left;
  font-size: 15px;
  word-break: keep-all;
}

.check th {
  color: var(--amber-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.check td:last-child,
.check th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.hour-card {
  padding: 20px;
  border-left: 3px solid var(--amber);
  background: rgba(0, 0, 0, 0.28);
}

.hour-card b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--amber-2);
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.principle {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
}

.principle::before {
  content: attr(data-n);
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--copper);
}

.principle::after {
  content: attr(data-t);
  display: block;
}

.map-box {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
  background: #0d0906;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.addr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.addr-row div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.addr-row b {
  display: block;
  margin-bottom: 4px;
  color: var(--copper-2);
  font-size: 13px;
}

.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-2), var(--amber-deep));
  color: #1a1008;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: cta-glow 2.8s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3); }
  50% { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(232, 195, 106, 0.5); }
}

.site-foot {
  margin-top: 40px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.foot-links a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.foot-links a:hover {
  border-bottom-color: var(--copper);
}

.sub-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.sub-page h1 {
  font-size: 40px;
}

.sub-page a.back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--amber-2);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero,
  .section-grid,
  .section-grid.flip,
  .split-3,
  .hours,
  .principles,
  .addr-row {
    grid-template-columns: 1fr;
  }

  .section-grid.flip .copy,
  .section-grid.flip .media {
    order: unset;
  }

  .section {
    padding: 32px 20px;
  }

  .check th,
  .check td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .check td:last-child,
  .check th:last-child {
    width: 32%;
    white-space: nowrap;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-grid .frame {
    height: 200px;
    aspect-ratio: 16 / 9;
  }

  .frame--portrait,
  .frame--wide,
  .frame--tall,
  .frame--car {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .frame--wide,
  .frame--car,
  .frame--banner,
  .frame--maphead {
    aspect-ratio: 16 / 9;
  }

  .frame--round {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .mast {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
