:root {
  --bg: #070604;
  --panel: #11100c;
  --panel-2: #1a1711;
  --gold: #d6aa42;
  --gold-soft: #f1d486;
  --ink: #fbf6e8;
  --muted: #b8ad96;
  --line: rgba(214, 170, 66, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 50% 100%, rgba(214, 170, 66, 0.13), transparent 24rem),
    linear-gradient(180deg, #090806 0%, var(--bg) 42%, #050403 100%);
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(214, 170, 66, 0.18), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(214, 170, 66, 0.13), transparent 24rem),
    linear-gradient(180deg, #090806 0%, var(--bg) 42%, #050403 100%);
  background-attachment: fixed;
  overscroll-behavior-y: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(7, 6, 4, 0.72);
  border-bottom: 1px solid rgba(214, 170, 66, 0.14);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 6, 4, 0.9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(214, 170, 66, 0.28);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.2;
}

.brand em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--gold-soft);
}

.header-cta {
  padding: 10px 16px;
  color: #151006;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 40px;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.98), rgba(7, 6, 4, 0.62) 48%, rgba(7, 6, 4, 0.36)),
    radial-gradient(circle at 72% 38%, rgba(214, 170, 66, 0.22), transparent 24rem);
}

.hero-orbit {
  position: absolute;
  right: clamp(-120px, -4vw, -40px);
  top: 17%;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 170, 66, 0.32);
  border-radius: 50%;
}

.hero-orbit::after {
  position: absolute;
  inset: 15%;
  content: "";
  border: 1px solid rgba(241, 212, 134, 0.16);
  border-radius: 50%;
}

.coal-grid {
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  bottom: 80px;
  display: grid;
  width: min(34vw, 420px);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  opacity: 0.8;
}

.coal-grid span {
  min-height: 120px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    #15120e;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 -30px 60px rgba(214, 170, 66, 0.08);
}

.hero-content,
.hero-panel,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-side {
  align-self: end;
}

.hero-character {
  width: min(100%, 560px);
  margin: 0 auto -24px;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.62));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 12vw, 150px);
  font-weight: 900;
  line-height: 0.92;
}

.hero-copy {
  max-width: 620px;
  color: #e8dcc2;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy-lines span {
  display: block;
  white-space: nowrap;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 900;
  border-radius: 999px;
}

