/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --wine: #722F37;
  --wine-dark: #4A1C23;
  --wine-light: #8B3A44;
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --cream: #FAF7F2;
  --dark: #1A1A1A;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a0c 0%, #2d1216 30%, #4A1C23 60%, #1a0a0c 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(114,47,55,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(114,47,55,0.2) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease);
  font-weight: 500;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 60px;
  line-height: 1.2;
}

/* ===== STORY ===== */
.story { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 32px;
  line-height: 1.2;
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-text em {
  color: var(--wine);
  font-style: italic;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.story-card {
  background: var(--cream);
  padding: 36px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  transition: transform 0.4s var(--ease);
}

.story-card:hover {
  transform: translateX(6px);
}

.story-stat {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 6px;
}

.story-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== QUOTE ===== */
.quote-section {
  background: var(--dark);
  padding: 100px 0;
}

.big-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.big-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== WINES ===== */
.wines { background: var(--cream); }

.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wine-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}

.wine-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.wine-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.white-wine { background: linear-gradient(135deg, #E8D5A3, #F0E2B8); }
.red-wine { background: linear-gradient(135deg, var(--wine), var(--wine-dark)); }
.sparkling-wine { background: linear-gradient(135deg, #D4B87A, #E8CC8E); }

.wine-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.wine-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.wine-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.wine-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--wine);
  font-weight: 500;
}

/* ===== AWARDS ===== */
.awards {
  background: var(--white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}

.award-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.award-score {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  min-width: 60px;
}

.award-icon {
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
}

.award-detail strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.award-detail span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== BLOG ===== */
.blog { background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  display: block;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}

.blog-card:hover {
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.blog-card.featured {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
}

.blog-card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(0,0,0,0.3);
  padding: 6px 14px;
  font-weight: 600;
}

.blog-card-content {
  padding: 60px 40px 40px;
}

.blog-card.featured time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card.featured h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin: 16px 0;
  line-height: 1.3;
  max-width: 700px;
}

.blog-card.featured p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 24px;
}

.blog-read-more {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: letter-spacing 0.3s var(--ease);
}

.blog-card:hover .blog-read-more {
  letter-spacing: 0.18em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-links h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.wine-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.wine-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.wine-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.awards-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.awards-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.awards-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.awards-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.awards-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wine-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { position: static; flex-direction: row; flex-wrap: wrap; }
  .story-card { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .wine-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { flex-direction: column; }

  .blog-card-content { padding: 48px 24px 32px; }
}

/* ===== BLOG POST PAGE ===== */
.post-header {
  background: linear-gradient(135deg, #1a0a0c 0%, var(--wine-dark) 50%, #1a0a0c 100%);
  padding: 160px 0 80px;
  text-align: center;
}

.post-header .hero-tag { margin-bottom: 20px; }

.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.3;
  font-weight: 600;
}

.post-header time {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin: 48px 0 20px;
  line-height: 1.3;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin: 36px 0 16px;
}

.post-body p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.post-body a {
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  transition: border-color 0.3s var(--ease);
}

.post-body a:hover {
  border-color: var(--wine);
}

.post-body ul, .post-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.post-body li {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 8px;
  list-style: disc;
}

.post-body ol li {
  list-style: decimal;
}

.post-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 2px 2px 0;
}

.post-callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 40px;
  transition: gap 0.3s var(--ease);
}

.post-back:hover {
  gap: 12px;
}

/* Disclaimer banner */
.disclaimer {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
