:root {
  --ink: #0b0b0b;
  --ink-2: #171717;
  --paper: #efeadf;
  --paper-2: #f8f4ec;
  --muted: #6e665b;
  --line: rgba(11, 11, 11, 0.16);
  --gold: #d8ad4d;
  --red: #8e231d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  background: rgba(11, 11, 11, 0.94);
  color: var(--paper-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 950;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 1.25rem;
  color: rgba(248, 244, 236, 0.74);
}

nav a {
  text-decoration: none;
}

.language-toggle {
  display: inline-flex;
  justify-self: end;
  padding: 0.18rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.language-toggle button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: transparent;
  color: var(--paper-2);
  cursor: pointer;
  font-weight: 900;
}

.language-toggle button.active {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(26rem, 590px) minmax(28rem, 680px);
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: min(760px, calc(78svh - 66px));
  padding: clamp(1.8rem, 4.5vw, 3.6rem) clamp(1rem, 4vw, 3.5rem);
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(11, 11, 11, 0.97), rgba(11, 11, 11, 0.88) 52%, rgba(142, 35, 29, 0.8)),
    var(--ink);
  color: var(--paper-2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 80px, var(--red) 80px 128px, var(--paper) 128px 152px);
  z-index: -1;
}

.hero-logo {
  position: absolute;
  right: max(-11rem, -10vw);
  bottom: max(-18rem, -18vw);
  width: min(72vw, 920px);
  opacity: 0.12;
  filter: invert(1);
  z-index: -1;
}

.hero-copy {
  align-self: center;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 6.2vw, 6.4rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.lead {
  max-width: 62ch;
  margin: 1.15rem 0 0;
  color: rgba(248, 244, 236, 0.8);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-rule,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.65rem 0.82rem;
  border: 1px solid rgba(248, 244, 236, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.live-status strong,
.live-status small {
  display: block;
}

.live-status small {
  color: rgba(248, 244, 236, 0.66);
}

.status-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #a0a0a0;
}

.live-status.open .status-dot {
  background: #4fdb77;
  box-shadow: 0 0 0 5px rgba(79, 219, 119, 0.15);
}

.live-status.closed .status-dot {
  background: #ff6b5f;
  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.14);
}

.hero-rule span {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(248, 244, 236, 0.2);
  border-radius: 999px;
  color: var(--paper-2);
  font-size: 0.92rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.dark {
  border-color: rgba(248, 244, 236, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-2);
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
}

.store-visual {
  align-self: center;
  position: relative;
  width: 100%;
  justify-self: center;
}

.store-visual picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.18);
  border-bottom: 0;
  background: var(--ink-2);
}

.store-visual img {
  width: 100%;
  max-height: 500px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
}

.store-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(248, 244, 236, 0.16);
  background: rgba(11, 11, 11, 0.9);
}

.store-panel div {
  padding: 0.9rem;
  border-right: 1px solid rgba(248, 244, 236, 0.13);
}

.store-panel div:last-child {
  border-right: 0;
}

.store-panel span,
.store-panel small {
  display: block;
  color: rgba(248, 244, 236, 0.66);
}

.store-panel span {
  margin-bottom: 0.18rem;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-panel strong {
  display: block;
  color: var(--paper-2);
  font-size: 1.05rem;
}

.notice-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.notice-strip span {
  padding: 0.95rem clamp(0.9rem, 3vw, 2rem);
  border-right: 1px solid rgba(11, 11, 11, 0.2);
}

.notice-strip span:last-child {
  border-right: 0;
}

.compact-grid,
.product-grid,
.visit-board,
.location-layout,
.before-visit,
.product-info,
.search-keywords,
.compliance-section,
.faq-section,
.site-footer {
  padding-inline: clamp(1rem, 5vw, 4.5rem);
}

.product-header {
  grid-template-columns: 1fr auto;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.compact-grid article,
.product-grid article {
  min-height: 220px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper-2);
}

.compact-grid h2,
.product-grid h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.compact-grid p,
.product-grid p,
.product-info li,
.search-keywords p,
.visit-board p,
.location-layout p,
.before-visit li,
.compliance-section p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.product-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(24rem, 620px) minmax(24rem, 560px);
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: min(720px, calc(76svh - 66px));
  padding: clamp(1.8rem, 4.5vw, 3.6rem) clamp(1rem, 4vw, 3.5rem);
  background:
    linear-gradient(100deg, rgba(11, 11, 11, 0.97), rgba(11, 11, 11, 0.9) 54%, rgba(142, 35, 29, 0.72)),
    var(--ink);
  color: var(--paper-2);
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 80px, var(--red) 80px 128px, var(--paper) 128px 152px);
  z-index: -1;
}

.product-hero-copy {
  align-self: center;
  max-width: 720px;
}

.product-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 5.8vw, 5.9rem);
}

.product-visual {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, 0.18);
  background: var(--ink-2);
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 58%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-grid article {
  min-height: 360px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 0.44rem 0.62rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 850;
}

.search-keywords {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
  background: var(--paper-2);
}

