:root {
  --burgundy: #5C1A1B;
  --burgundy-deep: #3A0F10;
  --cream: #F5F0E8;
  --cream-dark: #EDE5D8;
  --gold: #C8A97E;
  --gold-light: #D9BE96;
  --charcoal: #1A1714;
  --warm-gray: #6B6059;
  --light-gray: #9E948C;
  --rose: #8B3A3A;
  --white-wine: #D4B896;
  --pinot: #4A1E1E;
}

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

html { font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--burgundy);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(92, 26, 27, 0.6) 0%, transparent 70%),
    linear-gradient(160deg, #2A0D0E 0%, #5C1A1B 50%, #3A0F10 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 60px;
  max-width: 760px;
}

.hero-overline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 48px;
}

/* Wine bottle illustration */
.hero-wine-illustration {
  position: absolute;
  right: 8%;
  bottom: 12%;
  z-index: 2;
}

.bottle-silhouette {
  position: relative;
  width: 100px;
  filter: drop-shadow(0 0 40px rgba(200, 169, 126, 0.25));
}

.bottle-body {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, #8B3A3A 0%, #5C1A1B 100%);
  border-radius: 4px 4px 8px 8px;
  margin: 0 auto;
}

.bottle-neck {
  width: 22px;
  height: 38px;
  background: linear-gradient(180deg, #5C1A1B, #8B3A3A);
  border-radius: 2px 2px 0 0;
  margin: 0 auto 0;
}

.bottle-shoulder {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 16px solid #5C1A1B;
  margin: 0 auto;
}

.bottle-cork {
  width: 14px;
  height: 8px;
  background: #C8A97E;
  border-radius: 2px 2px 0 0;
  margin: 0 auto -2px;
}

.bottle-label {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 60px;
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 4px;
}

.label-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
}

.label-region {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.6);
  margin-top: 2px;
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 48px;
  border-top: 1px solid rgba(200, 169, 126, 0.2);
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(200, 169, 126, 0.25);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--cream);
  padding: 100px 48px;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.philosophy-inner {
  max-width: 700px;
}

.philosophy-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.philosophy-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 48px;
}

.philosophy-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}

.philosophy-breakdown {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.breakdown-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.breakdown-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.breakdown-circle svg {
  width: 18px;
  height: 18px;
}

.breakdown-circle.broken {
  background: rgba(92, 26, 27, 0.1);
  color: var(--burgundy);
}

.breakdown-circle.direct {
  background: rgba(92, 26, 27, 0.18);
  color: var(--burgundy);
}

.breakdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.breakdown-detail {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-family: 'DM Sans', monospace;
}

/* ── Wines ── */
.wines {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.wines-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.wines-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.wines-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.wines-body {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.wines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
}

.wine-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.wine-card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.red-wine-bg { background: linear-gradient(135deg, #5C1A1B 0%, #3A0F10 100%); }
.white-wine-bg { background: linear-gradient(135deg, #C8A97E 0%, #D4B896 100%); }
.rose-wine-bg { background: linear-gradient(135deg, #8B3A3A 0%, #A05050 100%); }

.wine-card-bottle {
  position: relative;
}

.card-bottle-shape {
  width: 52px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px 4px 6px 6px;
}

.card-bottle-neck {
  width: 14px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px 2px 0 0;
  margin: 0 auto 0;
}

.card-bottle-shoulder {
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 10px solid rgba(255,255,255,0.1);
  margin: 0 auto;
}

.card-bottle-label {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.card-label-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  line-height: 1.3;
  color: rgba(245, 240, 232, 0.85);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.wine-card-info {
  padding: 28px 28px 24px;
}

.wine-card-region {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.wine-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.wine-card-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.wine-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ── Provenance ── */
.provenance {
  background: var(--burgundy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.provenance-visual {
  background: linear-gradient(135deg, #2A0D0E 0%, #5C1A1B 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.provenance-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.vine-row {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.grape-cluster {
  width: 40px;
  height: 60px;
  background: radial-gradient(ellipse at center, #8B3A3A 0%, #5C1A1B 70%);
  border-radius: 50% 50% 60% 60%;
  position: relative;
  opacity: 0.8;
}

.grape-cluster::before, .grape-cluster::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #8B3A3A, #5C1A1B);
}

.grape-cluster::before { left: -12px; top: 8px; }
.grape-cluster::after { right: -12px; top: 8px; }

.terroir-bar {
  width: 200px;
  height: 4px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 2px;
  display: flex;
  overflow: hidden;
}

.terroir-segment {
  height: 100%;
  width: var(--pct);
  background: var(--gold);
  border-radius: 2px 0 0 2px;
}

.terroir-segment:last-child { border-radius: 0 2px 2px 0; }

.terroir-labels {
  display: flex;
  justify-content: space-between;
  width: 200px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.5);
}

.provenance-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.provenance-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.provenance-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.provenance-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 20px;
}

.provenance-badge {
  margin-top: 16px;
}

.badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(200, 169, 126, 0.8);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Closing ── */
.closing {
  background: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-ornament {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto 32px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.35;
  margin-bottom: 32px;
}

.closing-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  padding: 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.25);
  max-width: 400px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.08em;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero-content { padding: 60px 24px 40px; }
  .hero-wine-illustration { display: none; }
  .hero-stats { padding: 24px; flex-wrap: wrap; gap: 20px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .provenance { grid-template-columns: 1fr; }
  .provenance-visual { min-height: 300px; padding: 48px 24px; }
  .provenance-content { padding: 48px 24px; }
  .philosophy, .wines, .closing { padding: 60px 24px; }
  .footer { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .wines-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.8rem; }
}
