/*
Theme Name: Rhumbielle Legacy
Theme URI: https://rhumbielle.com
Author: Distillerie Bielle
Author URI: https://rhumbielle.com
Description: Thème WordPress premium pour la Distillerie Bielle — L'Excellence du Rhum Agricole depuis 1910. Marie-Galante, Guadeloupe.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rhumbielle
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Dark luxury palette */
  --background: hsl(20, 31%, 4%);
  --foreground: hsl(28, 43%, 93%);

  --card: hsl(20, 20%, 8%);
  --card-foreground: hsl(28, 43%, 93%);

  --primary: hsl(40, 53%, 55%);
  --primary-foreground: hsl(20, 31%, 4%);

  --secondary: hsl(26, 90%, 37%);
  --secondary-foreground: hsl(28, 43%, 93%);

  --muted: hsl(20, 15%, 12%);
  --muted-foreground: hsl(28, 15%, 55%);

  --accent: hsl(18, 54%, 39%);
  --accent-foreground: hsl(28, 43%, 93%);

  --border: hsl(40, 20%, 18%);
  --input: hsl(40, 20%, 18%);
  --ring: hsl(40, 53%, 55%);

  --radius: 0.25rem;

  /* Custom brand tokens */
  --gold: hsl(40, 53%, 55%);
  --gold-light: hsl(40, 60%, 70%);
  --gold-dark: hsl(40, 50%, 40%);
  --amber: hsl(26, 90%, 37%);
  --copper: hsl(18, 54%, 39%);
  --cane: hsl(92, 20%, 29%);
  --cream: hsl(28, 43%, 93%);
  --cream-dark: hsl(28, 20%, 70%);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(40, 53%, 55%), hsl(40, 60%, 70%));
  --gradient-dark: linear-gradient(180deg, hsl(20, 31%, 4%), hsl(20, 20%, 8%));
  --gradient-hero-overlay: linear-gradient(180deg, hsla(20, 31%, 4%, 0.4) 0%, hsla(20, 31%, 4%, 0.85) 100%);

  /* Shadows */
  --shadow-gold: 0 4px 30px -5px hsla(40, 53%, 55%, 0.3);
  --shadow-card: 0 8px 32px -8px hsla(0, 0%, 0%, 0.6);
  --shadow-elevated: 0 20px 60px -15px hsla(0, 0%, 0%, 0.8);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--foreground);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.font-body {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.heading-display {
  font-family: "Playfair Display", serif;
  color: var(--foreground);
  line-height: 1.1;
}

.body-elegant {
  font-family: "Cormorant Garamond", serif;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.section-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}

.text-gold {
  color: var(--gold);
}

.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   4. Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.grid {
  display: grid;
}

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

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

.grid-4 {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ==========================================================================
   5. Components — Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-md {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: 1px solid var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--primary-foreground);
}

.btn-gold-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-gold-ghost:hover {
  color: var(--gold-light);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   6. Components — Cards
   ========================================================================== */

.card-luxury {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-luxury:hover {
  box-shadow: var(--shadow-gold);
  border-color: hsla(40, 53%, 55%, 0.3);
  transform: translateY(-4px);
}

/* ==========================================================================
   7. Components — Section Title
   ========================================================================== */

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

.section-header--center {
  text-align: center;
}

.section-dividers {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-dividers--center {
  justify-content: center;
}

.section-divider {
  width: 4rem;
  height: 1px;
  background: var(--gold);
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.section-header .subtitle {
  font-family: "Cormorant Garamond", serif;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 42rem;
  line-height: 1.7;
}

.section-header--center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   8. Components — Navigation
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.site-nav--scrolled {
  background: hsla(20, 31%, 4%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Cormorant Garamond", serif;
  color: hsla(28, 43%, 93%, 0.7);
  transition: color 0.3s ease;
}

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-burger {
  display: flex;
  align-items: center;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: hsla(20, 31%, 4%, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6rem 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.is-open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: hsla(28, 43%, 93%, 0.7);
}

.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu .mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* ==========================================================================
   9. Components — Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--small {
  min-height: 50vh;
  min-height: max(50vh, 400px);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 2rem;
}

.hero__content h1 .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: hsla(40, 53%, 55%, 0.4);
}

/* ==========================================================================
   10. Components — Product Card
   ========================================================================== */

.product-card {
  display: block;
  text-decoration: none;
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--muted);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsla(20, 31%, 4%, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-card__badge span {
  font-size: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-weight: 600;
}

.product-card__medals {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: hsla(40, 53%, 55%, 0.9);
  color: var(--primary-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.product-card__medals svg {
  width: 0.75rem;
  height: 0.75rem;
}

.product-card__medals span {
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card__info {
  padding: 1.25rem;
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
}

.product-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.25rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.product-card:hover .product-card__name {
  color: var(--gold);
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--gold);
}

.product-card__cta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.product-card__cta .arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__cta .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   11. Components — Filter Bar
   ========================================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--primary-foreground);
  border-color: var(--gold);
}

/* ==========================================================================
   12. Components — Footer
   ========================================================================== */

.site-footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: "Cormorant Garamond", serif;
}

.footer-section h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a,
.footer-section p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-family: "Cormorant Garamond", serif;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-age__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  flex-shrink: 0;
}

.footer-age p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  max-width: 28rem;
}

/* ==========================================================================
   13. Sections — Introduction
   ========================================================================== */

.intro-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .intro-section {
    padding: 8rem 0;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.intro-label .divider {
  width: 4rem;
  height: 1px;
  background: var(--gold);
}

.intro-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

@media (min-width: 1024px) {
  .stat-item {
    text-align: left;
  }
}

.stat-value {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  font-family: "Cormorant Garamond", serif;
}

.intro-image {
  position: relative;
}

.intro-image__frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
}

.intro-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image__accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid hsla(40, 53%, 55%, 0.3);
  border-radius: var(--radius);
}

/* ==========================================================================
   14. Sections — Timeline
   ========================================================================== */

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-item__year {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: hsla(40, 53%, 55%, 0.2);
  margin-bottom: 0.5rem;
}

.timeline-item__divider {
  height: 1px;
  background: hsla(40, 53%, 55%, 0.3);
  margin-bottom: 1rem;
}

.timeline-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
}

/* Full timeline (Histoire page) */
.timeline-full {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-full__line {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-0.5px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .timeline-full__line {
    display: block;
  }
}

.timeline-full__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-full__item {
    flex-direction: row;
  }

  .timeline-full__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.timeline-full__content {
  flex: 0 0 50%;
}

@media (min-width: 768px) {
  .timeline-full__item:nth-child(odd) .timeline-full__content {
    padding-right: 4rem;
    text-align: right;
  }

  .timeline-full__item:nth-child(even) .timeline-full__content {
    padding-left: 4rem;
    text-align: left;
  }
}

.timeline-full__year {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: hsla(40, 53%, 55%, 0.2);
  margin-bottom: 0.5rem;
}

.timeline-full__content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-full__content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.7;
}

.timeline-full__dot {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--background);
}

@media (min-width: 768px) {
  .timeline-full__dot {
    display: block;
  }
}

.timeline-full__spacer {
  flex: 0 0 50%;
  display: none;
}

@media (min-width: 768px) {
  .timeline-full__spacer {
    display: block;
  }
}

/* ==========================================================================
   15. Sections — Visit / Contact
   ========================================================================== */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.visit-map {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--border);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.visit-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-info__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.visit-info__item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.visit-info__item p {
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
}

/* ==========================================================================
   16. Sections — Newsletter
   ========================================================================== */

.newsletter-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .newsletter-section {
    padding: 8rem 0;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--muted-foreground);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

/* ==========================================================================
   17. Forms — Reservation
   ========================================================================== */

.reservation-form {
  max-width: 42rem;
  margin: 3rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23998866' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--card);
  color: var(--foreground);
}

/* ==========================================================================
   18. Sections — Process Steps (Distillerie)
   ========================================================================== */

.process-card {
  padding: 2rem;
  text-align: center;
}

.process-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid hsla(40, 53%, 55%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.process-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.7;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Eco section */
.eco-section {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.eco-section__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid hsla(92, 20%, 29%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.eco-section__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--cane);
}

/* ==========================================================================
   19. Single Product Detail
   ========================================================================== */

.product-detail {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  transition: color 0.3s ease;
}

.product-detail__back:hover {
  color: var(--gold);
}

.product-detail__back svg {
  width: 1rem;
  height: 1rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.product-detail__image {
  position: sticky;
  top: 7rem;
}

.product-detail__image-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--border);
}

.product-detail__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__category {
  display: block;
  margin-bottom: 0.75rem;
}

.product-detail__name {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.product-detail__abv {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2rem;
}

.product-detail__description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Tasting notes */
.tasting-notes {
  margin-bottom: 3rem;
}

.tasting-notes h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tasting-note {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tasting-note__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  width: 5rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.tasting-note__content {
  flex: 1;
}

.tasting-note__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 0.75rem;
}

.tasting-note__text {
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
}

/* Medals list */
.medals-list {
  margin-top: 2rem;
}

.medals-list h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.medal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: hsla(20, 15%, 12%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.medal-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.medal-item span {
  font-size: 0.875rem;
  font-family: "Cormorant Garamond", serif;
}

/* ==========================================================================
   20. Distributors
   ========================================================================== */

.distributor-card {
  padding: 1.5rem;
}

.distributor-card__region {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.25rem;
}

.distributor-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.distributor-card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.5rem;
}

.distributor-card__detail svg {
  width: 1rem;
  height: 1rem;
  color: hsla(40, 53%, 55%, 0.6);
  flex-shrink: 0;
}

/* ==========================================================================
   21. Sections — Background Variants
   ========================================================================== */

.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section--muted {
  background: hsla(20, 15%, 12%, 0.5);
}

/* ==========================================================================
   22. 404 Page
   ========================================================================== */

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  text-align: center;
}

/* ==========================================================================
   23. Medals hero badge
   ========================================================================== */

.medals-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.medals-hero svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.medals-hero__count {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold);
}

.medals-hero__label {
  font-size: 1.125rem;
  color: hsla(28, 43%, 93%, 0.8);
  font-family: "Cormorant Garamond", serif;
}

/* ==========================================================================
   24. Animations
   ========================================================================== */

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   25. Scrollbar
   ========================================================================== */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: hsla(40, 53%, 55%, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(40, 53%, 55%, 0.5);
}

/* ==========================================================================
   26. Utility
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.self-start { align-self: flex-start; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
