:root {
  --bg: #080706;
  --bg-soft: #11100e;
  --panel: rgba(255, 255, 255, 0.052);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4eee4;
  --muted: #b8ad9e;
  --subtle: #807465;
  --gold: #c8a66a;
  --gold-light: #f0d8a8;
  --gold-soft: rgba(200, 166, 106, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 2%, rgba(200, 166, 106, 0.18), transparent 31%),
    radial-gradient(circle at 92% 4%, rgba(92, 60, 32, 0.28), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(79, 51, 24, 0.18), transparent 38%),
    linear-gradient(180deg, #0c0907 0%, #050505 100%);
  letter-spacing: -0.02em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px 18px 42px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: -22px -18px 0;
  padding: 14px 18px 12px;
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 166, 106, 0.58);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  background: rgba(200, 166, 106, 0.08);
  flex: 0 0 auto;
}

.brand-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 760;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(200, 166, 106, 0.42);
  background: rgba(200, 166, 106, 0.12);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
}

.hero {
  padding: 54px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 8vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 780;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 1.72;
  word-break: keep-all;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 18px;
}

.nav-button {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 166, 106, 0.48);
  background: var(--panel-strong);
  outline: none;
}

.nav-button.is-active {
  border-color: rgba(200, 166, 106, 0.78);
  background: var(--gold-soft);
}

.nav-button .label {
  display: block;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 760;
}

.nav-button .desc {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
}

.content-frame {
  margin-top: 24px;
  min-height: 380px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 5.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 780;
  word-break: keep-all;
}

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  word-break: keep-all;
}

.notice-card {
  margin: 28px 0 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200, 166, 106, 0.15), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(200, 166, 106, 0.26);
}

.notice-card p {
  margin: 0;
  color: #dfd3c1;
  line-height: 1.65;
  font-size: 14px;
  word-break: keep-all;
}

.notice-card strong {
  color: var(--gold-light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mini-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.mini-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.38;
  word-break: keep-all;
}

.mini-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  word-break: keep-all;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 166, 106, 0.25);
  background: rgba(200, 166, 106, 0.08);
  color: #ead0a0;
  font-size: 12px;
  font-weight: 650;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-chip {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 166, 106, 0.28);
  background: rgba(200, 166, 106, 0.07);
  color: #ead0a0;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  border-color: rgba(200, 166, 106, 0.78);
  background: rgba(200, 166, 106, 0.18);
  color: var(--gold-light);
  outline: none;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.price-label {
  flex: 1;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.58;
  word-break: keep-all;
}

.price-value {
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 780;
  white-space: nowrap;
  text-align: right;
}

.bottom-order {
  position: sticky;
  bottom: 12px;
  z-index: 20;
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 166, 106, 0.28);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(18px);
  color: #ead5ad;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.site-footer {
  padding: 32px 0 10px;
  color: var(--subtle);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .quick-nav,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 15px;
  }

  .top-bar {
    margin-inline: -15px;
    padding-inline: 15px;
  }

  .order-chip {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .quick-nav,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-button {
    min-height: 92px;
  }
}

/* v1731: recommendation tab / today recommendation layout */
.recommendation-reason-box {
  width: 100%;
  box-sizing: border-box;
  margin-top: 11px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(216, 180, 106, 0.28);
  background: linear-gradient(135deg, rgba(216, 180, 106, 0.10), rgba(64, 42, 20, 0.12));
}

.recommendation-reason-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 6px;
  line-height: 1.22;
}

.recommendation-reason-title {
  color: rgba(245, 238, 224, 0.82);
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: -0.012em;
  white-space: nowrap;
}

.recommendation-label-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.recommendation-gold-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 8px 1px;
  border-radius: 999px;
  border: 1px solid rgba(218, 184, 112, 0.70);
  background: linear-gradient(180deg, rgba(213, 178, 105, 0.34), rgba(113, 79, 34, 0.42));
  color: #f6dfad;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 239, 191, 0.16);
}

.recommendation-reason-copy {
  margin: 0;
  color: rgba(246, 240, 230, 0.88);
  font-size: 13px;
  line-height: 1.52;
  letter-spacing: -0.01em;
}

/* v1733: recommendation reason box readability tune */
.recommendation-reason-box {
  padding: 13px 14px;
}

.recommendation-reason-head {
  gap: 9px;
  margin-bottom: 8px;
}

