:root {
  --ink: #041410;
  --forest: #06251d;
  --moss: #173c2f;
  --leaf: #8da46b;
  --cream: #f5ecd6;
  --muted: #cfc3a9;
  --bronze: #b8884f;
  --gold: #e1b66f;
  --stone: #72634f;
  --glass: rgba(245, 236, 214, 0.09);
  --line: rgba(245, 236, 214, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(4, 20, 16, 0.66);
  border-bottom: 1px solid rgba(245, 236, 214, 0.12);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, padding 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(4, 20, 16, 0.92);
  padding-bottom: 10px;
  padding-top: 10px;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  border: 1px solid rgba(245, 236, 214, 0.18);
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(245, 236, 214, 0.8);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--cream);
  height: 2px;
  left: 9px;
  position: absolute;
  transition: transform 180ms ease, top 180ms ease;
  width: 24px;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(42deg);
}

.nav-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-42deg);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-vignette {
  background:
    radial-gradient(circle at 52% 56%, rgba(225, 182, 111, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(4, 20, 16, 0.9), rgba(4, 20, 16, 0.38) 52%, rgba(4, 20, 16, 0.75)),
    linear-gradient(0deg, rgba(4, 20, 16, 0.95), transparent 38%);
  inset: 0;
  position: absolute;
}

.ambient-lights span {
  animation: glowDrift 8s ease-in-out infinite;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 35px rgba(225, 182, 111, 0.65);
  height: 4px;
  opacity: 0.45;
  position: absolute;
  width: 4px;
}

.ambient-lights span:nth-child(1) { left: 12%; top: 24%; }
.ambient-lights span:nth-child(2) { animation-delay: 1s; left: 28%; top: 12%; }
.ambient-lights span:nth-child(3) { animation-delay: 2s; right: 26%; top: 22%; }
.ambient-lights span:nth-child(4) { animation-delay: 3s; right: 12%; top: 40%; }
.ambient-lights span:nth-child(5) { animation-delay: 4s; left: 52%; top: 18%; }

.leaf-field i {
  animation: leafFall 14s linear infinite;
  border: 1px solid rgba(196, 211, 158, 0.45);
  border-radius: 80% 0 80% 0;
  height: 18px;
  opacity: 0.35;
  position: absolute;
  top: -24px;
  transform: rotate(24deg);
  width: 10px;
}

.leaf-field i:nth-child(1) { animation-delay: 0s; left: 8%; }
.leaf-field i:nth-child(2) { animation-delay: 3s; left: 24%; }
.leaf-field i:nth-child(3) { animation-delay: 6s; left: 46%; }
.leaf-field i:nth-child(4) { animation-delay: 2s; left: 64%; }
.leaf-field i:nth-child(5) { animation-delay: 8s; left: 78%; }
.leaf-field i:nth-child(6) { animation-delay: 4s; left: 91%; }

.hero-content {
  max-width: 760px;
  padding: clamp(118px, 18vh, 170px) clamp(20px, 7vw, 96px) 14vh;
  position: relative;
  z-index: 2;
}

.hero-logo {
  border: 1px solid rgba(245, 236, 214, 0.16);
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  height: clamp(68px, 7vw, 108px);
  margin-bottom: 24px;
  object-fit: cover;
  width: clamp(68px, 7vw, 108px);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  margin-bottom: 18px;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  margin-bottom: 22px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-subtitle {
  color: rgba(245, 236, 214, 0.9);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  margin-bottom: 34px;
  max-width: 650px;
}

.hero-actions,
.section-copy .btn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  box-shadow: 0 0 34px rgba(225, 182, 111, 0.22);
  color: #1c1207;
}

.btn-secondary {
  background: rgba(245, 236, 214, 0.08);
  border: 1px solid rgba(245, 236, 214, 0.24);
  color: var(--cream);
}

.scroll-cue {
  bottom: 32px;
  color: rgba(245, 236, 214, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  text-transform: uppercase;
  z-index: 3;
}

.scroll-cue::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 46px;
  margin: 10px auto 0;
  width: 1px;
}

.section {
  overflow: hidden;
  padding: clamp(76px, 11vw, 150px) 0;
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(225, 182, 111, 0.18), transparent);
  content: "";
  height: 1px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
}

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

