:root {
  --text: #211d1b;
  --muted: rgba(33, 29, 27, 0.72);
  --line: rgba(33, 29, 27, 0.14);
  --cream: #f0e5c8;
  --paper: #fbfaf4;
  --white: #fff;
  --gold: #b99752;
  --gold-dark: #6f542b;
  --vine: #4f6243;
  --wine: #8d1836;
  --wine-dark: #73142c;
  --deep: #171412;
  --cta-primary-bg: #211d1b;
  --cta-primary-fg: #fff;
  --cta-accent-bg: #8d1836;
  --cta-accent-fg: #fff;
  --cta-light-bg: #fff;
  --cta-light-fg: #211d1b;
  --shadow: 0 18px 44px rgba(33, 29, 27, 0.13);
  --max: 1320px;
  --header-height: 166px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

.wp-element-caption {
  color: #5f5147;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.nmvw-redesign {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

p + p {
  margin-top: 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
  text-wrap: balance;
}

body.nmvw-redesign h1,
body.nmvw-redesign h2,
body.nmvw-redesign h3,
body.nmvw-redesign h4 {
  font-family: var(--serif) !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

body.nmvw-redesign p,
body.nmvw-redesign li {
  font-family: var(--sans);
}

h1 {
  font-size: clamp(3rem, 6.1vw, 6.25rem);
}

body.nmvw-redesign h1 {
  font-size: clamp(3rem, 6.1vw, 6.25rem) !important;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
}

body.nmvw-redesign h2 {
  font-size: clamp(2rem, 3.2vw, 3.45rem) !important;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

body.nmvw-redesign h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem) !important;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

body.nmvw-redesign .kicker {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.label {
  margin: 0 0 0.85rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid #e8e4d8;
  transition: height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-condensed {
  height: 96px;
  box-shadow: 0 10px 34px rgba(33, 29, 27, 0.12);
}

.utility {
  height: 38px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: height 180ms ease, opacity 180ms ease;
}

.is-condensed .utility {
  height: 0;
  opacity: 0;
  border-bottom: 0;
}

.utility-inner {
  width: min(94%, var(--max));
  height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.brand-row {
  height: 74px;
  display: grid;
  place-items: center;
  transition: height 180ms ease;
}

.is-condensed .brand-row {
  height: 40px;
}

.wordmark {
  display: grid;
  justify-items: center;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
}

.wordmark-main {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 0.92;
}

.wordmark-sub {
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.nav-row {
  width: min(94%, var(--max));
  height: 54px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  align-items: center;
  border-top: 1px solid var(--line);
  transition: height 180ms ease;
}

.is-condensed .nav-row {
  height: 56px;
  border-top: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.28vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a {
  display: block;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold-dark);
}

.desktop-nav .nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 1002;
  min-width: 220px;
  display: grid;
  gap: 0;
  padding: 10px 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.desktop-nav .has-submenu:hover .nav-submenu,
.desktop-nav .has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-submenu::before {
  content: "";
  position: absolute;
  top: -17px;
  right: 0;
  left: 0;
  height: 17px;
}

.desktop-nav .nav-submenu a {
  padding: 11px 18px;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: left;
  white-space: nowrap;
}

.desktop-nav .nav-submenu a:hover,
.desktop-nav .nav-submenu a:focus {
  background: rgba(240, 229, 200, 0.5);
  color: var(--gold-dark);
}

.shop-button,
.reserve-button,
.button,
.tribe-events-back a {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta-primary-bg);
  background: var(--cta-primary-bg);
  color: var(--cta-primary-fg) !important;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.12;
  padding: 1.05em 2.25em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.shop-button,
.reserve-button {
  justify-self: end;
  min-height: 30px;
  padding: 0.42em 1.25em;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.reserve-button {
  background: var(--cta-accent-bg);
  border-color: var(--cta-accent-bg);
  color: var(--cta-accent-fg) !important;
}

.button:hover,
.shop-button:hover,
.reserve-button:hover,
.tribe-events-back a:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  color: var(--white) !important;
}

.button-light {
  border-color: var(--cta-light-bg);
  background: var(--cta-light-bg);
  color: var(--cta-light-fg) !important;
}

.button-light:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--text) !important;
}

.button-outline {
  background: transparent;
  color: var(--text) !important;
}

.tribe-events-back a {
  background: transparent;
  color: var(--text) !important;
}

.button-outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white) !important;
}

.button-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white) !important;
}

.button-on-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white) !important;
}

