:root {
  --greige: #eee9df;
  --greige-deep: #d9d1c3;
  --ink: #27241f;
  --muted: #6b6258;
  --green: #556b2f;
  --green-soft: #e4ead6;
  --brown: #8a5a35;
  --brown-dark: #5f3d25;
  --cream: #fffaf1;
  --white: #ffffff;
  --shadow: 0 24px 55px rgba(39, 36, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--greige);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 16px;
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(238, 233, 223, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(39, 36, 31, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Anton", sans-serif;
  letter-spacing: 0;
}

.nav-toggle {
  display: grid;
  gap: 6px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.18);
  color: inherit;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: none;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 4px;
}

.site-nav a {
  padding: 12px 10px;
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  background: var(--brown);
  color: var(--cream) !important;
  border-radius: var(--radius);
  text-align: center;
}

.hero {
  min-height: 100svh;
  background: var(--ink);
}

.hero-swiper,
.hero-slide {
  min-height: 100svh;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: end;
  padding: 112px 16px 72px;
  overflow: hidden;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 15, 12, 0.32), rgba(18, 15, 12, 0.78)),
    linear-gradient(90deg, rgba(18, 15, 12, 0.72), rgba(18, 15, 12, 0.12));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9d1b4;
}

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

h1,
.hero h2,
.section-heading h2,
.intro-grid h2,
.location-grid h2,
.hours-card h2,
.contact-grid h2,
.extras-grid h2 {
  margin-bottom: 16px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.8rem, 22vw, 10rem);
}

.hero h2 {
  font-size: clamp(3.6rem, 15vw, 8.5rem);
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 1.06rem;
  font-weight: 600;
}

.hero-actions,
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.product-card button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary,
.product-card button {
  background: var(--brown);
  color: var(--cream);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 241, 0.7);
  color: var(--cream);
}

.swiper-pagination-bullet {
  background: var(--cream);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--green-soft);
  opacity: 1;
}

.intro-band,
.menu-section,
.location-section,
.hours-section,
.contact-section,
.site-footer {
  padding: 64px 0;
}

.intro-grid,
.location-grid,
.contact-grid,
.extras-grid {
  display: grid;
  gap: 28px;
}

.intro-grid h2,
.location-grid h2,
.contact-grid h2,
.extras-grid h2,
.hours-card h2,
.section-heading h2 {
  color: var(--green);
  font-size: clamp(2.4rem, 12vw, 4.7rem);
}

.payment-card {
  border-left: 4px solid var(--brown);
  padding: 18px;
  background: rgba(255, 250, 241, 0.65);
  border-radius: var(--radius);
}

.payment-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.payment-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-card li {
  border: 1px solid var(--greige-deep);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 24px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 14px 36px rgba(39, 36, 31, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.card-body h3 {
  margin-bottom: 0;
  color: var(--green);
  font-size: 1.28rem;
}

.card-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-card button {
  width: 100%;
  background: var(--brown);
}

.tinted {
  background: var(--green-soft);
}

.split {
  background: linear-gradient(180deg, var(--greige) 0 42%, var(--cream) 42% 100%);
}

.extras {
  background: var(--brown-dark);
  color: var(--cream);
}

.extras .eyebrow,
.extras h2 {
  color: #cce1c3;
}

.extras-grid p {
  color: rgba(255, 250, 241, 0.82);
}

.extras-grid img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.location-section {
  background: var(--cream);
}

.muted {
  color: var(--muted);
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hours-card {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--green);
  color: var(--cream);
}

.hours-card .eyebrow,
.hours-card h2 {
  color: #d6e5d4;
}

.hours-card p:last-child {
  margin-bottom: 0;
  font-size: clamp(2rem, 10vw, 4.6rem);
  font-family: "Anton", sans-serif;
  line-height: 1;
}

.contact-section {
  background: var(--cream);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--greige-deep);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  align-items: center;
  justify-content: space-between;
}

.footer-grid p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.7);
}

.footer-grid a {
  color: #cce1c3;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #1f8d55;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(31, 141, 85, 0.35);
  font-weight: 900;
}

.product-dialog {
  width: min(420px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(20, 17, 14, 0.58);
}

.product-dialog h2 {
  margin-bottom: 12px;
  color: var(--green);
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--greige);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 17, 14, 0.72);
  backdrop-filter: blur(18px);
}

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

.age-card {
  width: min(460px, 100%);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.age-card h2 {
  margin-bottom: 12px;
  color: var(--green);
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 18vw, 5.2rem);
  line-height: 0.95;
}

.age-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.button.ghost {
  border: 1px solid var(--greige-deep);
  background: var(--white);
  color: var(--ink);
}

@media (min-width: 680px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide {
    padding-inline: 40px;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-inline: 34px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    color: inherit;
    font-size: 0.94rem;
  }

  .site-header.is-scrolled .nav-cta {
    color: var(--cream) !important;
  }

  .hero-slide {
    align-items: center;
    padding-inline: max(40px, calc((100vw - 1120px) / 2));
  }

  .intro-band,
  .menu-section,
  .location-section,
  .hours-section,
  .contact-section,
  .site-footer {
    padding: 88px 0;
  }

  .intro-grid,
  .location-grid,
  .contact-grid,
  .extras-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split .product-grid,
  .tinted .product-grid:has(.product-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
