/* ===== CSS Variables & Reset ===== */
:root {
  --orange: #FF6A00;
  --orange-dark: #E8500A;
  --black: #0A0A0A;
  --black-dark: #080808;
  --black-darker: #050505;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Typography ===== */
.text-orange {
  color: var(--orange);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background-color: rgba(255, 106, 0, 0.1);
}

.btn-glow {
  box-shadow: 0 0 20px var(--orange), 0 0 60px rgba(232, 80, 10, 0.4);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  transition: gap 0.3s ease;
}

.link-arrow:hover {
  gap: 1rem;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .desktop-only {
    display: inline-flex;
  }
  .mobile-only {
    display: none;
  }
}

/* ===== Intro Screen ===== */
.intro-screen {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.intro-text {
  font-family: var(--font-heading);
  font-size: 12vw;
  letter-spacing: 0.1em;
  position: relative;
}

.intro-text-outline {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.intro-text-fill {
  position: relative;
  color: var(--orange);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.1s ease-out;
}

.intro-spacer {
  height: 200vh;
  display: block;
  width: 100%;
}

.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-50);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
  z-index: 101;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

/* ===== Age Gate ===== */
.age-gate {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 100;
}

.age-gate-logo {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--orange);
  letter-spacing: 0.1em;
}

.age-gate-text {
  font-size: 1.125rem;
  color: var(--white);
  text-align: center;
  padding: 0 1rem;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .age-gate-buttons {
    flex-direction: row;
  }
}

/* ===== Main Site ===== */
.main-site {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-site.visible {
  opacity: 1;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--white-10);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-menu-btn {
    align-self: center;
  }
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    height: 6rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--orange);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  background-color: var(--black);
  border-top: 1px solid var(--white-10);
  padding: 1rem 0;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--orange);
  background-color: rgba(255, 255, 255, 0.05);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottles-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.1s ease-out;
  z-index: 20;
}

.bottle img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== BOTTLE SIZING - FIXED SIZE ===== */
.bottle-left {
  transform: translate(calc(-50% - 35%), -50%);
  width: 320px;
}

.bottle-right {
  transform: translate(calc(-50% + 35%), -50%);
  width: 320px;
}

@media (max-width: 820px) {
  .bottle-left {
    width: 260px;
  }
  .bottle-right {
    width: 260px;
  }
}

@media (max-width: 680px) {
  .bottle-left {
    width: 200px;
  }
  .bottle-right {
    width: 200px;
  }
}

@media (max-width: 540px) {
  .bottle-left {
    transform: translate(-50%, -50%);
    z-index: 21;
    width: 160px;
  }
  .bottle-right {
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 160px;
  }
}

@media (max-width: 400px) {
  .bottle-left {
    width: 120px;
  }
  .bottle-right {
    width: 120px;
  }
}

.bottle-shape {
  display: none;
}

.bottle-glow {
  display: none;
}

.bottle-label {
  display: none;
}

.light-leak {
  position: absolute;
  width: 2rem;
  height: 16rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 106, 0, 0.6), transparent);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .light-leak {
    width: 4rem;
    height: 24rem;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ===== SMALLER HERO TEXT ===== */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-description {
  color: var(--white-70);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--black-dark);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

/* Scroll animation */
[data-animate] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
}

