:root {
  --black:#080808;
  --cream:#f7f2e8;
  --paper:#fffaf2;
  --ink:#171717;
  --muted:#756b5c;
  --gold:#d6ad61;
  --gold2:#f0d59a;
  --wine:#5a1118;
  --line:#e6d9c4
}

* {
  box-sizing:border-box
}

body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
  line-height:1.7
}

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

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

.top {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:8px 42px;
  background:#050505;
  color:#d7c19a;
  font-size:13px
}

header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(8,8,8,.96);
  color:#fff;
  border-bottom:1px solid rgba(214,173,97,.28)
}

.nav {
  max-width:1440px;
  height:72px;
  margin:auto;
  padding:0 38px;
  display:flex;
  align-items:center;
  gap:24px
}

.brand {
  display:flex;
  align-items:center;
  gap:14px;
  min-width:210px
}

.brand img {
  width:52px;
  height:52px;
  object-fit:contain;
  background:#fff;
  border-radius:999px;
  padding:4px
}

.brand-name {
  color:var(--gold);
  font-size:24px;
  font-weight:800;
  letter-spacing:.12em;
  line-height:1
}

.brand-name span {
  display:block;
  margin-top:5px;
  color:#bfa66f;
  font-size:10px;
  font-weight:400;
  letter-spacing:.22em
}

.nav-links {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:18px;
  color:#eee;
  font-size:14px
}

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

.shop {
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#b7893e,#f0d59a);
  color:#111;
  font-weight:700
}

.hero {
  min-height:680px;
  padding:82px 38px 70px;
  display:flex;
  align-items:center;
  color:#fff;
  background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.45),rgba(0,0,0,.8)),url("../../1908-vineyard.jpg") center/cover no-repeat
}

.hero-inner {
  max-width:1260px;
  width:100%;
  margin:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:center
}

.portrait {
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:#111;
  border:1px solid rgba(214,173,97,.32);
  box-shadow:0 28px 75px rgba(0,0,0,.44)
}

.portrait img {
  width:100%;
  height:560px;
  object-fit:cover;
  object-position:center top
}

.portrait-caption {
  position:absolute;
  inset:auto 0 0 0;
  padding:22px 26px;
  background:linear-gradient(to top,rgba(0,0,0,.86),transparent);
  color:#ead7af;
  font-size:14px
}

.eyebrow {
  color:var(--gold2);
  font-size:13px;
  letter-spacing:.24em;
  text-transform:uppercase
}

.hero h1 {
  margin:18px 0 14px;
  font-size:clamp(54px,8vw,92px);
  line-height:.95;
  letter-spacing:-.055em
}

.subtitle {
  max-width:700px;
  margin:0 0 24px;
  color:#ead7af;
  font-size:clamp(20px,2.2vw,28px);
  line-height:1.55
}

.meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 30px
}

.pill {
  padding:8px 13px;
  border:1px solid rgba(214,173,97,.45);
  border-radius:999px;
  background:rgba(0,0,0,.28);
  color:#f4e0b6;
  font-size:14px
}

.btns {
  display:flex;
  gap:14px;
  flex-wrap:wrap
}

.btn {
  display:inline-flex;
  padding:12px 20px;
  border:1px solid rgba(214,173,97,.65);
  border-radius:999px;
  background:rgba(0,0,0,.32);
  color:#fff;
  font-weight:600
}

.btn.primary {
  background:linear-gradient(135deg,#b7893e,#f0d59a);
  color:#111
}

.facts {
  max-width:1180px;
  margin:-52px auto 70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:18px;
  background:rgba(8,8,8,.95);
  color:#fff;
  box-shadow:0 25px 60px rgba(0,0,0,.22)
}

.facts div {
  padding:22px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.12)
}

.facts div:last-child {
  border-right:0
}

.facts b {
  display:block;
  color:var(--gold2);
  font-size:23px
}

.section {
  max-width:1260px;
  margin:auto;
  padding:66px 38px
}

.section-title {
  max-width:820px;
  margin:0 auto 34px;
  text-align:center
}

.section-title h2 {
  margin:0 0 10px;
  font-size:clamp(30px,4vw,42px);
  line-height:1.2
}

.section-title p {
  margin:0;
  color:var(--muted);
  font-size:17px
}

.note {
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background:#fff2d8;
  color:#8b5d12;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase
}

.two-col {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px
}

.panel {
  padding:30px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 12px 30px rgba(60,40,20,.06)
}

.panel h3 {
  margin:0 0 14px;
  font-size:30px;
  line-height:1.25
}

.panel p,.panel li {
  color:var(--muted)
}

.table {
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(60,40,20,.06)
}

.table th,.table td {
  padding:15px 18px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top
}