.recommendation-reason-title {
  font-size: 15px;
  font-weight: 820;
  letter-spacing: -0.018em;
}

.recommendation-gold-label {
  min-height: 23px;
  padding: 3px 9px 2px;
  font-size: 12.5px;
  font-weight: 780;
}

.recommendation-reason-copy {
  font-size: 15px;
  line-height: 1.48;
  letter-spacing: -0.018em;
}

/* v1851: table-access price visibility guard */
.price-row.is-price-hidden-row {
  border-color: rgba(216, 180, 106, 0.58);
  background: rgba(16, 12, 8, 0.48);
}

.price-check-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(216, 180, 106, 0.72);
  background: linear-gradient(135deg, rgba(216, 180, 106, 0.18), rgba(94, 67, 28, 0.28));
  color: #f6df9f;
  -webkit-text-fill-color: #f6df9f;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.price-check-button:active {
  transform: translateY(1px);
}

.price-check-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.price-check-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.price-check-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.price-check-panel {
  position: relative;
  width: min(92vw, 420px);
  padding: 34px 28px 28px;
  border-radius: 28px;
  border: 1px solid rgba(216, 180, 106, 0.58);
  background: radial-gradient(circle at 50% 0%, rgba(61, 39, 18, 0.92), rgba(12, 9, 6, 0.96) 62%);
  color: #f4eadc;
  text-align: center;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255,255,255,0.08);
}

.price-check-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(216, 180, 106, 0.45);
  background: rgba(10, 8, 6, 0.42);
  color: #f6df9f;
  -webkit-text-fill-color: #f6df9f;
  font-size: 28px;
  line-height: 1;
}

.price-check-kicker {
  margin: 0 0 8px;
  color: #d8b46a;
  -webkit-text-fill-color: #d8b46a;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.28em;
}

.price-check-title {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 6vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.price-check-copy {
  margin: 0 auto 26px;
  color: rgba(245, 236, 220, 0.9);
  -webkit-text-fill-color: rgba(245, 236, 220, 0.9);
  font-size: 1.08rem;
  line-height: 1.55;
  word-break: keep-all;
}

.price-check-confirm {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(216, 180, 106, 0.72);
  background: linear-gradient(135deg, #e0b95d, #b78a34);
  color: #140f09;
  -webkit-text-fill-color: #140f09;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 820;
}

body.is-price-check-modal-open {
  overflow: hidden;
}

.today-course-price-check {
  min-width: 88px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.whisky-price-check {
  min-width: 108px;
}


/* v1854-hf10 sale price policy: normal price size restored */
.price-sale-wrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.price-sale-wrap .price-sale-prefix {
  display: inline-flex;
  align-items: baseline;
  color: rgba(224, 199, 154, 0.68) !important;
  font-size: calc(1em + 1pt);
  font-weight: 760;
  letter-spacing: -0.02em;
  transform: translateY(0.005em);
}
.price-sale-wrap .price-sale-normal {
  position: relative;
  display: inline-block;
  font-size: calc(1em + 1pt);
  color: rgba(232, 220, 202, 0.52) !important;
  text-decoration: none !important;
  font-weight: 650;
  transform: translateY(0.01em);
  isolation: isolate;
}
.price-sale-wrap .price-sale-normal::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 55%;
  height: 0.065em;
  min-height: 1px;
  border-radius: 999px;
  background: rgba(218, 184, 119, 0.42);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
  transform-origin: center;
  z-index: 1;
  pointer-events: none;
}
.price-sale-wrap .price-sale-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(213, 174, 98, 0.84) !important;
  font-size: calc(1em + 3pt);
  font-weight: 760;
  line-height: 1;
  transform: translateY(-0.015em);
}
.price-sale-wrap .price-sale-main {
  display: inline-flex;
  align-items: baseline;
  color: rgb(255, 220, 145) !important;
  font-size: calc(1em + 2pt);
  font-weight: 880;
  text-shadow: 0 0 10px rgba(226, 177, 92, 0.22), 0 0 1px rgba(255, 232, 178, 0.34);
}
.price-sale-label {
  display: none;
}
.today-course-stage-price .price-sale-wrap {
  justify-content: center;
  gap: 7px;
}
.whisky-price-amount.price-sale-wrap {
  justify-content: flex-end;
  gap: 7px;
}