.product-bottle {
  width: 6rem;
  height: 12rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(to bottom, #374151, #1f2937);
  border-radius: 9999px 9999px 0.5rem 0.5rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.product-card:hover .product-bottle {
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.3);
}

.product-bottle-glow {
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 33%;
  background-color: rgba(255, 106, 0, 0.2);
  border-radius: 9999px;
  filter: blur(4px);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .product-name {
    font-size: 1.6rem;
  }
}

.product-abv {
  color: var(--orange);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-description {
  color: var(--white-50);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Featured Product ===== */
.featured-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 50rem;
  margin: 0 auto;
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.featured-product:hover {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
}

@media (min-width: 768px) {
  .featured-product {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }
}

.featured-product-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.featured-product-img {
  width: 8rem;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
  .featured-product-img {
    width: 10rem;
  }
}

.featured-product-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.featured-product-abv {
  color: var(--white-70);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.featured-product-desc {
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  font-size: 0.95rem;
}

/* ===== About Grid ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-text {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--orange);
}

.stat-label {
  color: var(--white-50);
  font-size: 0.8rem;
}

.about-image {
  position: relative;
  height: 18rem;
  background: linear-gradient(to bottom right, rgba(255, 106, 0, 0.2), transparent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .about-image {
    height: 28rem;
  }
}

.about-image-text {
  font-family: var(--font-heading);
  font-size: 9rem;
  color: rgba(255, 106, 0, 0.2);
}

.about-image-photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.about-image-photo-cover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .about-image-text {
    font-size: 12rem;
  }
}

/* ===== Cocktails Grid ===== */
.cocktails-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cocktails-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cocktail-card {
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.cocktail-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.cocktail-bar {
  height: 0.4rem;
  background-color: var(--orange);
}

.cocktail-content {
  padding: 1.75rem;
}

.cocktail-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cocktail-name {
    font-size: 1.6rem;
  }
}

.cocktail-ingredients {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cocktail-ingredients li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-50);
  font-size: 0.85rem;
}

.bullet {
  width: 0.3rem;
  height: 0.3rem;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--black-darker);
  border-top: 1px solid var(--white-10);
  padding: 2.5rem 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.footer-logo-img {
  display: block;
  height: 5rem;
  width: auto;
}

@media (min-width: 768px) {
  .footer-logo-img {
    height: 6rem;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--white-50);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.footer-contact-btn:hover,
.footer-contact-btn.active {
  color: var(--white);
  background-color: rgba(255, 106, 0, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--white-30);
  font-size: 0.8rem;
}

.footer-legal {
  color: var(--white-30);
  font-size: 0.8rem;
}

/* ===== Legal Block ===== */
.footer-legal-block {
  border-top: 1px solid var(--white-10);
  padding-top: 1.75rem;
  margin-top: 0.75rem;
}

.footer-legal-text {
  color: var(--white-30);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 0.4rem auto;
}

.footer-legal-text-bold {
  font-weight: 600;
  color: var(--white-50);
}

/* ===== Page Specific Styles ===== */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-50);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--orange);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.1em;
}

.page-description {
  color: var(--white-70);
  font-size: 1rem;
  max-width: 42rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .page-description {
    font-size: 1.1rem;
  }
}

/* ===== Products Page ===== */
.product-detail {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-detail:nth-child(even) .product-detail-bottle {
  order: 2;
}

.product-detail-bottle {
  display: flex;
  justify-content: center;
}

.product-detail-shape {
  width: 10rem;
  height: 24rem;
  border-radius: 9999px 9999px 0.5rem 0.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.5s ease;
}

@media (min-width: 768px) {
  .product-detail-shape {
    width: 14rem;
    height: 34rem;
  }
}

.product-detail-shape:hover {
  box-shadow: 0 0 60px var(--orange);
}

.product-detail-shape .bottle-glow {
  top: 2rem;
}

.product-detail-shape .bottle-label {
  bottom: 2rem;
  font-size: 1.25rem;
}

.product-detail-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .product-detail-title {
    font-size: 2.8rem;
  }
}

.product-detail-desc {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.product-tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--orange);
  font-size: 0.8rem;
  border-radius: 0.25rem;
}

/* ===== About Page ===== */
.about-section {
  padding: 3.5rem 0;
}

.about-section-dark {
  background-color: var(--black-dark);
}

.process-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  color: var(--white-70);
  line-height: 1.7;
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 50rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.philosophy-text {
  color: var(--white-70);
  font-size: 1.15rem;
  line-height: 1.7;
  font-style: italic;
}

@media (min-width: 768px) {
  .philosophy-text {
    font-size: 1.35rem;
  }
}

.philosophy-author {
  color: var(--orange);
  font-weight: 600;
  margin-top: 1.25rem;
}

/* ===== Cocktails Page ===== */
.cocktails-page-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cocktails-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cocktails-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cocktail-page-card {
  background-color: #111;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.cocktail-page-card:hover {
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
}

