@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Satoshi', 'Inter', sans-serif;
  --font-accent: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-inner {
  text-align: center;
  color: var(--white);
  max-width: 480px;
  padding: 2rem;
}

.age-gate-logo {
  margin-bottom: 0.5rem;
}

.age-gate-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.age-gate-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3rem;
}

.age-gate-question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.age-gate-sub {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.age-gate-btn {
  padding: 0.875rem 3rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  min-width: 140px;
}

.age-gate-btn.yes {
  background: var(--white);
  color: var(--black);
}

.age-gate-btn.yes:hover {
  background: var(--gray-200);
}

.age-gate-btn.no {
  background: transparent;
  color: var(--white);
}

.age-gate-btn.no:hover {
  background: var(--gray-800);
}

.age-gate-warning {
  font-size: 0.7rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.nav-logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

.hero > * {
  align-self: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                     radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.hero-text {
  padding: 2rem 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--gray-300);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bottles-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-fade {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  background: linear-gradient(to right, #000 0%, transparent 100%);
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
}

.btn-dark-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-dark-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--gray-50);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.section-dark .section-eyebrow {
  color: var(--gray-400);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--gray-400);
}

/* ===== RANGE TEASERS ===== */
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.range-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.range-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.range-card-image {
  height: 180px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
}

.range-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.range-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.range-card .sizes {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ===== SPIRIT DETAIL CARDS ===== */
.spirit-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.spirit-detail:nth-child(even) {
  direction: rtl;
}

.spirit-detail:nth-child(even) > * {
  direction: ltr;
}

.spirit-visual {
  aspect-ratio: 3/4;
  min-height: 550px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.spirit-visual-inner {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spirit-bottle-image {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}

.spirit-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.spirit-info .spirit-sizes {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.spirit-info p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.spirit-info .spirit-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-700);
}

/* ===== COCKTAILS ===== */
.cocktail-category {
  margin-bottom: 4rem;
}

.cocktail-category-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--black);
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.cocktail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  transition: var(--transition);
}

.cocktail-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.cocktail-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.cocktail-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cocktail-card .ingredients {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cocktail-card .method {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.cocktail-note {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-50);
  margin-top: 2rem;
}

.cocktail-note p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.cocktail-note strong {
  color: var(--black);
}

/* ===== CRAFT SECTION ===== */
.craft-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.craft-content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.craft-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.craft-feature {
  text-align: center;
  padding: 2rem 1rem;
}

.craft-feature-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.craft-feature h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.craft-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== WHERE TO BUY ===== */
.stockist-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.stockist-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stockist-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stockist-channel {
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stockist-channel:hover {
  border-color: var(--black);
}

.stockist-channel h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stockist-channel p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-details li strong {
  display: block;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--black);
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  color: var(--black);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 800;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--black);
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--black);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
  cursor: pointer;
}

.checkbox-group span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-legal {
  text-align: center;
}

.footer-legal p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
}

.page-hero.dark {
  background: var(--black);
  color: var(--white);
}

.page-hero.light {
  background: var(--gray-50);
  color: var(--black);
}

.page-hero .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero .section-desc {
  max-width: 650px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 50vh;
    order: -1;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-image-fade {
    width: 40%;
    background: linear-gradient(to right, #000 0%, transparent 100%);
  }

  .hero-buttons {
    justify-content: center;
  }

  .range-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .spirit-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spirit-detail:nth-child(even) {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .craft-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .stockist-channels {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .cocktail-grid {
    grid-template-columns: 1fr;
  }

  .spirit-bottle-image {
    max-height: 100%;
    max-width: 100%;
  }

  .age-gate-logo img {
    height: 60px;
  }

  .age-gate-question {
    font-size: 1.25rem;
  }

  .age-gate-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gray-800);
}