.home-hero .button:not(.button-light):not(.button-outline),
.full-bleed-feature .button:not(.button-light):not(.button-outline),
.page-hero .button:not(.button-light):not(.button-outline) {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.home-hero .button:not(.button-light):not(.button-outline):hover,
.full-bleed-feature .button:not(.button-light):not(.button-outline):hover,
.page-hero .button:not(.button-light):not(.button-outline):hover {
  border-color: var(--wine-dark);
  background: var(--wine-dark);
}

.button-row,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 2rem;
}

.lead {
  color: rgba(33, 29, 27, 0.78);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.availability-note,
.notice-panel {
  margin-top: 1.5rem;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(137, 106, 53, 0.35);
  background: rgba(239, 227, 195, 0.46);
}

.availability-note p,
.notice-panel p {
  color: rgba(33, 29, 27, 0.78);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: end;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  display: block;
  margin: 4px auto;
  background: var(--text);
}

.mobile-panel {
  display: none;
}

.mobile-reserve-button {
  display: none;
}

.mobile-panel-group {
  display: grid;
}

.mobile-panel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-panel-actions a {
  background: var(--wine);
  color: var(--white) !important;
  text-align: center;
}

.mobile-panel-children {
  display: grid;
  background: rgba(240, 229, 200, 0.38);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 8vh) min(6vw, 80px) 8vh;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.home-hero {
  min-height: 92vh;
}

.home-hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.66), rgba(23, 20, 18, 0.25) 54%, rgba(23, 20, 18, 0.1));
}

.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
  color: var(--white);
}

.home-hero-content h1,
.home-hero-content p,
.page-hero-content h1,
.page-hero-content p {
  color: var(--white);
}

.home-hero-content .kicker,
.page-hero-content .kicker {
  color: var(--cream);
}

.home-hero-content p,
.page-hero-content p {
  max-width: 590px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.78;
}

