:root {
  --maroon: #4a0404;
  --maroon-2: #6f1d2f;
  --gold: #daa520;
  --offwhite: #faf7f0;
  --stone: #e8e1d5;
  --charcoal: #222222;
  --green: #6f7e5f;
  --white: #ffffff;
  --muted: #6b625b;
  --shadow: 0 20px 60px rgba(74, 4, 4, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--maroon); text-underline-offset: 0.18em; }
a:hover, a:focus-visible { color: var(--maroon-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 225, 213, 0.9);
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: var(--maroon);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}
.nav a {
  color: var(--charcoal);
  text-decoration: none;
}
.nav a[aria-current="page"], .nav a:hover {
  color: #5f6f4f;
  font-weight: 800;
}
.nav-menu {
  position: relative;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0;
}
.nav-parent::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -0.85rem;
  min-width: 14rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-menu:hover .dropdown,
.nav-menu:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  background: #fff9e8;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--maroon);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--maroon);
}
.hero-media, .hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img, .hero-media video { object-fit: cover; }
.hero-media.missing-image {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74, 4, 4, 0.86), rgba(74, 4, 4, 0.52));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  padding: 6rem 0;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: #5f6f4f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--serif);
  line-height: 1.08;
}
.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3rem, 9vw, 6rem);
}
.hero .eyebrow {
  color: var(--white);
}
.hero .lead {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.trust-line { max-width: 760px; color: rgba(255,255,255,0.82); }
.hero-actions, .actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section.alt { background: #fffdf8; }
.section-inner, .article, .page-intro {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow {
  width: min(820px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-header h2, .page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.lead { color: var(--muted); font-size: 1.1rem; }
.article-meta,
.card-meta {
  margin: 0.4rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.card-meta {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.82rem;
}
.quick-facts {
  margin: 2rem 0;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.04);
  overflow: hidden;
}
.quick-facts h2 {
  padding: 1.25rem 1.25rem 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.quick-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
}
.quick-facts dl div {
  border-top: 1px solid var(--stone);
  padding: 0.85rem 0;
}
.quick-facts dl div:nth-child(odd) {
  padding-right: 1rem;
}
.quick-facts dl div:nth-child(even) {
  padding-left: 1rem;
}
.quick-facts dt {
  color: var(--maroon);
  font-weight: 800;
}
.quick-facts dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}
.profile-hero {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.04);
}
.profile-bottle {
  display: grid;
  place-items: center;
  min-height: 26rem;
  border-radius: 8px;
  background: #fffdf8;
}
.profile-bottle img {
  width: auto;
  max-height: 24rem;
}
.profile-summary > :first-child {
  margin-top: 0;
}
.grid {
  display: grid;
  gap: 1.25rem;
}
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.region-map-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 1.28fr);
  align-items: center;
}
.card {
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}
.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3eee8;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.winery-listing {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: stretch;
}
.winery-listing .card-media {
  margin: 1rem;
  min-height: 100%;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  background: transparent;
}
.winery-listing .card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.card-body > a:last-child,
.card-body > .button:last-child {
  margin-top: auto;
}
.card-body > .actions:last-child {
  margin-top: auto;
}
.card-body > .affiliate-button {
  margin-top: auto;
}
.card-body > .affiliate-line {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
}
.card h3 { font-size: 1.35rem; }
.card p { color: var(--muted); }
.image-frame {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--stone), #f6ead2);
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-feature {
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.video-feature video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.map-frame {
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  overflow: visible;
}
.map-frame img {
  height: auto;
  object-fit: contain;
  padding: 0;
  border: 2px solid var(--maroon);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.article-map {
  margin: 1.5rem 0 2rem;
}
.article-map img {
  width: min(100%, 820px);
  height: auto;
  border: 2px solid var(--maroon);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.article-image {
  margin: 1.5rem 0 2rem;
}
.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.wide-photo {
  margin: 2rem 0;
}
.wide-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 32rem;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.rounded-photo {
  border-radius: 8px !important;
}
.rounded-photo img {
  width: 100%;
  max-height: none;
  border-radius: 8px !important;
}
.region-photo {
  max-width: 42rem;
  margin: 2rem 0;
  aspect-ratio: 16 / 9;
}
.region-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.article-main .region-photo {
  margin-left: 0;
  margin-right: auto;
}
.text-photo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 18rem);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin: 2rem 0;
}
.text-photo-split .portrait-photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.text-photo-split .portrait-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.supporting-image {
  max-width: 34rem;
  margin: 1.25rem 0 1.5rem;
}
.featured-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.featured-intro .supporting-image {
  max-width: none;
  margin: 0;
}
.supporting-image img,
.about-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(74, 4, 4, 0.08);
}
.missing-image {
  display: grid;
  place-items: center;
  color: var(--maroon);
  font-family: var(--serif);
  padding: 1rem;
  text-align: center;
}
.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid var(--maroon);
  border-radius: 8px;
  background: var(--maroon);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary {
  background: transparent;
  color: var(--maroon);
}
.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}
.button.disabled {
  border-color: var(--stone);
  background: var(--stone);
  color: var(--muted);
  cursor: not-allowed;
}
.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #f8f0d5;
  color: var(--maroon);
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.score-line {
  border-left: 3px solid var(--maroon);
  background: #fffdf8;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  font-weight: 700;
}
.disclosure, .note, .breadcrumb {
  border-left: 3px solid var(--gold);
  background: #fff9e8;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.read-next {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: #fffdf8;
}
.read-next h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.read-next ul {
  margin: 0;
  padding-left: 1.2rem;
}
.read-next li + li {
  margin-top: 0.45rem;
}
.breadcrumb {
  width: min(1120px, calc(100% - 32px));
  margin: 1.2rem auto 0;
  border-left: 0;
  background: transparent;
  padding: 0;
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-main h2 { margin-top: 2rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.article-main h3 { margin-top: 1.5rem; }
.article-main p, .article-main li { color: #3d3732; }
.side-card {
  position: sticky;
  top: 96px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}
.faq details {
  border-top: 1px solid var(--stone);
  padding: 1rem 0;
}
.faq summary {
  color: var(--maroon);
  cursor: pointer;
  font-weight: 800;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: var(--white);
}
th, td {
  border: 1px solid var(--stone);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}
th { background: #fff9e8; color: var(--maroon); }

.form-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}
.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.form-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.form-heading img {
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: contain;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-panel label { display: grid; gap: 0.35rem; font-weight: 800; }
.form-panel input, .form-panel select, .form-panel textarea, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  padding: 0.75rem;
}
.form-panel textarea, .contact-form textarea { min-height: 8rem; resize: vertical; }
.full { grid-column: 1 / -1; }
.turnstile-wrap {
  min-height: 4.1rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--maroon);
  color: rgba(255,255,255,0.82);
  padding: 3rem 0;
}
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2rem;
}
.site-footer h2, .site-footer strong { color: var(--white); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  width: 6rem;
  height: 6rem;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
  transform: translateY(-0.25rem);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.legal-line {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.print-header { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.print-guide { background: var(--white); }
.print-guide .article-main { max-width: 850px; margin: 0 auto; }
.guide-cover {
  width: min(100%, 28rem);
  margin: 1.5rem auto 2.25rem;
}
.guide-cover img,
.guide-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(74, 4, 4, 0.09);
}
.guide-photo {
  margin: 1.5rem 0 2rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
.about-logo-panel {
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}
.about-logo-panel img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--stone);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--stone); }
  .nav-menu {
    display: block;
    border-bottom: 1px solid var(--stone);
  }
  .nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 0;
  }
  .nav-parent::after {
    display: block;
    transform: translateY(-0.12rem) rotate(45deg);
  }
  .nav-menu.is-expanded .nav-parent::after {
    transform: translateY(0.08rem) rotate(225deg);
  }
  .nav-menu.is-expanded .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0.75rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
  }
  .dropdown a {
    padding: 0.45rem 0;
    border-bottom: 0;
  }
  .three, .two, .four, .article, .footer-inner, .about-hero, .profile-hero, .featured-intro, .text-photo-split { grid-template-columns: 1fr; }
  .winery-listing {
    grid-template-columns: 1fr;
  }
  .winery-listing .card-media {
    order: -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .profile-bottle { min-height: 20rem; }
  .profile-bottle img { max-height: 18rem; }
  .quick-facts dl { grid-template-columns: 1fr; }
  .quick-facts dl div:nth-child(odd),
  .quick-facts dl div:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
  .side-card { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-heading { align-items: flex-start; }
}

@media (max-width: 560px) {
  .header-inner { width: min(100% - 24px, 1180px); }
  .brand { font-size: 1.25rem; }
  .hero { min-height: 66vh; }
  .section-inner, .article, .page-intro, .breadcrumb { width: min(100% - 24px, 1120px); }
  .footer-brand img {
    width: 5rem;
    height: 5rem;
  }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .button, .breadcrumb { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 0; }
  .article { display: block; width: 100%; }
  a { color: #000; text-decoration: none; }
}