.two-column {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: 0.92fr 1.08fr;
}

.two-column.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.section-copy p,
.section-heading p,
.about-panel p,
.feature-card p,
.experience-card p {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 760px;
  text-align: center;
}

.about {
  background:
    linear-gradient(180deg, var(--ink), #082019 58%, var(--ink)),
    radial-gradient(circle at 90% 10%, rgba(141, 164, 107, 0.16), transparent 34%);
}

.about-panel {
  background: linear-gradient(135deg, rgba(245, 236, 214, 0.12), rgba(245, 236, 214, 0.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
}

.about-panel p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.35;
  margin-bottom: 0;
}

.concept {
  background: #071a15;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  background: linear-gradient(180deg, rgba(245, 236, 214, 0.1), rgba(245, 236, 214, 0.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(225, 182, 111, 0.6);
  transform: translateY(-6px);
}

.feature-icon {
  align-items: center;
  background: rgba(225, 182, 111, 0.12);
  border: 1px solid rgba(225, 182, 111, 0.38);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-family: var(--serif);
  height: 46px;
  justify-content: center;
  margin-bottom: 34px;
  width: 46px;
}

.menu-preview {
  background:
    linear-gradient(90deg, rgba(4, 20, 16, 0.96), rgba(13, 45, 35, 0.78)),
    url("assets/portal-courtyard.webp") center / cover fixed;
}

.menu-card {
  background: rgba(4, 20, 16, 0.78);
  border: 1px solid rgba(225, 182, 111, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
}

.menu-card-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
}

.menu-card-head img {
  border-radius: 50%;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.menu-card-head span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-lines {
  display: grid;
  gap: 12px;
}

.menu-lines span {
  align-items: center;
  border-bottom: 1px solid rgba(245, 236, 214, 0.12);
  color: rgba(245, 236, 214, 0.88);
  display: flex;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  justify-content: space-between;
  padding: 12px 0;
}

.menu-lines span::after {
  color: var(--bronze);
  content: "";
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience {
  background: #071713;
}

.experience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
}

.experience-card,
.experience-list {
  background: rgba(245, 236, 214, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.experience-card.large {
  grid-row: span 2;
}

.experience-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.experience-card.large img {
  aspect-ratio: 1 / 1;
}

.experience-card div {
  padding: 24px;
}

.experience-list {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.experience-list span {
  border: 1px solid rgba(245, 236, 214, 0.13);
  border-radius: 999px;
  color: var(--cream);
  padding: 12px 16px;
}

.gallery {
  background: #091c17;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  background: rgba(245, 236, 214, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 474px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  bottom: 0;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.12em;
  padding: 48px 18px 16px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  z-index: 2;
}

.visual-tile {
  align-items: flex-end;
  display: flex;
}

.visual-tile::before {
  content: "";
  inset: 0;
  position: absolute;
}

.visual-tile.coffee::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(245, 236, 214, 0.14) 0 11%, transparent 12%),
    radial-gradient(circle at 50% 48%, #21150e 0 26%, transparent 27%),
    radial-gradient(circle at 50% 48%, transparent 0 33%, rgba(225, 182, 111, 0.55) 34% 36%, transparent 37%),
    linear-gradient(135deg, #2a1b10, #0d271e);
}

.visual-tile.pizza::before {
  background:
    radial-gradient(circle at 40% 38%, #c84f2f 0 4%, transparent 5%),
    radial-gradient(circle at 62% 58%, #f4d58d 0 5%, transparent 6%),
    conic-gradient(from 30deg, #d99b45, #b75f2b, #e7b85d, #d99b45);
}

.visual-tile.dessert::before {
  background:
    radial-gradient(circle at 54% 44%, rgba(245, 236, 214, 0.9) 0 16%, transparent 17%),
    linear-gradient(145deg, #6b3a27, #1a120f 55%, #0d271e);
}

.visual-tile.mocktail::before {
  background:
    radial-gradient(circle at 46% 34%, rgba(225, 182, 111, 0.45), transparent 22%),
    linear-gradient(145deg, #163f33, #0c1715 60%, #7d5b35);
}

.location {
  background:
    radial-gradient(circle at 12% 12%, rgba(225, 182, 111, 0.13), transparent 30%),
    linear-gradient(180deg, #071713, var(--ink));
}

.map-preview {
  align-items: center;
  background:
    linear-gradient(rgba(4, 20, 16, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 20, 16, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 52% 46%, rgba(225, 182, 111, 0.88) 0 8px, transparent 9px),
    linear-gradient(135deg, #dacfb9, #8f816b);
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(225, 182, 111, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  min-height: 420px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.map-preview::after {
  background: rgba(4, 20, 16, 0.82);
  border: 1px solid rgba(245, 236, 214, 0.22);
  border-radius: 50% 50% 50% 0;
  content: "";
  height: 38px;
  left: calc(52% - 19px);
  position: absolute;
  top: calc(46% - 38px);
  transform: rotate(-45deg);
  width: 38px;
}

.map-preview div {
  background: rgba(4, 20, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: auto;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.map-preview span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-preview strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.launch-band {
  background:
    linear-gradient(rgba(4, 20, 16, 0.76), rgba(4, 20, 16, 0.86)),
    url("assets/interior-atrium.webp") center / cover;
  padding: clamp(78px, 12vw, 160px) 0;
  text-align: center;
}

.launch-content {
  max-width: 780px;
}

.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0;
}

.countdown span {
  background: rgba(245, 236, 214, 0.09);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  min-width: 112px;
  padding: 14px 16px;
}

.countdown strong {
  color: var(--cream);
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.site-footer {
  background: #020e0b;
  padding: 52px clamp(20px, 5vw, 48px);
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: 1180px;
  text-align: center;
}

.site-footer p,
.site-footer small {
  color: var(--muted);
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.site-footer nav a {
  color: rgba(245, 236, 214, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowDrift {
  0%, 100% { opacity: 0.28; transform: translateY(0); }
  50% { opacity: 0.74; transform: translateY(-14px); }
}

@keyframes leafFall {
  0% { opacity: 0; transform: translate3d(0, -24px, 0) rotate(24deg); }
  12% { opacity: 0.35; }
  100% { opacity: 0; transform: translate3d(80px, 110vh, 0) rotate(220deg); }
}

@media (max-width: 1020px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:last-child {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
    z-index: 22;
  }

  .site-nav {
    align-items: flex-start;
    background: rgba(4, 20, 16, 0.97);
    border-left: 1px solid var(--line);
    bottom: auto;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    height: 100dvh;
    max-width: 360px;
    padding: 96px 32px 32px;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    visibility: hidden;
    width: 82vw;
  }

  .nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .hero-content {
    padding-top: clamp(110px, 17vh, 150px);
  }

  .two-column,
  .two-column.reverse,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card.large {
    grid-row: auto;
  }

  .experience-card.large img,
  .experience-card img {
    aspect-ratio: 4 / 3;
  }

  .map-preview {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-vignette {
    background:
      radial-gradient(circle at 52% 42%, rgba(225, 182, 111, 0.2), transparent 30%),
      linear-gradient(0deg, rgba(4, 20, 16, 0.96), rgba(4, 20, 16, 0.5) 58%, rgba(4, 20, 16, 0.74));
  }

  .hero-content {
    padding: 118px 20px 12vh;
  }

  .hero-actions,
  .section-copy .btn {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item.tall {
    min-height: 430px;
  }

  .countdown {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.details-page {
  min-height: 100svh;
}

.details-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(18px, 5vw, 56px);
  position: relative;
}

.details-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.details-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(225, 182, 111, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(4, 20, 16, 0.6), rgba(4, 20, 16, 0.92)),
    linear-gradient(90deg, rgba(4, 20, 16, 0.94), rgba(4, 20, 16, 0.36), rgba(4, 20, 16, 0.92));
  inset: 0;
  position: absolute;
}

.details-card {
  align-items: center;
  background: linear-gradient(180deg, rgba(4, 20, 16, 0.74), rgba(4, 20, 16, 0.9));
  border: 1px solid rgba(245, 236, 214, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  max-width: 460px;
  padding: clamp(26px, 7vw, 44px);
  position: relative;
  text-align: center;
  width: min(100%, 460px);
  z-index: 2;
}

.details-logo {
  border: 1px solid rgba(245, 236, 214, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  height: 104px;
  margin-bottom: 24px;
  object-fit: cover;
  width: 104px;
}

.details-card h1 {
  font-size: clamp(3.25rem, 14vw, 5.2rem);
  margin-bottom: 14px;
}

.details-subtitle {
  color: rgba(245, 236, 214, 0.9);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.details-location {
  color: var(--muted);
  margin-bottom: 24px;
}

.details-actions {
  display: grid;
  gap: 12px;
  width: 100%;
}

.details-button {
  align-items: center;
  background: rgba(245, 236, 214, 0.08);
  border: 1px solid rgba(245, 236, 214, 0.18);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 15px 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.details-button:hover {
  background: rgba(225, 182, 111, 0.12);
  border-color: rgba(225, 182, 111, 0.5);
  transform: translateY(-2px);
}

.details-button span {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.details-button small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details-phone {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(225, 182, 111, 0.22);
  color: #1c1207;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  margin-top: 18px;
  padding: 14px 20px;
  width: 100%;
}

@media (max-width: 420px) {
  .details-card {
    padding: 24px 18px;
  }

  .details-logo {
    height: 88px;
    width: 88px;
  }

  .details-button {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

.rewards-page {
  min-height: 100svh;
}

.rewards-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(18px, 5vw, 56px);
  position: relative;
}

.rewards-card {
  background: linear-gradient(180deg, rgba(4, 20, 16, 0.78), rgba(4, 20, 16, 0.94));
  border: 1px solid rgba(245, 236, 214, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 560px;
  padding: clamp(24px, 6vw, 44px);
  position: relative;
  width: min(100%, 560px);
  z-index: 2;
}

.rewards-logo {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 26px;
}

.rewards-logo img {
  border: 1px solid rgba(245, 236, 214, 0.18);
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.rewards-logo span {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.rewards-card h1 {
  font-size: clamp(3rem, 11vw, 5.4rem);
  margin-bottom: 16px;
}

.rewards-card h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.rewards-intro,
.reward-next {
  color: var(--muted);
}

.reward-alert {
  background: rgba(179, 75, 55, 0.16);
  border: 1px solid rgba(255, 165, 138, 0.32);
  border-radius: 8px;
  color: #ffd4c8;
  margin: 18px 0;
  padding: 12px 14px;
}

.reward-alert.success {
  background: rgba(141, 164, 107, 0.14);
  border-color: rgba(141, 164, 107, 0.36);
  color: #e8f0d3;
}

.reward-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.reward-form.compact {
  grid-template-columns: 1fr auto;
}

.reward-form label {
  color: var(--gold);
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reward-form input {
  background: rgba(245, 236, 214, 0.08);
  border: 1px solid rgba(245, 236, 214, 0.2);
  border-radius: 8px;
  color: var(--cream);
  font: inherit;
  min-height: 52px;
  outline: none;
  padding: 13px 14px;
  text-transform: none;
}

.reward-form input:focus {
  border-color: rgba(225, 182, 111, 0.62);
  box-shadow: 0 0 0 3px rgba(225, 182, 111, 0.12);
}

.reward-profile {
  background: rgba(245, 236, 214, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  margin: 24px 0 16px;
  padding: 18px;
}

.reward-profile span,
.reward-profile small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reward-profile strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.reward-count {
  align-items: center;
  display: flex;
  gap: 14px;
  margin: 18px 0;
}

.reward-count strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9;
}

.reward-count span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reward-progress {
  background: rgba(245, 236, 214, 0.1);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.reward-progress div {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: inherit;
  height: 100%;
}

.reward-journey {
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 182, 111, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(245, 236, 214, 0.08), rgba(245, 236, 214, 0.035));
  border: 1px solid rgba(245, 236, 214, 0.16);
  border-radius: 8px;
  margin: 22px 0;
  padding: clamp(18px, 4vw, 26px);
}

.reward-journey-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.reward-journey-head span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reward-journey-head strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.reward-map {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(10, 1fr);
  margin: 16px 0 22px;
  position: relative;
}

.reward-map-line {
  background: rgba(245, 236, 214, 0.12);
  border-radius: 999px;
  height: 5px;
  left: 5%;
  overflow: hidden;
  position: absolute;
  right: 5%;
  top: 20px;
  z-index: 0;
}

.reward-map-line span {
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  display: block;
  height: 100%;
}

.map-stop {
  display: grid;
  justify-items: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.map-stop span {
  align-items: center;
  background: #10251f;
  border: 1px solid rgba(245, 236, 214, 0.22);
  border-radius: 50%;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.map-stop.is-complete span {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-color: rgba(245, 236, 214, 0.55);
  color: #1c1207;
}

.map-stop.is-next span {
  box-shadow: 0 0 0 5px rgba(225, 182, 111, 0.12);
  color: var(--cream);
}

.map-stop.is-prize span {
  height: 52px;
  margin-top: -4px;
  width: 52px;
}

.reward-prize-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.reward-prize-card {
  background: rgba(4, 20, 16, 0.54);
  border: 1px solid rgba(245, 236, 214, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.reward-prize-card.is-unlocked {
  border-color: rgba(225, 182, 111, 0.48);
}

.reward-prize-card.is-available {
  box-shadow: 0 0 34px rgba(225, 182, 111, 0.15);
}

.reward-prize-card h2 {
  font-size: 1.45rem;
  margin: 4px 0 6px;
}

.reward-prize-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.reward-prize-card div > span,
.reward-prize-card > strong {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.prize-visual {
  align-items: center;
  background:
    radial-gradient(circle at 70% 18%, rgba(245, 236, 214, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(225, 182, 111, 0.18), rgba(141, 164, 107, 0.1));
  border: 1px solid rgba(225, 182, 111, 0.28);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  height: 86px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.prize-visual span {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.7rem;
  height: 48px;
  justify-content: center;
  position: relative;
  width: 48px;
  z-index: 1;
}

.prize-visual.food span:first-child {
  background: conic-gradient(from 30deg, #d99b45, #b75f2b, #e7b85d, #d99b45);
  color: #1c1207;
}

.prize-visual.food span:last-child {
  background: #1b120d;
  border: 4px solid #d8c8a6;
  color: #d8c8a6;
}

.prize-visual.merch span {
  background: linear-gradient(180deg, #f5ecd6, #d4ab67);
  border-radius: 14px 14px 20px 20px;
  color: #1c1207;
  width: 38px;
}

.prize-visual.merch::after {
  border: 4px solid #d4ab67;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  content: "";
  height: 28px;
  margin-left: 34px;
  position: absolute;
  width: 18px;
}

.reward-next-card {
  background: rgba(225, 182, 111, 0.1);
  border: 1px solid rgba(225, 182, 111, 0.28);
  border-radius: 8px;
  margin-top: 14px;
  padding: 14px 16px;
}

.reward-next-card span {
  color: var(--gold);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.reward-next-card strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.reward-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reward-actions form {
  margin: 0;
}

.reward-inline-form {
  margin: 20px 0;
}

.reward-redemptions {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}

.reward-redemptions form {
  align-items: center;
  background: rgba(245, 236, 214, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  margin-top: 12px;
  padding: 14px;
}

.reward-redemptions span {
  color: var(--cream);
}

.staff-link {
  color: var(--gold);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 18px;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .reward-form.compact,
  .reward-redemptions form,
  .reward-prize-grid {
    grid-template-columns: 1fr;
  }

  .rewards-card .btn,
  .reward-actions form,
  .reward-actions .btn {
    width: 100%;
  }

  .reward-map {
    gap: 4px;
  }

  .map-stop span {
    font-size: 0.7rem;
    height: 30px;
    width: 30px;
  }

  .map-stop.is-prize span {
    height: 38px;
    width: 38px;
  }

  .reward-map-line {
    top: 14px;
  }
}

.first100-page {
  min-height: 100svh;
}

.first100-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(18px, 5vw, 56px);
  position: relative;
}

.first100-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(225, 182, 111, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(4, 20, 16, 0.78), rgba(4, 20, 16, 0.95));
  border: 1px solid rgba(245, 236, 214, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 720px;
  padding: clamp(24px, 6vw, 44px);
  position: relative;
  width: min(100%, 720px);
  z-index: 2;
}

.first100-card h1 {
  font-size: clamp(3.4rem, 11vw, 6.4rem);
  margin-bottom: 16px;
}

.first100-intro {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 610px;
}

.first100-meter {
  background: rgba(245, 236, 214, 0.07);
  border: 1px solid rgba(245, 236, 214, 0.16);
  border-radius: 8px;
  margin: 24px 0;
  padding: 18px;
}

.first100-meter-head,
.first100-milestones {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.first100-meter-head span,
.first100-milestones span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.first100-meter-head strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.first100-meter-bar {
  background: rgba(245, 236, 214, 0.12);
  border-radius: 999px;
  height: 14px;
  margin: 16px 0 10px;
  overflow: hidden;
}

.first100-meter-bar span {
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.first100-form {
  background: rgba(245, 236, 214, 0.05);
  border: 1px solid rgba(245, 236, 214, 0.14);
  border-radius: 8px;
  padding: 18px;
}

.first100-ticket {
  background:
    linear-gradient(135deg, rgba(225, 182, 111, 0.2), rgba(245, 236, 214, 0.06)),
    rgba(4, 20, 16, 0.64);
  border: 1px solid rgba(225, 182, 111, 0.42);
  border-radius: 8px;
  margin: 24px 0 0;
  overflow: hidden;
  padding: clamp(22px, 5vw, 34px);
  position: relative;
}

.first100-ticket::before,
.first100-ticket::after {
  background: var(--ink);
  border-radius: 50%;
  content: "";
  height: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.first100-ticket::before {
  left: -14px;
}

.first100-ticket::after {
  right: -14px;
}

.first100-ticket > span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.first100-ticket > strong {
  color: var(--cream);
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.first100-ticket h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 10px;
}

.first100-ticket p {
  color: var(--muted);
}

.first100-ticket div {
  background: rgba(4, 20, 16, 0.7);
  border: 1px dashed rgba(245, 236, 214, 0.32);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 12px 16px;
}

.first100-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0;
}

.first100-stats div {
  background: rgba(245, 236, 214, 0.07);
  border: 1px solid rgba(245, 236, 214, 0.15);
  border-radius: 8px;
  padding: 16px;
}

.first100-stats strong {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}

.first100-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-transform: uppercase;
}

.first100-table-wrap {
  border: 1px solid rgba(245, 236, 214, 0.14);
  border-radius: 8px;
  margin-top: 22px;
  max-height: 460px;
  overflow: auto;
}

.first100-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.first100-table th,
.first100-table td {
  border-bottom: 1px solid rgba(245, 236, 214, 0.1);
  padding: 12px 14px;
  text-align: left;
}

.first100-table th {
  background: rgba(225, 182, 111, 0.11);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  position: sticky;
  text-transform: uppercase;
  top: 0;
}

.first100-table td {
  color: var(--cream);
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .first100-stats {
    grid-template-columns: 1fr;
  }

  .first100-meter-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