.home-hero-content h1,
.page-hero-content h1 {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.standard-section,
.split-section,
.cream-band,
.commerce-section {
  width: min(94%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.standard-section.tight-section {
  padding-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.split-copy {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.split-copy .button {
  justify-self: start;
  margin-top: 0.6rem;
}

.image-pair,
.image-stack {
  display: grid;
  grid-template-columns: 0.9fr 0.76fr;
  gap: 18px;
  align-items: end;
}

.image-pair img,
.image-stack img,
.image-frame img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:nth-child(2),
.image-stack img:nth-child(2) {
  min-height: 460px;
}

.image-frame {
  min-height: 460px;
}

.image-frame figure,
.image-caption-card {
  margin: 0;
}

.image-caption-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.image-caption-card img {
  min-height: 300px;
  object-fit: cover;
}

.image-caption-card figcaption {
  color: rgba(33, 29, 27, 0.66);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cream-band {
  width: 100%;
  max-width: none;
  padding-right: max(3vw, calc((100vw - var(--max)) / 2));
  padding-left: max(3vw, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading-row > div {
  max-width: 820px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(33, 29, 27, 0.18);
  border-left: 1px solid rgba(33, 29, 27, 0.18);
}

.hours-grid div {
  min-height: 145px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border-right: 1px solid rgba(33, 29, 27, 0.18);
  border-bottom: 1px solid rgba(33, 29, 27, 0.18);
}

.hours-grid span,
.hours-list span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hours-grid strong,
.hours-list strong {
  display: block;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  font-weight: 300;
  line-height: 1;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.wine-card {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f4e9;
}

.wine-card-image {
  height: 250px;
  display: grid;
  place-items: end center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(239, 232, 211, 0.4));
  overflow: hidden;
}

.wine-card-image img {
  width: auto;
  max-width: 92%;
  max-height: 245px;
  object-fit: contain;
}

.wine-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(33, 29, 27, 0.18);
  border-left: 1px solid rgba(33, 29, 27, 0.18);
}

.wine-category-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid rgba(33, 29, 27, 0.18);
  border-bottom: 1px solid rgba(33, 29, 27, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.wine-category-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.85rem !important;
  line-height: 1.12 !important;
}

.wine-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 1.9vw, 2rem) !important;
  line-height: 1.1 !important;
}

.wine-price {
  margin-bottom: 0.85rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.full-bleed-feature {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: clamp(60px, 8vw, 104px) max(3vw, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(33, 29, 27, 0.72), rgba(33, 29, 27, 0.28)),
    var(--feature-image) center / cover no-repeat;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.identity-grid article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.72);
}

.identity-grid h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem) !important;
  line-height: 1.14 !important;
  margin-bottom: 1rem;
}

.trail-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.trail-map-card {
  margin: 0;
}

.trail-map-frame {
  position: relative;
  display: block;
  max-width: 520px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(33, 29, 27, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.trail-map-image {
  width: 100%;
  height: auto;
}

.trail-pin {
  content: "";
  position: absolute;
  top: 25.1%;
  left: 17.2%;
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--wine);
  box-shadow: 0 0 0 6px rgba(141, 24, 54, 0.2), 0 12px 24px rgba(33, 29, 27, 0.25);
  transform: translate(-50%, -50%);
}

.trail-pin-label {
  position: absolute;
  top: 21.6%;
  left: 30%;
  padding: 10px 14px;
  background: var(--deep);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(33, 29, 27, 0.25);
}

.trail-pin-label small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.trail-map-card figcaption {
  max-width: 520px;
  margin: 14px auto 0;
  color: #5f5147;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.club-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.awards-grid article,
.club-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.awards-grid h3,
.club-card h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem) !important;
  line-height: 1.14 !important;
  margin-bottom: 1rem;
}

.club-card .wine-price {
  margin: 0 0 1rem;
}

.nmvw-club-source-pricing {
  margin: 1.25rem 0 0;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.nmvw-club-source-status {
  color: var(--text);
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.6;
  margin: 1rem 0;
}

.nmvw-club-source-terms {
  margin: 1rem 0 1.35rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nmvw-club-source-terms summary {
  cursor: pointer;
  padding: 0.9rem 1.6rem 0.9rem 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.5;
  list-style: none;
  text-transform: uppercase;
}

.nmvw-club-source-terms summary::-webkit-details-marker {
  display: none;
}

.nmvw-club-source-terms summary::after {
  float: right;
  content: "+";
  color: var(--gold-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.nmvw-club-source-terms[open] summary::after {
  content: "−";
}

.nmvw-club-source-terms__content {
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.nmvw-club-source-terms__content h4 {
  margin: 1.35rem 0 0.6rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.nmvw-club-source-terms__content p,
.nmvw-club-source-terms__content ul {
  margin: 0.65rem 0;
}

.nmvw-club-source-terms__content ul {
  padding-left: 1.1rem;
}

.nmvw-commerce7-checkout-exit {
  position: fixed;
  z-index: 2147483000;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: var(--wine);
  box-shadow: 0 10px 28px rgba(33, 29, 27, 0.24);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.nmvw-commerce7-checkout-exit:hover,
.nmvw-commerce7-checkout-exit:focus-visible {
  background: var(--text);
  color: var(--white);
}

.nmvw-commerce7-checkout-exit span[aria-hidden="true"] {
  font-size: 1.2rem;
  line-height: 0;
}

.club-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.club-details-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.7);
}

.club-details-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem !important;
  line-height: 1.12 !important;
}


.terroir-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.terroir-copy {
  display: grid;
  gap: 1.1rem;
}

.terroir-media {
  display: grid;
  gap: 18px;
}

.terroir-details {
  display: grid;
  gap: 14px;
  margin-top: 2rem;
}

.terroir-details details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.terroir-details summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  list-style: none;
}

.terroir-details summary::-webkit-details-marker {
  display: none;
}

.terroir-details summary::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-family: var(--sans);
}

.terroir-details details[open] summary::after {
  content: "-";
}

.terroir-details div {
  padding: 0 24px 24px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-left: 18px;
  border-left: 2px solid rgba(137, 106, 53, 0.45);
  color: var(--muted);
  font-size: 1.02rem;
}

.full-bleed-feature div {
  width: min(760px, 100%);
}

.full-bleed-feature h2,
.full-bleed-feature p {
  color: var(--white);
}

.full-bleed-feature .kicker {
  color: var(--cream);
}

.campaign-feature .campaign-feature-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.campaign-art-card {
  margin: 0;
  padding: clamp(18px, 2.4vw, 30px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.campaign-art-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .campaign-feature .campaign-feature-inner {
    grid-template-columns: 1fr;
  }

  .campaign-art-card {
    max-width: 440px;
  }
}

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

.events-facebook-feature {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.facebook-feature-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.facebook-feature-image {
  overflow: hidden;
  background: var(--cream);
}

.facebook-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.facebook-feature-copy {
  display: grid;
  align-content: start;
  padding: clamp(32px, 5vw, 70px);
}

.facebook-feature-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.3vw, 3.5rem) !important;
  line-height: 1.04 !important;
}

.facebook-feature-excerpt {
  color: var(--muted);
  font-size: 1.02rem;
}

.facebook-feature-excerpt > * {
  margin: 0;
}

.facebook-feature-excerpt > * + * {
  margin-top: 1.2rem;
}

.facebook-feature-excerpt ul {
  padding-left: 1.4rem;
}

.facebook-feature-excerpt li + li {
  margin-top: 0.35rem;
}

.facebook-feature-copy .button-row {
  margin-top: 1.8rem;
}

.facebook-captionless-card-link {
  margin: 0;
  font-weight: 600;
}

.facebook-captionless-card-link a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.facebook-compact-excerpt {
  color: var(--muted);
}

.event-card .facebook-compact-excerpt {
  margin-top: 1rem;
}

.facebook-compact-excerpt > * {
  margin: 0;
}

.facebook-compact-excerpt > * + *,
.tribe-common .facebook-compact-excerpt > * + * {
  margin-top: 0.75rem;
}

.facebook-compact-excerpt ul,
.facebook-compact-excerpt ol,
.tribe-common .facebook-compact-excerpt ul,
.tribe-common .facebook-compact-excerpt ol {
  padding-left: 1.4rem;
}

.facebook-compact-excerpt li + li {
  margin-top: 0.35rem;
}

.event-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.event-image {
  overflow: hidden;
  background: var(--cream);
}

.event-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.event-card:hover .event-image img {
  transform: scale(1.03);
}

.event-card > div {
  padding: 28px;
}

.event-card h3 {
  font-size: clamp(1.5rem, 1.9vw, 2.05rem) !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.event-card p:not(.label) {
  margin-top: 1rem;
}

.event-card .facebook-compact-excerpt > :is(p:not(.label), ul, ol) {
  margin: 0;
}

.event-card .facebook-compact-excerpt > :is(p:not(.label), ul, ol) + :is(p:not(.label), ul, ol) {
  margin-top: 0.75rem;
}

.event-card p,
.event-card a,
.editorial-card p,
.editorial-card a {
  overflow-wrap: anywhere;
}

.nmvw-news-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nmvw-news-grid .wp-block-post {
  min-width: 0;
  list-style: none;
}

.editorial-card {
  height: 100%;
  overflow: hidden;
  padding: 0 28px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.editorial-card.facebook-captionless-card {
  align-self: start;
  height: auto;
}

.editorial-card .wp-block-post-featured-image {
  margin: 0 -28px 24px;
  overflow: hidden;
  background: var(--cream);
}

.editorial-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.editorial-card:hover .wp-block-post-featured-image img {
  transform: scale(1.03);
}

.editorial-card .wp-block-post-date {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-card .wp-block-post-title {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.1rem) !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere;
}

.editorial-card .facebook-captionless-card-link {
  font-family: var(--sans);
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.editorial-card.facebook-captionless-card .wp-block-post-featured-image {
  margin-bottom: 18px;
}

.editorial-card .wp-block-post-title a {
  color: var(--text);
}

.editorial-card .wp-block-post-excerpt {
  margin-top: 16px;
}

.editorial-card .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.past-event-strip,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.past-event-strip img,
.gallery-grid img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  background: var(--cream);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  min-height: 340px;
  overflow: hidden;
}

.visit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.visit-panel,
.contact-panel {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.hours-list {
  display: grid;
  gap: 18px;
  margin: 2rem 0;
}

.hours-list p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.two-col-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.facts-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts-grid article,
.timeline-grid article {
  min-height: 265px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.facts-grid h3,
.timeline-grid h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem) !important;
  line-height: 1.14 !important;
  margin-bottom: 1rem;
}

.reservation-intro {
  padding-bottom: 0;
}

.reservation-fallback {
  margin-top: 22px;
}

.reservation-fallback a {
  color: var(--wine);
  font-weight: 600;
}

.reservation-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.reservation-embed iframe {
  width: 100%;
  min-height: 760px;
  display: block;
  border: 0;
  background: var(--white);
}

.reservation-live-link {
  margin-top: 1rem;
  text-align: center;
}

.reservation-live-link a {
  color: var(--wine);
  font-weight: 700;
}

body.nmvw-embed {
  background: var(--white);
}

body.nmvw-embed .commerce-section {
  padding: 0;
}

body.nmvw-embed .commerce-shell {
  border: 0;
  padding: 0;
}

.private-events-overview {
  align-items: center;
}

.private-event-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.private-event-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid rgba(33, 29, 27, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.private-event-card-image {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.54);
}

.private-event-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.private-event-card:hover .private-event-card-image img {
  transform: scale(1.03);
}

.private-event-card > div:last-child {
  display: grid;
  align-content: start;
  padding: clamp(24px, 2.4vw, 34px);
}

.private-event-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.42rem, 1.9vw, 1.95rem) !important;
}

.private-outdoors-section .inline-notice {
  margin-top: 1.4rem;
}

.private-events-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.inquiry-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(33, 29, 27, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

.timeline-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.commerce-section {
  padding-top: calc(var(--header-height) + 70px);
}

.page-hero + .commerce-section,
.page-hero + .standard-section {
  padding-top: clamp(72px, 9vw, 132px);
}

.commerce-intro {
  max-width: 850px;
  margin-bottom: 38px;
}

.commerce-product .commerce-intro h1,
.commerce-product .commerce-intro h2,
.product-detail-copy h2 {
  color: var(--text) !important;
}

.commerce-product .commerce-intro h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.9rem) !important;
}

.commerce-product {
  min-height: 72vh;
}

.commerce-shell {
  padding: clamp(20px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
}

.wine-lovers-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.event-single-copy {
  padding: clamp(28px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-single-copy p,
.event-single-copy li {
  color: var(--muted);
  font-size: 1.06rem;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.event-single-copy img {
  max-width: 520px;
  margin: 24px 0;
}

.event-single-copy iframe,
.event-single-copy table,
.event-single-copy figure {
  max-width: 100%;
}

/*
 * Facebook is the editorial system of record for managed posts and events.
 * The synchronizer emits one block for each Facebook blank-line paragraph,
 * preserves single line breaks as <br>, and keeps list/media order. These
 * scoped rules make those source boundaries visibly distinct on every local
 * presentation without changing staff-authored WordPress content.
 */
body.nmvw-facebook-managed-content .wp-block-post-content > * + *,
body.nmvw-facebook-managed-content .tribe-events-single-event-description > * + * {
  margin-top: 1.35rem;
}

body.nmvw-facebook-managed-content .wp-block-post-content > .wp-block-list,
body.nmvw-facebook-managed-content .tribe-events-single-event-description > .wp-block-list {
  padding-left: 1.4rem;
}

body.nmvw-facebook-managed-content .wp-block-post-content > .wp-block-list li + li,
body.nmvw-facebook-managed-content .tribe-events-single-event-description > .wp-block-list li + li {
  margin-top: 0.35rem;
}

.content-return-nav {
  margin: 0 0 1.35rem;
}

.content-return-nav + .wp-block-post-title {
  margin-top: 0;
}

.content-return-nav .button:focus-visible,
.tribe-events-back a:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
}

.facebook-event-cover {
  width: 100%;
  margin: 0 0 2rem;
}

.facebook-event-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.event-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  align-items: flex-start;
  margin: 0 0 2rem;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid rgba(33, 29, 27, 0.16);
}

.event-single-meta h2 {
  margin-bottom: 0.35rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-single-meta .event-meta-item {
  min-width: min(100%, 16rem);
  flex: 1 1 16rem;
}

.event-single-meta .button {
  margin-top: 0.25rem;
}

.event-meta-item p {
  color: var(--text);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.page-content {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  background: var(--deep);
  color: var(--white);
}

.footer-inner {
  width: min(94%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.85fr 0.7fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 96px) 0;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.75rem !important;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0.8rem;
}

.footer-social a {
  margin-bottom: 0;
}

.footer-wordmark {
  justify-items: start;
  margin-bottom: 1.3rem;
  color: var(--white);
  text-align: left;
}

.footer-bottom {
  width: min(94%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#account-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

#c7-account,
#c7-cart {
  display: inline-block;
}

#c7-account .c7-user-nav__account a,
#c7-cart .c7-user-nav__cart button {
  color: var(--text) !important;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.nmvw-redesign .c7-btn {
  border-radius: 0 !important;
  background: var(--wine) !important;
  border-color: var(--wine) !important;
  color: var(--white) !important;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.nmvw-redesign .c7-btn:hover {
  background: var(--text) !important;
  border-color: var(--text) !important;
}

body.nmvw-redesign #c7-content h1,
body.nmvw-redesign .c7-product__title {
  color: var(--text);
  font-family: var(--serif);
  font-weight: 300;
}

body.nmvw-redesign .c7-product-collection__product-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px !important;
}

body.nmvw-redesign .c7-product {
  display: grid !important;
  text-align: center !important;
}

body.nmvw-redesign .c7-product__image {
  margin-right: 0 !important;
}

body.nmvw-redesign .c7-product img {
  width: auto !important;
  max-height: 300px;
  margin: 0 auto;
  object-fit: contain !important;
}

.commerce-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.commerce-product-card {
  min-height: 540px;
  display: grid;
  grid-template-rows: 270px 1fr;
  border: 1px solid var(--line);
  background: #f8f4e9;
}

.commerce-product-image {
  display: grid;
  place-items: end center;
  padding: 22px 22px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 232, 211, 0.34));
}

.commerce-product-image img {
  width: auto;
  max-width: 94%;
  max-height: 250px;
  object-fit: contain;
}

.commerce-product-card > div {
  padding: 28px;
}

.commerce-product-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.food-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.food-menu-item {
  min-height: 250px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.food-menu-item h3 {
  margin-bottom: 0.65rem;
  font-size: 1.95rem !important;
  line-height: 1.12 !important;
}

.food-menu-item .wine-price {
  margin-bottom: 0.8rem;
  color: var(--wine);
}

.featured-food-item,
.empanada-item {
  grid-column: span 2;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.product-detail-image {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #f8f4e9;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.product-detail-image img {
  width: auto;
  max-width: 88%;
  max-height: 500px;
  object-fit: contain;
}

.product-detail-slide {
  display: none;
  width: 100%;
  min-height: 520px;
  margin: 0;
  place-items: center;
}

.product-detail-slide.is-active {
  display: grid;
}

.product-carousel-controls,
.nmvw-commerce-carousel-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.product-carousel-arrow,
.product-carousel-dot,
.nmvw-commerce-carousel-arrow,
.nmvw-commerce-carousel-dot {
  appearance: none;
  border: 1px solid rgba(68, 56, 47, 0.28);
  background: #fff;
  color: var(--wine);
  cursor: pointer;
}

.product-carousel-arrow,
.nmvw-commerce-carousel-arrow {
  width: 34px;
  height: 34px;
  font-size: 1rem;
  line-height: 1;
}

.product-carousel-dots,
.nmvw-commerce-carousel-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.product-carousel-dot,
.nmvw-commerce-carousel-dot {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.product-carousel-dot::before,
.nmvw-commerce-carousel-dot::before {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(68, 56, 47, 0.28);
  border-radius: 999px;
  background: #fff;
  content: "";
}

.product-carousel-dot.is-active,
.nmvw-commerce-carousel-dot.is-active {
  background: transparent;
  border-color: transparent;
}

.product-carousel-dot.is-active::before,
.nmvw-commerce-carousel-dot.is-active::before {
  background: var(--wine);
  border-color: var(--wine);
}

.c7-product__image {
  position: relative;
}

.c7-product__image .c7-product-detail__photo__thumbs {
  display: none !important;
}

.c7-product__image.nmvw-c7-carousel > picture {
  display: block;
}

.c7-product__image.nmvw-c7-carousel > picture img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.product-detail-copy .wine-price {
  margin: 1.5rem 0;
}

.product-detail-copy h2 {
  margin-top: 0.45rem;
  font-size: clamp(2.15rem, 3.2vw, 3.6rem) !important;
}

.product-subtitle {
  margin-top: 0.55rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-teaser {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(33, 29, 27, 0.82);
  font-size: 1.04rem;
}

.product-description p {
  margin-top: 1rem;
}

.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 1.75rem 0 0;
}

.product-facts-grid div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(240, 229, 200, 0.34);
}

.product-facts-grid dt {
  margin-bottom: 0.2rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-facts-grid dd {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.45;
}

.nmvw-native-product-facts {
  margin-top: 1.75rem;
}

.nmvw-native-product-facts h2 {
  margin-bottom: 0.85rem;
  color: var(--gold-dark) !important;
  font-family: var(--sans) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

button.c7-link,
.c7-side-cart__header button {
  background: transparent !important;
  border: 0 !important;
  color: var(--text) !important;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 120px;
  }

  .utility {
    display: none;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-row {
    height: 64px;
  }

  .nav-row {
    grid-template-columns: 80px minmax(0, 1fr) 80px;
    height: 56px;
    border-top: 1px solid var(--line);
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-reserve-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 0.7em 1.35em;
    border: 1px solid var(--wine);
    background: var(--wine);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(33, 29, 27, 0.12);
    transition: max-height 180ms ease;
  }

  body.menu-open .mobile-panel {
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
  }

  .mobile-panel a {
    padding: 18px 6vw;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-panel-children a {
    padding: 13px 8vw;
    color: rgba(33, 29, 27, 0.76);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .mobile-panel a.active {
    color: var(--gold-dark);
  }

  .home-hero,
  .page-hero {
    padding-top: calc(var(--header-height) + 7vh);
  }

  .split-section,
  .split-section.reverse,
  .wine-lovers-section,
  .event-single-body,
  .product-detail-layout,
  .private-events-inquiry,
  .facebook-feature-card {
    grid-template-columns: 1fr;
  }

  .hours-grid,
  .wine-grid,
  .wine-category-grid,
  .facts-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-grid,
  .nmvw-news-grid .wp-block-post-template,
  .gallery-grid,
  .commerce-product-grid,
  .private-event-card-grid,
  .awards-grid,
  .identity-grid,
  .club-options,
  .club-details-grid,
  .food-menu-grid,
  .trail-band,
  .terroir-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.nmvw-redesign .c7-product-collection__product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Block-theme compatibility layer. The legacy selectors above are retained so
   visual comparisons can stay anchored to the approved production baseline. */
.wp-site-blocks,
.wp-block-post-content {
  margin: 0;
  padding: 0;
}

.wp-block-template-part {
  margin: 0;
}

.wp-block-cover.home-hero,
.wp-block-cover.page-hero,
.wp-block-cover.full-bleed-feature {
  color: var(--white);
}

.wp-block-cover.home-hero > .wp-block-cover__background,
.wp-block-cover.page-hero > .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.66), rgba(23, 20, 18, 0.25) 54%, rgba(23, 20, 18, 0.1));
  opacity: 1;
}

.wp-block-cover.full-bleed-feature > .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(33, 29, 27, 0.72), rgba(33, 29, 27, 0.28));
  opacity: 1;
}

.wp-block-cover.home-hero > .wp-block-cover__inner-container,
.wp-block-cover.page-hero > .wp-block-cover__inner-container,
.wp-block-cover.full-bleed-feature > .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.wp-block-button__link {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 1.05em 2.25em;
  border: 1px solid var(--cta-primary-bg);
  border-radius: 0;
  background: var(--cta-primary-bg);
  color: var(--cta-primary-fg) !important;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  border-color: var(--wine-dark);
  background: var(--wine-dark);
  color: var(--white) !important;
}

.wp-block-button.button-light .wp-block-button__link {
  border-color: var(--cta-light-bg);
  background: var(--cta-light-bg);
  color: var(--cta-light-fg) !important;
}

.wp-block-button.button-outline .wp-block-button__link {
  background: transparent;
  color: var(--text) !important;
}

.wp-block-button.button-on-dark .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.76);
  background: transparent;
  color: var(--white) !important;
}

.home-hero .wp-block-button:not(.button-light):not(.button-outline) .wp-block-button__link,
.page-hero .wp-block-button:not(.button-light):not(.button-outline) .wp-block-button__link,
.full-bleed-feature .wp-block-button:not(.button-light):not(.button-outline) .wp-block-button__link {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.image-pair figure,
.image-stack figure,
.image-frame.wp-block-image {
  height: 100%;
  margin: 0;
}

.image-pair figure:nth-child(2) img,
.image-stack figure:nth-child(2) img {
  min-height: 460px;
}

.hours-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-list > div strong {
  font-size: 1.45rem;
  text-align: right;
}

.desktop-nav .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav .sub-menu a {
  padding: 11px 18px;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: left;
  white-space: nowrap;
}

.mobile-panel ul,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-panel .sub-menu {
  margin: 0;
  padding: 0 0 0 4vw;
  background: rgba(240, 229, 200, 0.38);
  list-style: none;
}

.nmvw-commerce7-placeholder {
  padding: 30px;
  border: 1px dashed var(--gold-dark);
  background: rgba(240, 229, 200, 0.4);
}

.nmvw-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wp-site-blocks > main.standard-section,
.wp-site-blocks > .wp-block-group.standard-section:first-of-type {
  padding-top: calc(var(--header-height) + 70px);
}

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

@media (max-width: 720px) {
  body.nmvw-redesign {
    font-size: 14px;
  }

  .wordmark-main {
    font-size: 1.28rem;
  }

  .wordmark-sub {
    font-size: 0.54rem;
  }

  .home-hero,
  .page-hero {
    min-height: 76vh;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .home-hero-content h1,
  .page-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 3.55rem) !important;
  }

  .standard-section,
  .split-section {
    width: min(90%, var(--max));
    padding: 64px 0;
  }

  .wp-block-post-content > .wp-block-group.standard-section:first-child {
    padding-top: calc(var(--header-height) + 70px);
  }

  .commerce-section {
    width: min(90%, var(--max));
    padding: calc(var(--header-height) + 64px) 0 64px;
  }

  .page-hero + .commerce-section {
    padding-top: 64px;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .hours-grid,
  .wine-grid,
  .wine-category-grid,
  .event-grid,
  .nmvw-news-grid .wp-block-post-template,
  .past-event-strip,
  .gallery-grid,
  .commerce-product-grid,
  .private-event-card-grid,
  .awards-grid,
  .identity-grid,
  .club-options,
  .club-details-grid,
  .food-menu-grid,
  .trail-band,
  .terroir-grid,
  .visit-layout,
  .private-events-inquiry,
  .contact-layout,
  .facts-grid,
  .timeline-grid,
  .two-col-band,
  .facebook-feature-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .facebook-feature-card,
  .facebook-feature-image {
    min-height: 0;
  }

  .facebook-feature-image img {
    aspect-ratio: auto;
  }

  .image-pair,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .image-stack img,
  .image-frame img {
    min-height: 290px;
  }

  .image-pair img:nth-child(2),
  .image-stack img:nth-child(2) {
    min-height: 290px;
  }

  .wine-card {
    min-height: auto;
  }

  .wine-category-card,
  .food-menu-item {
    min-height: auto;
  }

  .featured-food-item,
  .empanada-item {
    grid-column: auto;
  }

  .wine-card-image {
    height: 220px;
  }

  .event-card {
    grid-template-rows: 220px 1fr;
  }

  .trail-map-frame {
    max-width: 380px;
    padding: 10px;
  }

  .trail-pin {
    width: 18px;
    height: 18px;
  }

  .trail-pin-label {
    left: 31%;
    padding: 8px 10px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .commerce-product-card {
    min-height: auto;
  }

  .product-detail-image {
    min-height: 360px;
  }

  .product-detail-slide {
    min-height: 360px;
  }

  .product-facts-grid {
    grid-template-columns: 1fr;
  }

  .past-event-strip img,
  .gallery-grid img {
    min-height: 280px;
  }

  .commerce-shell {
    padding: 18px;
  }

  body.nmvw-redesign .c7-product-collection__product-list {
    grid-template-columns: 1fr !important;
  }

  .event-single-meta {
    position: static;
  }

  .footer-bottom {
    display: grid;
  }
}
