/* ============================================
   Bin to Bottle — Styles
   Dark, moody, industrial wine aesthetic
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — dark, premium palette */
  --btb-ink: #0d0f0e;
  --btb-charcoal: #1a1d1c;
  --btb-graphite: #252928;
  --btb-steel: #3a3f3d;
  --btb-stone: #6b7270;
  --btb-silver: #9ca3a1;
  --btb-mist: #c8cdcb;
  --btb-cloud: #e8eae9;
  --btb-cream: #f5f4f0;
  --btb-white: #fafaf8;

  /* Accent — warm copper/bronze */
  --btb-copper: #b87333;
  --btb-copper-light: #d4956a;
  --btb-copper-dark: #8e5524;

  /* Wine accent — deep burgundy */
  --btb-wine: #722f37;
  --btb-wine-light: #964050;

  /* Typography */
  --font-headline: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --section-pad-sm: clamp(48px, 6vw, 80px);

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--btb-charcoal);
  background: var(--btb-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--btb-copper);
  color: var(--btb-white);
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn--primary {
  background: var(--btb-copper);
  color: var(--btb-white);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--btb-copper-dark);
}

.btn--outline {
  background: transparent;
  color: var(--btb-cream);
  border: 1px solid rgba(200, 205, 203, 0.4);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 205, 203, 0.7);
}

.btn--full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--btb-copper);
  outline-offset: 3px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(13, 15, 14, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav__logo-text {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--btb-cream);
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo-divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: var(--btb-copper);
  margin: 0 10px;
}

/* Nav Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.7);
  padding: 8px 16px;
  transition: color 0.3s;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--btb-cream);
}
.nav__link:focus-visible {
  outline: 1px solid var(--btb-copper);
  outline-offset: 2px;
}

.nav__link--cta {
  color: var(--btb-copper);
  border: 1px solid var(--btb-copper);
  padding: 8px 20px;
  margin-left: 8px;
  transition: all 0.3s;
}
.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background: var(--btb-copper);
  color: var(--btb-white);
}

/* LinkedIn icon in nav */
.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-left: 8px;
  color: rgba(245, 244, 240, 0.5);
  transition: color 0.3s;
}
.nav__social:hover,
.nav__social:focus-visible {
  color: var(--btb-cream);
}
.nav__social svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--btb-cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--btb-ink);
  background-image: url('images/hero-night.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 15, 14, 0.6) 0%,
    rgba(13, 15, 14, 0.45) 40%,
    rgba(13, 15, 14, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--btb-copper-light);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-headline);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--btb-cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(200, 205, 203, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.3s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--btb-copper), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--btb-copper);
  margin-bottom: 16px;
}
.section__eyebrow--light {
  color: var(--btb-copper-light);
}

.section__title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--btb-charcoal);
  margin-bottom: 16px;
}
.section__title--light {
  color: var(--btb-cream);
}

.section__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--btb-stone);
  max-width: 600px;
  margin: 0 auto;
}
.section__desc--light {
  color: rgba(200, 205, 203, 0.7);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section--about {
  background: var(--btb-cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about__text p {
  font-size: 15px;
  color: var(--btb-stone);
  margin-bottom: 16px;
}
.about__text p:last-child {
  margin-bottom: 0;
}

.about__image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--btb-graphite), var(--btb-steel));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: 2px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid rgba(58, 63, 61, 0.12);
}

.stats__item {
  text-align: center;
}

.stats__number {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--btb-charcoal);
  line-height: 1;
}

.stats__unit {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--btb-copper);
  margin-top: 4px;
}

.stats__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--btb-stone);
  margin-top: 4px;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(58, 63, 61, 0.15);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section--services {
  background: var(--btb-charcoal);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-out);
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 115, 51, 0.2);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--btb-copper);
  margin-bottom: 24px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 500;
  color: var(--btb-cream);
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(200, 205, 203, 0.6);
}

/* ============================================
   FACILITY SECTION
   ============================================ */
.section--facility {
  background: var(--btb-cream);
}

.facility__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.facility__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.facility__image {
  background: linear-gradient(135deg, var(--btb-graphite), var(--btb-steel));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.facility__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 115, 51, 0.1);
  border-radius: 2px;
}

.facility__image--large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.facility__image--small-top,
.facility__image--small-bottom {
  aspect-ratio: 1;
}

.facility__subtitle {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 400;
  color: var(--btb-charcoal);
  margin-bottom: 16px;
}

.facility__details p {
  font-size: 15px;
  color: var(--btb-stone);
  margin-bottom: 28px;
}

.facility__list {
  list-style: none;
  margin-bottom: 32px;
}

.facility__list-item {
  font-size: 14px;
  color: var(--btb-stone);
  padding: 12px 0;
  border-bottom: 1px solid rgba(58, 63, 61, 0.1);
  line-height: 1.6;
}
.facility__list-item:first-child {
  border-top: 1px solid rgba(58, 63, 61, 0.1);
}
.facility__list-item strong {
  color: var(--btb-charcoal);
  font-weight: 500;
}

.facility__locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facility__location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--btb-stone);
}

.facility__location-pin {
  width: 20px;
  height: 20px;
  color: var(--btb-copper);
  flex-shrink: 0;
}
.facility__location-pin svg {
  width: 100%;
  height: 100%;
}

.facility__location strong {
  color: var(--btb-charcoal);
  font-weight: 500;
}

/* ============================================
   BOTTLING & CANNING SECTION
   ============================================ */
