:root {
  color-scheme: dark;

  --primary: #121212;      /* main dark background */
  --secondary: #1a1a1a;    /* cards / sections */
  --accent: #d4af37;       /* gold */
  --muted: #2a2a2a;        /* subtle contrast */
  --text: #f5f5f5;         /* main text */
  --subtext: #b0b0b0;
  --card: #1e1e1e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--primary);
  line-height: 1.6;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4vw;
  background: var(--secondary);
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  display: grid;
  place-items: center;
  overflow: hidden; /* ensures logo fits nicely */
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps logo aspect ratio */
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--subtext);
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--muted);
}

#about-us,
#allocations,
#craft-beers,
#tequilas,
#champagnes,
#deals,
#contact {
  scroll-margin-top: 7rem;
}

.cta {
  background: var(--accent);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.cta:hover {
  opacity: 0.9;
}

.hero {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 3.5rem 4vw;
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 60%);
}

.about-hero {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent 34%),
    linear-gradient(120deg, #111111 0%, #181818 48%, #0d0d0d 100%);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.about-hero h1,
.about-hero > div:first-child .eyebrow {
  color: var(--accent);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-intro {
  margin-bottom: 1.25rem;
}

.hero-card {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-hero .hero-card {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(180deg, rgba(34, 27, 11, 0.95) 0%, rgba(22, 22, 22, 0.98) 100%);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  margin-top: 1rem;
  padding-left: 1rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.content-section {
  padding: 3rem 4vw;
}

.content-section.alt {
  background: #181818;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-size: 1.7rem;
  color: var(--accent);
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #444;
  background: var(--secondary);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.carousel [data-sold-out="true"],
.featured-track [data-sold-out="true"] {
  order: 999;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card[data-sold-out="true"] {
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.72;
}

.card[data-sold-out="true"] .card-image img,
.featured-slide[data-sold-out="true"] img {
  filter: grayscale(1) contrast(0.9);
}

.card[data-sold-out="true"] .pill,
.featured-slide[data-sold-out="true"] .pill {
  background: rgba(255, 255, 255, 0.12);
  color: #d8d8d8;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 2.5rem 4vw;
  background: #0b0b0b;
  color: #aaa;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== FEATURED CAROUSEL ===== */
.featured-carousel {
  position: relative;
  background: var(--secondary);
  padding: 2rem 4vw;
  overflow: hidden;
}

.featured-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.featured-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 420px;
  scroll-snap-align: start;
  position: relative;
}

.featured-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 380px;
}

.featured-slide[data-sold-out="true"] {
  opacity: 0.78;
}

.featured-content h2 {
  font-size: 2rem;
  margin: 0.75rem 0;
}

.featured-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border: 1px solid #444;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.featured-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.featured-btn[data-direction="prev"] {
  left: 1rem;
}

.featured-btn[data-direction="next"] {
  right: 1rem;
}

/* ===== PRODUCT CARD IMAGES ===== */
.card-image {
  width: 100%;
  aspect-ratio: 3 / 4;   /* perfect for liquor bottles */
  overflow: hidden;
  border-radius: 14px;
  background: #111;      /* fallback for transparent images */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card[data-sold-out="true"] .card-image::after,
.featured-slide[data-sold-out="true"]::after {
  content: "Sold Out";
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.78);
  color: #f5f5f5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .featured-slide {
    grid-template-columns: 1fr;
    min-height: 300px;
    text-align: center;
  }

  .featured-btn {
    display: none;
  }
}

/* ===== CONTACT SECTION (DARK THEME) ===== */

.contact-section {
  padding: 4rem 4vw;
  background: var(--secondary);
  color: var(--text);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--subtext);
}

.contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  margin: 1.5rem 0;
}

.contact-card strong {
  color: var(--text);
}

.map-container {
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}
/* ===== STORE GALLERY ===== */

.store-gallery {
  padding: 3rem 4vw;
  background: var(--primary);
  text-align: center;
}

.store-gallery h2 {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px; /* keeps it compact */
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.gallery-grid .featured {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
}

.everyday-favorites {
  background: #111111;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.favorite-group {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  padding: 1.25rem;
}

.favorite-group h3 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.favorite-group p {
  color: var(--subtext);
  font-size: 0.95rem;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 99999;
}

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

.age-gate-content {
  width: min(420px, 100%);
  background: var(--secondary);
  color: var(--text);
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.age-gate-content h2 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.age-gate-content p {
  color: var(--subtext);
  margin-bottom: 0.75rem;
}

.dob-label {
  display: block;
  margin: 1rem 0 0.5rem;
  color: var(--text);
}

.age-gate-content input[type="date"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #444;
  background: var(--card);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.age-error {
  min-height: 1.25rem;
  color: #ff8a8a;
  font-size: 0.9rem;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.age-buttons button {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

#enter-site {
  background: var(--accent);
  color: var(--primary);
}

#enter-site:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#age-no {
  background: #333;
  color: var(--text);
}
.st-hidden {
  display: none;
}

.st-signupform {
  margin-top: 1.25rem;
}

.st-signupform-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.st-signupform__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.required-mark {
  margin-left: 0.2rem;
  color: #f36b6b;
}

.st-signupform input[type="text"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.9);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-signupform input[type="text"]::placeholder {
  color: #8f8f8f;
}

.st-signupform input[type="text"]:focus,
.st-signupform input[type="checkbox"]:focus,
.st-signupform button[type="submit"]:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

.st-signupform-validation-error {
  border-color: #ff8b8b !important;
  box-shadow: 0 0 0 3px rgba(255, 139, 139, 0.12);
}

.st-error-message,
.st-signupform-terms-agreed-error,
.st-signupform-server-error-message {
  color: #ff8b8b;
  font-size: 0.86rem;
}

.st-terms-and-conditions {
  padding-top: 0.3rem;
}

.st-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.st-signupform input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(11, 11, 11, 0.95);
  position: relative;
  cursor: pointer;
}

.st-signupform input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.st-signupform input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.st-terms-and-conditions-text {
  color: var(--text);
  font-weight: 600;
}

.st-font-caption,
.st-font-caption a {
  color: var(--subtext);
}

.st-terms-and-conditions-caption {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
  padding-left: 1.8rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.st-join-web-form-submit-button-box {
  margin-top: 0.35rem;
}

.st-signupform button[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: var(--accent);
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.st-signupform button[type="submit"]:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.st-signupform button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.step2-confirmationText {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.7;
  padding: 0.35rem 0;
}

.st-signupform footer {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--subtext);
  font-size: 0.8rem;
  text-align: center;
}

.st-signupform footer a {
  color: var(--accent);
}

@media (max-width: 640px) {
  .st-signupform-content {
    padding: 1.15rem;
  }

  .st-terms-and-conditions-caption {
    padding-left: 0;
  }
}

.faq-section {
  background: #141414;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.faq-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.faq-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.faq-card p {
  color: var(--subtext);
}

.footer-content {
  max-width: 600px;
  text-align: center;
}
