:root {
  --bg: #0d0b09;
  --bg-soft: #17120e;
  --ink: #fff8e8;
  --muted: #d9c7a8;
  --red: #d4211d;
  --red-dark: #861411;
  --gold: #f0b12a;
  --green: #0e5e38;
  --blue: #103d69;
  --paper: #efe0c4;
  --paper-deep: #c9a878;
  --line: rgba(255, 248, 232, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --heading: "Bebas Neue", "Oswald", Impact, sans-serif;
  --body: Inter, Arial, sans-serif;
  --kr: "Noto Sans KR", Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 10%, rgba(212, 33, 29, 0.22), transparent 24rem),
    radial-gradient(circle at 10% 70%, rgba(240, 177, 42, 0.16), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 9, 7, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 5.8rem;
  height: 2.2rem;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.nav-cta,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 248, 232, 0.28);
  padding: 0.78rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-cta,
.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(134, 20, 17, 0.35);
}

.button.ghost {
  background: rgba(13, 11, 9, 0.42);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 61% center;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.95) 0%, rgba(5, 4, 3, 0.76) 38%, rgba(5, 4, 3, 0.24) 72%, rgba(5, 4, 3, 0.5) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    radial-gradient(circle at 58% 52%, transparent 0 19rem, rgba(0, 0, 0, 0.38) 35rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(10rem, 18rem) minmax(18rem, 43rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 92svh;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
}

.hero-brand-card {
  display: grid;
  gap: 1rem;
  width: min(100%, 18rem);
  border: 1px solid rgba(255, 248, 232, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.08), rgba(255, 248, 232, 0.01)),
    rgba(8, 6, 5, 0.74);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-wordmark {
  width: 100%;
}

.seal {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 2px solid #f3dfbe;
  outline: 2px solid var(--red-dark);
  outline-offset: -6px;
  background: var(--red-dark);
  color: #f3dfbe;
  font-family: var(--kr);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.hero-brand-location {
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.hero-korean {
  margin: 0;
  font-family: var(--heading);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.7);
}

.hero-korean {
  margin-top: 0.55rem;
  color: var(--muted);
  font-family: var(--kr);
  font-size: clamp(1.85rem, 5vw, 3.8rem);
  font-weight: 900;
}

.hero-lede {
  max-width: 38rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.promo,
.experience,
.location {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 4vw, 3rem);
}

.section-intro {
  width: min(760px, 100%);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-intro.align-left {
  width: min(1120px, 100%);
  text-align: left;
}

.section-intro h2,
.location-copy h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.section-intro p:not(.eyebrow) {
  margin: 1rem auto 0;
  color: var(--muted);
}

.promo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg) 0%, #150f0b 42%, #0f0c09 100%);
}

.promo::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(240, 177, 42, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.5));
}

.promo-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8rem, 0.75fr) minmax(18rem, 1.7fr) minmax(8rem, 0.75fr);
  align-items: end;
  gap: clamp(0.75rem, 2vw, 2rem);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.grill-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.14);
  background: #050403;
  box-shadow: var(--shadow);
}

.grill-panel img {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.grill-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.9rem;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: rgba(7, 5, 4, 0.78);
  padding: 0.65rem 1rem;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.grill-caption strong {
  color: var(--ink);
}

.beer {
  align-self: end;
  max-height: 32rem;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.65));
}

.beer-left {
  transform: translateX(0.8rem);
}

.beer-right {
  transform: translateX(-0.8rem);
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1040px, 100%);
  margin: -0.5rem auto 0;
  border: 1px solid rgba(74, 41, 21, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.55), transparent 26rem),
    repeating-linear-gradient(45deg, rgba(80, 52, 26, 0.045) 0 2px, transparent 2px 7px),
    var(--paper);
  color: #17100b;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.price-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.price-card + .price-card {
  border-left: 1px solid rgba(23, 16, 11, 0.35);
}

.price-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
}

.carlsberg h3 {
  color: var(--green);
}

.sapporo h3 {
  color: var(--blue);
}

.price-row {
  display: grid;
  gap: 0.05rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(23, 16, 11, 0.48);
  font-weight: 900;
  text-transform: uppercase;
}

.price-row span {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  line-height: 1.05;
}

.price-row strong {
  color: #7a110e;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.94;
}

.price-row small {
  font-weight: 700;
  text-transform: none;
}

.experience {
  background: #120f0c;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature {
  min-height: 19rem;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background:
    linear-gradient(145deg, rgba(255, 248, 232, 0.07), rgba(255, 248, 232, 0.02)),
    var(--bg-soft);
}

.feature img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.feature p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.location {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.location-image {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.15);
  box-shadow: var(--shadow);
}

.location-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.location-copy {
  position: relative;
}

.stamp {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

.location-copy p {
  max-width: 35rem;
  color: var(--muted);
}

address {
  margin-top: 1.2rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.site-footer {
  background: var(--paper);
  color: #23150d;
}

.footer-wave {
  height: 4.4rem;
  background:
    radial-gradient(circle at 1.5rem 3.5rem, transparent 0 1.05rem, rgba(61, 43, 32, 0.58) 1.09rem 1.2rem, transparent 1.24rem),
    radial-gradient(circle at 1.5rem 3.5rem, transparent 0 1.8rem, rgba(61, 43, 32, 0.38) 1.85rem 1.98rem, transparent 2.03rem),
    radial-gradient(circle at 1.5rem 3.5rem, transparent 0 2.55rem, rgba(61, 43, 32, 0.26) 2.6rem 2.72rem, transparent 2.78rem),
    linear-gradient(var(--paper), var(--paper-deep));
  background-size: 3rem 4.4rem, 3rem 4.4rem, 3rem 4.4rem, auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-brand-card {
    width: 11rem;
  }

  .promo-stage,
  .pricing-grid,
  .feature-grid,
  .location {
    grid-template-columns: 1fr;
  }

  .beer {
    display: none;
  }

  .price-card + .price-card {
    border-top: 1px solid rgba(23, 16, 11, 0.35);
    border-left: 0;
  }

  .location {
    width: min(620px, calc(100% - 2rem));
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand-mark {
    width: 4.5rem;
  }

  .brand-text {
    display: none;
  }

  .nav-cta,
  .button {
    min-height: 2.5rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    min-height: 88svh;
    padding-top: 5.5rem;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.3rem);
  }

  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
