:root {
  --teal: #1A5E6C;
  --teal-deep: #0E3A44;
  --teal-dark: #0A2A32;
  --gold: #B5985A;
  --gold-light: #D4BC82;
  --gold-pale: #E8DCC4;
  --crab: #612141;
  --shrimp: #E04E1B;
  --scallop: #C4A574;
  --cream: #F5F0E8;
  --white: #FEFCF8;
  --text-dark: #1A1A1A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--cream);
  background: var(--teal-dark);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10,42,50,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--gold);
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--gold-pale);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px;
  left:0; right:0;
  height:1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(170deg, var(--teal-dark) 0%, var(--teal-deep) 40%, var(--teal) 100%);
}
.hero-waves {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(181,152,90,0.3) 40px,
    rgba(181,152,90,0.3) 41px
  );
  animation: waveShift 8s ease-in-out infinite;
}
@keyframes waveShift {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1.1); }
  50% { transform: translateY(-20px) rotate(-1deg) scale(1.1); }
}
.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--teal-dark), transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}
.hero-shell {
  width: 80px; height: 80px;
  margin: 0 auto 30px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-shell svg { width: 100%; height: 100%; }
.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  letter-spacing: 1px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}

/* ===== SECTIONS SHARED ===== */
section {
  padding: 120px 60px;
  position: relative;
}
.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--teal-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.philosophy-text p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
  margin-bottom: 20px;
}
.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.philosophy-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9);
  transition: transform 0.5s, filter 0.5s;
}
.philosophy-visual img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products {
  background: linear-gradient(180deg, var(--teal-dark) 0%, #0C2E36 100%);
  padding-bottom: 140px;
}
.products-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.products-header p {
  color: rgba(245,240,232,0.7);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(181,152,90,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s, border-color 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181,152,90,0.4);
}
.product-card-img {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.1) 100%);
}
.product-card-img img {
  height: 85%;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.product-card-body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-card-body .origin {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  font-weight: 300;
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(181,152,90,0.15);
}
.product-stat {
  text-align: center;
}
.product-stat .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-light);
}
.product-stat .label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 4px;
}
.product-wine {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-pale);
  font-style: italic;
}
.product-wine svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== BENEFITS ===== */
.benefits {
  background: var(--cream);
  color: var(--text-dark);
  overflow: hidden;
}
.benefits-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.benefits .section-title { color: var(--teal-deep); }
.benefits .section-label { color: var(--teal); }
.benefits-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
  margin-bottom: 60px;
  font-weight: 300;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.benefit-item {
  padding: 32px 24px;
  border-radius: 6px;
  background: rgba(26,94,108,0.04);
  border: 1px solid rgba(26,94,108,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,94,108,0.08);
}
.benefit-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--teal);
}
.benefit-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.benefit-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
}

/* ===== WINE PAIRING ===== */
.pairing {
  background: linear-gradient(170deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}
.pairing::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,152,90,0.05), transparent 70%);
}
.pairing-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pairing-header {
  text-align: center;
  margin-bottom: 70px;
}
.pairing-header p {
  color: rgba(245,240,232,0.7);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.pairing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pairing-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(181,152,90,0.3);
}
.pairing-table td {
  padding: 24px;
  border-bottom: 1px solid rgba(181,152,90,0.1);
  vertical-align: top;
}
.pairing-table tr:last-child td { border-bottom: none; }
.pairing-product {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
}
.pairing-flavor {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.6;
}
.pairing-wine {
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 400;
}
.pairing-ritual {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

/* ===== NOT JUST SNACK ===== */
.contrast {
  background: var(--white);
  color: var(--text-dark);
}
.contrast-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.contrast .section-title { color: var(--teal-deep); }
.contrast .section-label { color: var(--teal); }
.contrast-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
  text-align: left;
}
.contrast-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--teal-deep);
}
.contrast-col ul {
  list-style: none;
  padding: 0;
}
.contrast-col ul li {
  padding: 12px 0;
  font-size: 15px;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contrast-col ul li .icon { flex-shrink:0; font-size:18px; }
.contrast-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  padding-top: 50px;
}

/* ===== WHERE TO BUY ===== */
.wheretobuy {
  background: var(--teal-dark);
  text-align: center;
}
.wheretobuy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wheretobuy p {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}
.wheretobuy-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  border: 1px solid rgba(181,152,90,0.3);
  border-radius: 6px;
  background: rgba(181,152,90,0.06);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-light);
  letter-spacing: 2px;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px;
  text-align: center;
  border-top: 1px solid rgba(181,152,90,0.1);
  background: var(--teal-dark);
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
footer p {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  font-weight: 300;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  .philosophy { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .contrast-cols { grid-template-columns: 1fr; gap: 30px; }
  .contrast-vs { padding: 0; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr; max-width: 500px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pairing-table { font-size: 14px; }
  .pairing-table th, .pairing-table td { padding: 12px 8px; }
}