: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: #896a35;
  --vine: #4f6243;
  --wine: #8d1836;
  --deep: #171412;
  --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;
}

* {
  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: 140px minmax(0, 1fr) 140px;
  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(14px, 1.8vw, 28px);
  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,
.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--white);
  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;
}

.shop-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;
}

.button:hover,
.shop-button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--text);
}

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

.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-panel-group {
  display: grid;
}

.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: rgba(33, 29, 27, 0.62);
  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;
}

.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);
}

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

.event-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  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;
}

.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;
}

.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 {
  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-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.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%;
}

.event-single-meta {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 22px;
  padding: 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-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-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);
}

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

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

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

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 1fr 80px;
    height: 56px;
    border-top: 1px solid var(--line);
  }

  .desktop-nav,
  .shop-button {
    display: none;
  }

  .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 {
    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,
  .gallery-grid,
  .commerce-product-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;
  }
}

@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,
  .commerce-section {
    width: min(90%, var(--max));
    padding: 64px 0;
  }

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

  .hours-grid,
  .wine-grid,
  .wine-category-grid,
  .event-grid,
  .past-event-strip,
  .gallery-grid,
  .commerce-product-grid,
  .awards-grid,
  .identity-grid,
  .club-options,
  .club-details-grid,
  .food-menu-grid,
  .trail-band,
  .terroir-grid,
  .visit-layout,
  .contact-layout,
  .facts-grid,
  .timeline-grid,
  .two-col-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .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: 300px 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;
  }

  .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;
  }
}