.table th {
  width:28%;
  color:#7d551b;
  background:#fff7e8;
  font-weight:800
}

.table tr:last-child th,.table tr:last-child td {
  border-bottom:0
}

.editor-note {
  margin-top:22px;
  padding:20px;
  border:1px dashed #c7a45d;
  border-radius:18px;
  background:#fff9e8;
  color:#7a5b1c
}

.timeline {
  position:relative;
  max-width:900px;
  margin:0 auto
}

.timeline:before {
  content:"";
  position:absolute;
  left:114px;
  top:8px;
  bottom:8px;
  width:2px;
  background:var(--line)
}

.time-row {
  position:relative;
  display:grid;
  grid-template-columns:100px 1fr;
  gap:34px;
  margin-bottom:24px
}

.year {
  font-size:26px;
  font-weight:900;
  color:var(--wine);
  text-align:right;
  line-height:1.2
}

.event {
  position:relative;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 26px rgba(60,40,20,.05)
}

.event:before {
  content:"";
  position:absolute;
  left:-43px;
  top:28px;
  width:14px;
  height:14px;
  border-radius:999px;
  background:var(--gold);
  border:3px solid #fff;
  box-shadow:0 0 0 2px var(--gold)
}

.event h3 {
  margin:0 0 6px;
  font-size:22px
}

.event p {
  margin:0;
  color:var(--muted)
}

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

.work {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 12px 30px rgba(60,40,20,.06)
}

.work .img {
  height:245px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center
}

.work img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px
}

.work .copy {
  padding:20px
}

.work h3 {
  margin:0 0 8px;
  font-size:22px;
  line-height:1.25
}

.work p {
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px
}

.work a {
  color:var(--wine);
  font-weight:800
}

.quote {
  max-width:none;
  background:linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.6)),url("../../1908-vineyard.jpg") center/cover no-repeat;
  color:#fff
}

.quote-inner {
  max-width:1000px;
  margin:auto;
  padding:82px 38px;
  text-align:center
}

.quote blockquote {
  margin:0;
  color:#f4e0b6;
  font-size:clamp(28px,4vw,44px);
  line-height:1.35;
  font-weight:800
}

.quote p {
  color:#cfc3ad
}

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

.story {
  min-height:260px;
  padding:24px;
  border-radius:24px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(to top,rgba(0,0,0,.86),rgba(0,0,0,.1)),url("../../1908-vineyard.jpg") center/cover no-repeat;
  box-shadow:0 12px 30px rgba(0,0,0,.14)
}

.story:nth-child(2) {
  background:linear-gradient(to top,rgba(0,0,0,.86),rgba(0,0,0,.1)),url("../../all-products.jpg") center/cover no-repeat
}

.story:nth-child(3) {
  background:linear-gradient(to top,rgba(0,0,0,.86),rgba(0,0,0,.1)),#151515
}

.story h3 {
  margin:8px 0;
  font-size:25px;
  color:#fff
}

.story p {
  margin:0 0 14px;
  color:#eee
}

.story a {
  color:var(--gold2);
  font-weight:800
}

.faq {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

details {
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(60,40,20,.04)
}

summary {
  cursor:pointer;
  color:var(--wine);
  font-weight:800
}

details p {
  margin:12px 0 0;
  color:var(--muted)
}

.geo {
  border-radius:28px;
  background:#111;
  color:#fff;
  overflow:hidden
}

.geo-inner {
  display:grid;
  grid-template-columns:1fr 1fr
}

.geo-copy {
  padding:36px
}

.geo-copy h2 {
  margin:0 0 12px;
  font-size:clamp(30px,4vw,42px)
}

.geo-copy p,.geo-copy li {
  color:#ddd
}

.schema {
  padding:28px;
  background:#060606;
  overflow:auto;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:13px;
  color:#d7f6d2
}

.footer {
  padding:34px;
  background:#050505;
  color:#8d806b;
  text-align:center
}

@media(max-width:1020px) {
  .nav-links {
    display:none
  }

  .hero-inner,.two-col,.geo-inner {
    grid-template-columns:1fr
  }

  .works,.stories,.facts,.faq {
    grid-template-columns:1fr 1fr
  }

  .portrait img {
    height:460px
  }

}

@media(max-width:640px) {
  .top {
    padding:8px 18px;
    flex-direction:column
  }

  .nav,.section,.hero {
    padding-left:20px;
    padding-right:20px
  }

  .facts,.works,.stories,.faq {
    grid-template-columns:1fr
  }

  .timeline:before {
    left:16px
  }

  .time-row {
    grid-template-columns:1fr;
    gap:8px;
    padding-left:42px
  }

  .year {
    text-align:left;
    font-size:22px
  }

  .event:before {
    left:-33px
  }

}