.keyword-list-wide {
  margin-top: 0;
}

.keyword-list-wide li {
  background: var(--paper);
}

.product-info {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
  background: var(--paper);
}

.product-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info li {
  padding: 1rem;
  border-left: 4px solid var(--red);
  background: var(--paper-2);
  font-weight: 850;
}

.visit-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
}

.hours-list {
  border-top: 4px solid var(--ink);
  background: var(--paper-2);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  text-align: right;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  padding-block: 0 clamp(2.6rem, 7vw, 5.2rem);
}

.location-copy {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--ink);
  color: var(--paper-2);
}

.location-copy p {
  color: rgba(248, 244, 236, 0.74);
}

.text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  margin-right: 1rem;
  color: var(--gold);
  font-weight: 950;
}

.landmark-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 244, 236, 0.16);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
}

.map-shell {
  min-height: 420px;
  background: var(--ink-2);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.before-visit {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
  background: var(--paper-2);
}

.before-visit ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-visit li {
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  font-weight: 850;
}

.compliance-section {
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
  background:
    linear-gradient(135deg, rgba(216, 173, 77, 0.12), rgba(142, 35, 29, 0.18)),
    var(--ink);
  color: var(--paper-2);
}

.compliance-section p {
  max-width: 78ch;
  color: rgba(248, 244, 236, 0.76);
  font-size: 1.08rem;
}

.faq-section {
  padding-block: clamp(2.6rem, 7vw, 5.2rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-list p {
  margin: 0.65rem 0 0;
}

.site-footer {
  display: grid;
  gap: 1.2rem;
  padding-block: 2.5rem;
  background: var(--ink);
  color: var(--paper-2);
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 1.3rem;
}

.footer-brand span {
  color: rgba(248, 244, 236, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 244, 236, 0.12);
}

.site-footer p {
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 244, 236, 0.74);
}

.site-footer p strong,
.site-footer p span {
  display: block;
}

.site-footer p strong {
  margin-bottom: 0.35rem;
  color: var(--paper-2);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 0.75rem;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.seo-line {
  font-size: 0.85rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(11, 11, 11, 0.96);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(100%, 560px);
  padding: clamp(1.25rem, 5vw, 2rem);
  background: var(--paper-2);
  color: var(--ink);
  text-align: center;
}

.age-panel img {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.9rem;
  object-fit: contain;
}

.age-panel h1 {
  max-width: none;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
}

.age-panel p {
  color: var(--muted);
}

.age-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.not-found-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.94) 52%, rgba(50, 20, 18, 0.98)),
    repeating-linear-gradient(135deg, rgba(216, 173, 77, 0.16) 0 1px, transparent 1px 36px),
    var(--ink);
  color: var(--paper-2);
}

.not-found-page::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(216, 173, 77, 0.42);
  pointer-events: none;
}

.not-found-page::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: min(56vw, 680px);
  aspect-ratio: 1;
  background: url("/assets/logo-mark.png") center / contain no-repeat;
  filter: invert(1);
  opacity: 0.06;
  pointer-events: none;
}

.not-found-page .hero-logo {
  display: none;
}

.not-found-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: clamp(1.35rem, 4vw, 3rem);
  border-left: 6px solid var(--gold);
  background: rgba(11, 11, 11, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.not-found-brand {
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.not-found-panel h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 9vw, 6.1rem);
}

.not-found-page .lead {
  max-width: 54ch;
  color: rgba(248, 244, 236, 0.8);
}

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

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .language-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 2rem 2.4rem;
    justify-content: stretch;
  }

  .hero-logo {
    right: -16rem;
    bottom: -12rem;
    width: 720px;
  }

  .store-panel {
    position: static;
  }

  .store-visual img {
    aspect-ratio: 16 / 10;
  }

  .notice-strip,
  .compact-grid,
  .product-grid,
  .visit-board,
  .location-layout,
  .before-visit,
  .product-hero,
  .product-info,
  .search-keywords,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .notice-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.18);
  }

  .before-visit ul {
    grid-template-columns: 1fr;
  }

  .product-visual img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 0.7rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    white-space: normal;
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-logo {
    right: -18rem;
    bottom: -8rem;
    width: 560px;
    opacity: 0.1;
  }

  .store-visual img {
    aspect-ratio: 4 / 3;
  }

  .product-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .product-visual img {
    aspect-ratio: 4 / 3;
  }

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

  .store-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 236, 0.13);
  }

  .store-panel div:last-child {
    border-bottom: 0;
  }

  .actions,
  .actions .button,
  .age-actions .button {
    width: 100%;
  }

  .hours-list div {
    display: grid;
  }

  .hours-list strong {
    text-align: left;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 330px;
  }

  .not-found-page {
    place-items: start;
    padding: 1rem;
  }

  .not-found-page::before {
    inset: 0.7rem;
  }

  .not-found-panel {
    margin-top: 1rem;
    padding: 1.2rem;
  }

  .not-found-panel h1 {
    max-width: 9ch;
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }
}
