:root {
  --bg: #0D0706;
  --bg-surface: #1A0E0C;
  --fg: #F5EFE6;
  --fg-muted: #C4B9AD;
  --accent: #8B1A1A;
  --accent-light: #A82525;
  --gold: #C9A55C;
  --gold-light: #E2C078;
  --border: rgba(201,165,92,0.18);
  --card-bg: rgba(26,14,12,0.8);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--fg); }

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(13,7,6,0.9) 0%, transparent 100%);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

nav { display: flex; gap: 2rem; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139,26,26,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,165,92,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.lede {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 38ch;
}

/* Vineyard Illustration */
.hero-visual { position: relative; }

.vineyard-illustration {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
}

.hill-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50% 50% 0 0;
}

.hill-far {
  height: 180px;
  background: linear-gradient(to top, #2A1210, #1E0C09);
  width: 120%;
  left: -10%;
}

.hill-mid {
  height: 140px;
  background: linear-gradient(to top, #3D1A14, #2A1210);
  width: 110%;
  left: -5%;
}

.hill-near {
  height: 100px;
  background: linear-gradient(to top, #4A1E18, #3D1A14);
  width: 105%;
  left: -2.5%;
}

.vine-row {
  position: absolute;
  bottom: 40px;
  height: 60px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.vine-row::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201,165,92,0.3);
}

.row-1 { left: 15%; right: 15%; justify-content: space-around; }
.row-2 { left: 10%; right: 10%; justify-content: space-around; bottom: 55px; }
.row-3 { left: 5%; right: 5%; justify-content: space-around; bottom: 70px; }

.vine-row::after {
  content: '';
  display: block;
  width: 6px;
  height: var(--h, 30px);
  background: #5C2A1E;
  border-radius: 2px 2px 0 0;
}

.sun {
  position: absolute;
  top: 30px;
  right: 60px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #F0D080 0%, #C9A55C 50%, transparent 70%);
  box-shadow: 0 0 40px 20px rgba(240,208,128,0.15);
}

/* Stat Row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.stat {
  background: var(--card-bg);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.3rem;
}

/* Philosophy */
.philosophy {
  padding: 6rem 3rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-quote blockquote p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
}

.philosophy-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-style: normal;
}

.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.philosophy-text p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Operations */
.operations {
  padding: 6rem 3rem;
}

.operations-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.operations-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
}

.op-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.op-card {
  background: var(--card-bg);
  padding: 2.5rem;
}

.op-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.op-icon svg {
  width: 100%;
  height: 100%;
}

.op-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.op-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Harvest */
.harvest {
  padding: 6rem 3rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.harvest-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.harvest-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.harvest-text p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Cycle diagram */
.cycle-diagram { display: flex; justify-content: center; }

.cycle-ring {
  position: relative;
  width: 280px;
  height: 280px;
}

.cycle-node {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.cycle-node:hover {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent-light);
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { top: 15%; right: 0; }
.node-3 { top: 50%; right: 0; transform: translateY(-50%); }
.node-4 { bottom: 15%; right: 8%; }
.node-5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-6 { bottom: 15%; left: 8%; }
.node-7 { top: 50%; left: 0; transform: translateY(-50%); }
.node-8 { top: 15%; left: 0; }

/* Closing */
.closing {
  padding: 7rem 3rem;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 45ch;
  margin: 0 auto;
  line-height: 1.75;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; }
  nav { display: none; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy, .operations, .harvest, .closing { padding: 4rem 1.5rem; }
  .philosophy-inner, .harvest-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .op-grid { grid-template-columns: 1fr; }
  .cycle-ring { width: 220px; height: 220px; }
  .cycle-node { width: 56px; height: 56px; font-size: 0.55rem; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}