:root {
  --green: #103f3f;
  --green-deep: #072a2a;
  --green-soft: #dfe9e4;
  --paper: #f7f2ea;
  --sand: #d3b486;
  --champagne: #ead8bd;
  --ink: #172120;
  --muted: #66706d;
  --line: rgba(211, 180, 134, 0.58);
  --line-strong: rgba(211, 180, 134, 0.95);
  --shadow: 0 18px 50px rgba(7, 42, 42, 0.12);
  --gold-shadow: 0 22px 62px rgba(146, 111, 58, 0.18);
  --content-width: min(1180px, calc(100% - clamp(44px, 10vw, 160px)));
  --media-width: min(1280px, calc(100% - clamp(44px, 8vw, 140px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body::selection {
  color: var(--green-deep);
  background: var(--sand);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(22px, calc((100vw - 1280px) / 2));
  color: white;
  background: rgba(7, 42, 42, 0.72);
  border-bottom: 1px solid rgba(234, 216, 189, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, min-height 0.28s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 42, 42, 0.92);
  border-color: rgba(211, 180, 134, 0.34);
  box-shadow: 0 18px 48px rgba(3, 20, 20, 0.18);
}

.terms-header {
  position: sticky;
  color: var(--paper);
  background: var(--green-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
  height: auto;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.brand:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a,
.header-action,
.terms-link,
.footer a {
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.footer a:hover,
.terms-link:hover {
  color: var(--sand);
}

.header-action {
  justify-self: end;
  border: 1px solid rgba(234, 216, 189, 0.52);
  padding: 10px 15px;
  min-width: 118px;
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.header-action:hover {
  background: var(--champagne);
  color: var(--green-deep);
  border-color: var(--sand);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: 28% center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 42, 42, 0.95), rgba(7, 42, 42, 0.58) 38%, rgba(7, 42, 42, 0.14) 72%),
    linear-gradient(0deg, rgba(7, 42, 42, 0.76), rgba(7, 42, 42, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  padding: 150px 0 84px max(22px, calc((100vw - 1180px) / 2));
}

.hero-logo {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 8vw, 7.1rem);
  font-weight: 400;
  line-height: 0.92;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--green-deep);
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.downloads,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.downloads a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  overflow: hidden;
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.button-primary {
  background: var(--sand);
  color: var(--green-deep);
  box-shadow: 0 12px 30px rgba(211, 180, 134, 0.18);
}

.button-primary:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.button-secondary:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  transform: translateY(-2px);
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.intro-grid,
.section-heading,
.menu-grid,
.downloads,
.wine-section {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.intro-section > .section-kicker {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.image-band {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: clamp(18px, 2vw, 28px);
  width: var(--media-width);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(64px, 7vw, 108px) 0;
}

.image-band figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, var(--sand), rgba(234, 216, 189, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.image-band figure:hover,
.gallery-grid figure:hover,
.feature-media figure:hover {
  border-color: var(--line-strong);
  box-shadow: var(--gold-shadow);
  transform: translateY(-2px);
}

.image-band figure:hover img,
.gallery-grid figure:hover img,
.feature-media figure:hover img {
  transform: scale(1.018);
}

.image-band img,
.gallery-grid img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-band img {
  aspect-ratio: 4 / 5;
}

.image-band figure:nth-child(2) img {
  aspect-ratio: 4 / 5;
}

.menu-section {
  background: var(--green-deep);
  color: var(--paper);
}

.menu-section h2,
.menu-section h3 {
  color: var(--paper);
}

.section-heading {
  max-width: none;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 760px;
}

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

.menu-card {
  position: relative;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.menu-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-card:hover {
  z-index: 1;
  background: rgba(234, 216, 189, 0.08);
  border-color: var(--line-strong);
  box-shadow: var(--gold-shadow);
  transform: translateY(-3px);
}

.menu-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.menu-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-card p {
  margin-bottom: 26px;
  color: rgba(247, 242, 234, 0.72);
}

.category-panel {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.category-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  color: var(--sand);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

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

.category-panel summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.category-panel[open] summary::after {
  transform: rotate(45deg);
}

.category-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 4px;
  color: rgba(247, 242, 234, 0.72);
  list-style: none;
}

.category-panel[open] ul {
  animation: soft-open 0.28s ease both;
}

.downloads {
  margin-top: 28px;
}

.downloads a {
  border-color: var(--line);
  color: var(--paper);
}

.downloads a:hover {
  border-color: var(--line-strong);
  background: rgba(211, 180, 134, 0.08);
  color: var(--sand);
  transform: translateY(-2px);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  width: 100%;
  margin: 0;
  padding:
    clamp(56px, 7vw, 92px)
    max(22px, calc((100vw - 1180px) / 2));
  background: var(--green-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.feature-media figure {
  margin: 0;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, var(--sand), rgba(234, 216, 189, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.feature-media img {
  aspect-ratio: 16 / 8.4;
}

.feature-media figure:first-child {
  grid-column: 1 / -1;
}

.feature-media figure:not(:first-child) img {
  aspect-ratio: 16 / 10;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px) 0;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-copy strong {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.events-section {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: clamp(500px, 58vh, 660px);
  margin: 0;
  padding:
    clamp(34px, 5vw, 72px)
    max(22px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  color: white;
  background: var(--green-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.events-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.events-section:hover .section-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

.events-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 42, 42, 0.92), rgba(7, 42, 42, 0.54) 48%, rgba(7, 42, 42, 0.18)),
    linear-gradient(0deg, rgba(7, 42, 42, 0.58), rgba(7, 42, 42, 0.08) 64%);
}

.events-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(48px, 6vw, 78px) 0;
}

.section-logo {
  width: 104px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.32));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.events-copy h2 {
  max-width: 520px;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(2.3rem, 4.3vw, 4.2rem);
}

.events-copy p:not(.section-kicker) {
  max-width: 500px;
  margin-bottom: 26px;
  color: rgba(247, 242, 234, 0.82);
  font-size: 1.06rem;
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  width: 100%;
  margin: 0;
  padding:
    clamp(76px, 9vw, 128px)
    max(22px, calc((100vw - 1180px) / 2));
  background: var(--green-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-intro p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hours-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 22px clamp(18px, 2vw, 30px);
  border-bottom: 1px solid var(--line);
  transition: background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.hours-list div:hover {
  background: linear-gradient(90deg, rgba(211, 180, 134, 0.12), rgba(211, 180, 134, 0));
  box-shadow: inset 3px 0 0 var(--sand);
  color: var(--green);
}

.hours-list dt {
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.wine-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  width: 100%;
  margin: 0;
  padding:
    clamp(76px, 9vw, 128px)
    max(22px, calc((100vw - 1180px) / 2));
  background: var(--green-soft);
  border-bottom: 1px solid var(--line);
}

.wine-copy h2 {
  max-width: 640px;
}

.wine-action {
  margin-top: 10px;
}

.wine-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(260px, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
}

.wine-showcase figure {
  margin: 0;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, var(--sand), rgba(234, 216, 189, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.wine-showcase figure:hover {
  border-color: var(--line-strong);
  box-shadow: var(--gold-shadow);
  transform: translateY(-2px);
}

.wine-showcase img {
  width: 100%;
  height: 100%;
  min-height: 296px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.wine-showcase figure:hover img {
  transform: scale(1.018);
}

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

.wine-list span {
  position: relative;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.wine-list span:hover {
  color: var(--green-deep);
  background: rgba(211, 180, 134, 0.16);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.wine-list span::after {
  position: absolute;
  inset: auto 18px 14px;
  height: 1px;
  content: "";
  background: var(--sand);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wine-list span:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.beach-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.beach-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.beach-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 42, 42, 0.82), rgba(7, 42, 42, 0.18) 62%);
}

.beach-copy {
  position: relative;
  z-index: 1;
  width: min(740px, var(--content-width));
  margin-right: auto;
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  padding: 0 0 clamp(48px, 8vw, 92px);
}

.beach-copy h2 {
  color: white;
}

.beach-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: var(--media-width);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(72px, 8vw, 118px) 0 clamp(76px, 9vw, 128px);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, var(--sand), rgba(234, 216, 189, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
}

.visit-section {
  padding: clamp(72px, 8vw, 118px) 0 clamp(58px, 7vw, 92px);
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(211, 180, 134, 0.06), rgba(211, 180, 134, 0) 34%),
    var(--green-deep);
  border-top: 1px solid rgba(211, 180, 134, 0.28);
}

.visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.visit-main {
  max-width: 760px;
}

.visit-side {
  display: grid;
  gap: 22px;
  align-content: center;
  justify-items: stretch;
  width: 100%;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(211, 180, 134, 0.48);
  box-shadow: inset 0 0 0 1px rgba(234, 216, 189, 0.04);
}

.map-embed {
  width: var(--content-width);
  margin: clamp(34px, 5vw, 58px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(7, 42, 42, 0.28);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: min(460px, 68vh);
  border: 0;
  filter: grayscale(0.18) contrast(1.05) saturate(0.86);
}

.visit-inner h2 {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--paper);
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
}

.visit-copy {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(247, 242, 234, 0.78);
  font-size: 1.08rem;
}

.visit-actions {
  width: 100%;
  align-items: stretch;
  flex-direction: column;
}

.visit-label {
  margin: 0 0 -8px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding-top: 4px;
}

address {
  color: rgba(247, 242, 234, 0.78);
  font-style: normal;
  font-size: 1.08rem;
}

.terms-link {
  color: var(--champagne);
  font-weight: 700;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 76px) 28px;
  color: rgba(247, 242, 234, 0.72);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(211, 180, 134, 0.12), rgba(211, 180, 134, 0) 32%),
    var(--green-deep);
}

.footer-logo {
  width: min(260px, 64vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.3));
  will-change: transform;
}

.credit {
  max-width: 880px;
  color: rgba(247, 242, 234, 0.48);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.terms-page {
  background: #fbf7ef;
}

.terms-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.terms-content h1 {
  color: var(--green-deep);
  font-size: clamp(3rem, 9vw, 6.2rem);
}

.updated {
  margin-bottom: 44px;
  color: var(--muted);
}

.terms-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.terms-content h2 {
  margin-bottom: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.terms-content p {
  color: var(--muted);
}

.motion-ready .scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(48px) scale(0.985);
  transition:
    opacity 0.9s ease var(--reveal-delay, 0ms),
    filter 0.9s ease var(--reveal-delay, 0ms),
    transform 0.9s ease var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes soft-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-content {
    padding-top: 180px;
  }

  .intro-grid,
  .feature-section,
  .hours-section,
  .wine-section,
  .events-section,
  .visit-inner {
    grid-template-columns: 1fr;
  }

  .feature-section {
    padding:
      clamp(48px, 8vw, 76px)
      max(22px, calc((100vw - 1180px) / 2));
  }

  .wine-showcase {
    grid-template-columns: 1fr;
  }

  .visit-side {
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    width: 96px;
  }

  .header-action {
    min-width: 106px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 42, 42, 0.94), rgba(7, 42, 42, 0.58)),
      linear-gradient(0deg, rgba(7, 42, 42, 0.84), rgba(7, 42, 42, 0.12));
  }

  .hero picture img {
    object-position: 30% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 170px 0 54px 14px;
  }

  .hero-actions,
  .downloads,
  .visit-actions,
  .events-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .downloads a {
    width: 100%;
  }

  .events-section {
    min-height: 560px;
    width: 100%;
    padding: 32px 14px;
  }

  .events-copy {
    width: 100%;
    padding: 56px 0;
  }

  .image-band,
  .gallery-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .feature-media {
    grid-template-columns: 1fr;
  }

  .image-band img,
  .image-band figure:nth-child(2) img,
  .feature-media img,
  .feature-media figure:not(:first-child) img,
  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
  }

  .menu-grid,
  .wine-list {
    grid-template-columns: 1fr;
  }

  .wine-showcase img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .menu-card {
    min-height: 230px;
    padding: 24px;
  }

  .menu-card span {
    margin-bottom: 28px;
  }

  .footer {
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