.section--bottling {
  background: var(--btb-ink);
}

.bottling__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

.bottling__col {
  text-align: center;
  padding: 40px 24px;
}

.bottling__col-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--btb-copper);
}
.bottling__col-icon svg {
  width: 100%;
  height: 100%;
}

.bottling__col-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 500;
  color: var(--btb-cream);
  margin-bottom: 14px;
}

.bottling__col p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(200, 205, 203, 0.6);
}

/* Bottling Images Strip */
.bottling__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.bottling__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-out);
}

.bottling__img:hover {
  opacity: 1;
}

/* Permits */
.bottling__permits {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bottling__permits-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--btb-silver);
  margin-bottom: 24px;
}

.permits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.permit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--btb-mist);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.permit-tag__note {
  font-size: 11px;
  color: var(--btb-copper-light);
}

/* ============================================
   SPIRITS & AGAVE SECTION
   ============================================ */
.section--spirits {
  background: var(--btb-cream);
  border-top: 1px solid rgba(58, 63, 61, 0.1);
}

.spirits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.spirits__text p {
  font-size: 15px;
  color: var(--btb-stone);
  margin-bottom: 16px;
  line-height: 1.8;
}
.spirits__text p:last-child {
  margin-bottom: 0;
}

.spirits__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spirits__highlight {
  padding: 32px 28px;
  background: var(--btb-white);
  border: 1px solid rgba(58, 63, 61, 0.08);
  transition: all 0.4s var(--ease-out);
}
.spirits__highlight:hover {
  border-color: rgba(184, 115, 51, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.spirits__highlight-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 500;
  color: var(--btb-charcoal);
  margin-bottom: 8px;
}

.spirits__highlight p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--btb-stone);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section--testimonials {
  background: var(--btb-charcoal);
  overflow: hidden;
}

.testimonials__slider {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 240px;
}

.testimonials__track {
  position: relative;
}

.testimonial {
  padding: 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.testimonial--active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-headline);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: var(--btb-cream);
  margin-bottom: 28px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial__name {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--btb-copper-light);
}

.testimonial__company {
  font-size: 12px;
  font-weight: 300;
  color: var(--btb-silver);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 205, 203, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.testimonials__dot--active {
  background: var(--btb-copper);
  border-color: var(--btb-copper);
}

.testimonials__dot:hover {
  border-color: var(--btb-copper-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section--contact {
  background: var(--btb-cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btb-steel);
}

.form__optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--btb-silver);
  font-weight: 400;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  border: 1px solid rgba(58, 63, 61, 0.2);
  background: var(--btb-white);
  color: var(--btb-charcoal);
  border-radius: 0;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--btb-copper);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7270' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact__info {
  padding-top: 20px;
}

.contact__info-block {
  margin-bottom: 32px;
}

.contact__info-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--btb-copper);
  margin-bottom: 10px;
}

.contact__address,
.contact__info-block p {
  font-style: normal;
  font-size: 15px;
  color: var(--btb-stone);
  line-height: 1.7;
}

.contact__link {
  font-size: 15px;
  color: var(--btb-charcoal);
  border-bottom: 1px solid rgba(58, 63, 61, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.contact__link:hover {
  color: var(--btb-copper);
  border-color: var(--btb-copper);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--btb-ink);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--btb-cream);
  display: flex;
  align-items: center;
}

.footer__logo-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--btb-copper);
  margin: 0 8px;
}

.footer__tagline {
  font-size: 12px;
  color: var(--btb-stone);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btb-silver);
  transition: color 0.3s;
}
.footer__links a:hover {
  color: var(--btb-cream);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--btb-silver);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.footer__social-link:hover {
  color: var(--btb-cream);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__legal {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px;
}

.footer__legal p {
  font-size: 12px;
  color: var(--btb-stone);
}

.footer__disclaimer-link {
  color: var(--btb-silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1px;
  margin-left: 12px;
  transition: color 0.3s, border-color 0.3s;
}
.footer__disclaimer-link:hover {
  color: var(--btb-cream);
  border-color: var(--btb-cream);
}

/* Image overrides for about section */
img.about__image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}

/* Image overrides for facility section */
img.facility__image {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}
img.facility__image--large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
img.facility__image--small-top,
img.facility__image--small-bottom {
  aspect-ratio: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero__scroll-line {
    animation: none;
    opacity: 0.4;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover {
    transform: none;
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about__grid {
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility__showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bottling__columns {
    gap: 24px;
  }

  .spirits__grid {
    gap: 40px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 15, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: right 0.4s var(--ease-out);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__link {
    font-size: 16px;
    padding: 16px 24px;
    letter-spacing: 0.15em;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
  }

  /* Toggle animation */
  .nav__toggle--active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    order: -1;
  }

  .about__image-frame {
    aspect-ratio: 16 / 10;
  }

  /* Stats */
  .stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stats__divider {
    display: none;
  }

  .stats__item {
    flex: 1 1 40%;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Bottling */
  .bottling__columns {
    grid-template-columns: 1fr;
  }

  .bottling__images {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Spirits */
  .spirits__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spirits__highlights {
    grid-template-columns: 1fr 1fr;
  }

  /* Form */
  .form__row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 12px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .bottling__col {
    padding: 28px 16px;
  }

  .stats__item {
    flex: 1 1 100%;
  }
}

/* ============================================
   RESPONSIVE — ULTRA SMALL
   ============================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero__eyebrow {
    font-size: 10px;
  }

  .section__title {
    font-size: 28px;
  }
}