.btn-primary {
  color: #171006;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.btn-secondary {
  color: var(--gold-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.info-block,
.menu-card {
  background: linear-gradient(180deg, rgba(26, 23, 17, 0.92), rgba(12, 10, 7, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.panel-label,
.menu-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
}

.hero-panel p,
.intro p,
.story-copy p,
.info-block address {
  color: var(--muted);
  line-height: 1.7;
}

.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px clamp(20px, 5vw, 32px);
}

.intro {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.story-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(241, 212, 134, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(26, 23, 17, 0.82), rgba(8, 7, 5, 0.82));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-visual img {
  width: min(92%, 420px);
  max-height: 520px;
  object-fit: contain;
}

.story-copy h2 {
  margin-bottom: 22px;
}

.split-title span {
  display: block;
  white-space: nowrap;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

blockquote {
  margin: 0;
  padding: 20px;
  color: #efe4c7;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.membership-grid article {
  min-height: 118px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(26, 23, 17, 0.92), rgba(12, 10, 7, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.membership-grid article.bonus {
  min-height: 94px;
}

.membership-grid strong,
.membership-grid span {
  display: block;
}

.membership-grid strong {
  margin-bottom: 12px;
  color: #efe4c7;
  font-size: 17px;
}

.membership-grid span {
  color: var(--gold-soft);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.membership-grid .bonus span {
  font-size: 20px;
}

.membership-note {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.membership-cta {
  width: fit-content;
  margin-top: 18px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.menu-categories {
  display: grid;
  gap: 34px;
}

.menu-category {
  min-width: 0;
}

.menu-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.menu-category-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.menu-category-head span {
  color: var(--muted);
  font-size: 14px;
}

.menu-scroll {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 16px;
  margin: 0 calc(clamp(20px, 5vw, 32px) * -1);
  padding: 0 clamp(20px, 5vw, 32px) 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.08);
}

.menu-scroll:focus {
  outline: 1px solid rgba(241, 212, 134, 0.48);
  outline-offset: 4px;
}

.menu-card {
  display: grid;
  min-height: 530px;
  grid-template-rows: auto 42px 68px 62px 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px;
  scroll-snap-align: start;
}

.menu-card.compact {
  min-height: 480px;
}

.menu-card.product-card {
  min-height: 560px;
  grid-template-rows: auto 42px 68px 96px 1fr;
}

.menu-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  place-items: center;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.menu-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.placeholder-photo span {
  color: rgba(241, 212, 134, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.experience-categories .menu-category:first-child .menu-card {
  min-height: 520px;
  grid-template-rows: auto 64px 78px 62px 1fr;
}

.product-price-lines {
  display: grid;
  gap: 5px;
  min-height: 86px;
  color: #efe4c7;
  font-weight: 800;
  line-height: 1.35;
}

.product-price-lines span {
  display: block;
}

.product-price-lines s {
  color: rgba(184, 173, 150, 0.72);
  margin-right: 6px;
}

.experience-showcases {
  display: grid;
  gap: 34px;
}

.experience-showcase {
  min-width: 0;
}

.showcase-photo {
  display: grid;
  min-height: 320px;
  place-items: center;
  margin: 0 0 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 170, 66, 0.15), transparent 18rem),
    #14110c;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-photo img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 14px;
}

.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.simple-card {
  display: grid;
  min-height: 490px;
  grid-template-rows: 220px 54px 68px 62px 1fr;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(26, 23, 17, 0.92), rgba(12, 10, 7, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.farm-ticket-grid .simple-card {
  min-height: 230px;
  grid-template-rows: 54px 58px 48px 1fr;
}

.single-card-row {
  display: grid;
  grid-template-columns: minmax(420px, 560px);
}

.gift-card {
  min-height: 500px;
  grid-template-rows: 320px 42px 58px 1fr;
}

.gift-card .menu-photo {
  aspect-ratio: auto;
  height: 320px;
  overflow: hidden;
  align-items: center;
}

.gift-card .menu-description {
  white-space: nowrap;
}

.gift-card .menu-photo img {
  max-width: 100%;
  max-height: 100%;
}

.sansambang-boost {
  overflow: hidden;
}

.sansambang-boost img {
  transform: scale(1.18);
}

.simple-card-photo {
  display: grid;
  width: 100%;
  height: 220px;
  place-items: center;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.simple-card-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.simple-card h4 {
  display: flex;
  align-items: start;
  min-height: 58px;
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.kakao-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.menu-card-top .menu-tag {
  margin-bottom: 0;
}

.menu-price {
  color: var(--gold-soft);
  font-size: 20px;
  white-space: nowrap;
}

.price-stack {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
}

.original-price {
  color: rgba(184, 173, 150, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.menu-card h4 {
  display: flex;
  align-items: start;
  min-height: 58px;
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
}

.menu-composition {
  min-height: 52px;
  margin: 0;
  color: #efe4c7;
  font-weight: 800;
  line-height: 1.55;
}

.menu-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-block h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.14fr) minmax(320px, 0.86fr);
  gap: 18px;
}

.info-block {
  padding: 28px;
}

.image-block,
.map-block {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  max-height: 520px;
}

.image-block img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 44%;
}

.map-block {
  max-height: none;
}

.map-canvas {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(214, 170, 66, 0.16), rgba(0, 0, 0, 0.08)),
    #12100c;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.map-fallback strong {
  color: var(--gold-soft);
  font-size: 28px;
}

.map-fallback span {
  color: var(--muted);
}

.map-fallback a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 8px auto 0;
  padding: 0 18px;
  color: #151006;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
}

address {
  margin: 0;
  font-style: normal;
}

.planet-hours {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.planet-hours li {
  display: grid;
  grid-template-columns: 38px minmax(72px, max-content) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214, 170, 66, 0.12);
}

.planet-hours li div {
  display: contents;
}

.planet-hours li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.planet {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #fff1a8, #d6aa42 42%, #6f4a14 100%);
  box-shadow: 0 0 22px rgba(214, 170, 66, 0.28);
}

.planet::after {
  position: absolute;
  inset: 14px -8px auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(241, 212, 134, 0.72), transparent);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.planet-tuesday {
  background: radial-gradient(circle at 30% 28%, #fff2b6, #d6aa42 46%, #5b3c11 100%);
}

.planet-wednesday {
  background: radial-gradient(circle at 32% 26%, #fff8db, #c3a36a 44%, #544533 100%);
}

.planet-thursday {
  background: radial-gradient(circle at 28% 28%, #ffdf9e, #b96e34 46%, #472716 100%);
}

.planet-friday {
  background: radial-gradient(circle at 30% 25%, #f7e6a7, #bda356 42%, #50431d 100%);
}

.planet-saturday {
  background: radial-gradient(circle at 28% 28%, #f2d27f, #97672a 44%, #24170f 100%);
}

.planet-sunday {
  background: radial-gradient(circle at 30% 28%, #fff5be, #e0b646 42%, #72510f 100%);
}

.planet-hours .is-closed {
  opacity: 0.54;
}

.planet-hours .is-closed .planet {
  filter: grayscale(1) saturate(0.2);
  box-shadow: none;
}

.planet-hours strong,
.planet-hours span {
  display: block;
  white-space: nowrap;
}

.planet-hours strong {
  color: var(--gold-soft);
}

.planet-hours span {
  color: var(--muted);
  line-height: 1.45;
}

.info-block > a {
  display: inline-block;
  margin: 14px 0 20px;
  color: var(--gold-soft);
  font-size: 20px;
  font-weight: 900;
}

.link-row a {
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.store-capacity {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.store-capacity article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.store-capacity span,
.store-capacity strong {
  display: block;
}

.store-capacity span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.store-capacity strong {
  color: var(--gold-soft);
  font-size: 24px;
}

.store-gallery {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.08);
}

.store-gallery:focus {
  outline: 1px solid rgba(241, 212, 134, 0.48);
  outline-offset: 4px;
}

.store-photo {
  display: grid;
  min-height: 300px;
  margin: 0;
  place-items: center;
  background: #14110c;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}

.store-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.store-photo-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: rgba(241, 212, 134, 0.52);
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(214, 170, 66, 0.16), transparent),
    #14110c;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 170, 66, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(14, 11, 8, 0.96), #050403);
}

.site-footer strong {
  color: var(--gold-soft);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: auto;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .intro,
  .story-section,
  .info-layout,
  .quote-grid,
  .membership-grid,
  .simple-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .coal-grid {
    right: -60px;
    width: 300px;
    opacity: 0.35;
  }

  .hero-character {
    width: min(100%, 420px);
    margin-bottom: -18px;
  }

  .story-visual {
    min-height: 290px;
  }

  .section-heading {
    display: block;
  }

  .kakao-band {
    display: grid;
    align-items: start;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 540px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand em {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 58px;
  }

  .split-title {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-copy-lines span {
    white-space: normal;
  }

  .planet-hours li {
    grid-template-columns: 34px minmax(58px, max-content) minmax(0, 1fr);
    gap: 10px;
  }

  .planet-hours strong,
  .planet-hours span {
    font-size: 14px;
  }

  .map-canvas {
    min-height: 360px;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .store-capacity {
    grid-template-columns: 1fr;
  }

  .single-card-row {
    grid-template-columns: 1fr;
  }

  .gift-card .menu-description {
    white-space: normal;
  }
}