.cocktail-page-card.active {
  outline: 2px solid var(--orange);
}

.cocktail-image {
  width: 100%;
  height: 10rem;
  background: linear-gradient(to bottom right, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cocktail-glass {
  width: 4rem;
  height: 6rem;
  border: 2px solid rgba(255, 106, 0, 0.5);
  border-radius: 0.125rem 0.125rem 9999px 9999px;
  position: relative;
  transition: border-color 0.3s ease;
}

.cocktail-page-card:hover .cocktail-glass {
  border-color: var(--orange);
}

.cocktail-glass-fill {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 106, 0, 0.2);
  border-radius: 50%;
  filter: blur(4px);
  transition: background-color 0.3s ease;
}

.cocktail-page-card:hover .cocktail-glass-fill {
  background-color: rgba(255, 106, 0, 0.3);
}

.cocktail-page-content {
  padding: 1.25rem;
}

.cocktail-base {
  color: rgba(255, 106, 0, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cocktail-page-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--orange);
  margin: 0.4rem 0 0.6rem;
}

.cocktail-page-desc {
  color: var(--white-70);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cocktail-expanded {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.cocktail-page-card.active .cocktail-expanded {
  max-height: 500px;
  opacity: 1;
}

.cocktail-expanded-inner {
  padding-top: 0.75rem;
  border-top: 1px solid var(--white-10);
}

.cocktail-section-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cocktail-method {
  color: var(--white-70);
  font-size: 0.85rem;
  line-height: 1.6;
}

.cocktail-toggle {
  color: var(--orange);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cocktail-toggle span {
  transition: transform 0.3s ease;
}

.cocktail-page-card.active .cocktail-toggle span {
  transform: rotate(180deg);
}

.tips-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.tip-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.tip-desc {
  color: var(--white-70);
  font-size: 0.85rem;
}

/* ===== Mobile Fixes ===== */
@media (max-width: 767px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .product-detail:nth-child(even) .product-detail-bottle {
    order: unset;
  }

  .product-detail-bottle {
    order: unset !important;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-section {
    padding: 2.5rem 0;
  }

  .page-header {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* ===== Features / Why Us Grid ===== */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.15);
}

.feature-icon {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.feature-desc {
  color: var(--white-70);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  padding: 1.75rem;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: rgba(255, 106, 0, 0.3);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.testimonial-text {
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial-author {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--white-50);
  font-size: 0.75rem;
}

/* ===== Newsletter ===== */
.newsletter-section {
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 1.75rem auto 0;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background-color: var(--black);
  border: 1px solid var(--white-10);
  border-radius: 0.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: var(--white-50);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--orange);
}

.newsletter-note {
  color: var(--white-30);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* ===== Contact Page ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-label {
  color: var(--white-70);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 7rem;
  font-family: var(--font-body);
}

.contact-form-submit {
  align-self: flex-start;
}

.contact-alt-text {
  color: var(--white-50);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1.75rem;
}

.contact-alert {
  padding: 0.9rem 1.1rem;
  border-radius: 0.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
}

.contact-alert-success {
  background-color: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: var(--orange);
}

.contact-alert-error {
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #f87171;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(to bottom right, rgba(255, 106, 0, 0.3), var(--black-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--orange);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.team-role {
  color: var(--orange);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  color: var(--white-50);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== Awards ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.award-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--white-10);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.award-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.award-year {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.award-title {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.award-body {
  color: var(--white-50);
  font-size: 0.75rem;
}

/* ===== Press Strip ===== */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.press-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white-30);
  transition: color 0.3s ease;
}

.press-item:hover {
  color: var(--white-70);
}

/* ===== Social Gallery ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-tile {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, rgba(255, 106, 0, 0.25), var(--black-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: rgba(255, 106, 0, 0.4);
  border: 1px solid var(--white-10);
  transition: all 0.3s ease;
}

.social-tile:hover {
  border-color: rgba(255, 106, 0, 0.5);
  color: var(--orange);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--white-10);
  padding: 1.25rem 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--white);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.35rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-answer {
  color: var(--white-70);
  line-height: 1.7;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}