:root {
  --bg: #fdfaf4;
  --paper: #fffdf8;
  --ink: #171511;
  --muted: #6d6458;
  --green: #1b5f37;
  --deep: #103622;
  --brass: #b88f45;
  --line: rgba(23, 21, 17, 0.12);
  --line-soft: rgba(23, 21, 17, 0.07);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, #fdfaf4 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(16, 54, 34, 0.4);
  outline-offset: 3px;
}

img,
iframe {
  display: block;
  width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(58px, 8vw, 98px);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

p {
  margin: 0;
  color: rgba(23, 21, 17, 0.76);
}

.wrap {
  width: min(1200px, calc(100vw - 44px));
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}

.logo {
  width: clamp(138px, 14vw, 178px);
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.nav a,
.nav-link-button,
.link,
.contact-link-button,
.button-link,
.label,
.meta-label,
.contact-row span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a,
.nav-link-button,
.link {
  color: rgba(16, 54, 34, 0.82);
}

.nav a,
.nav-link-button {
  color: var(--brass);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  line-height: 1;
  white-space: nowrap;
}

.nav a:hover,
.nav-link-button:hover,
.link:hover,
.contact-link-button:hover,
.reservation-close:hover {
  color: var(--deep);
}

button.link {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.nav-link-button,
.contact-link-button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(16, 54, 34, 0.16);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.lang-link,
.lang-divider {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-link {
  color: rgba(16, 54, 34, 0.58);
}

.lang-link:hover {
  color: var(--deep);
}

.lang-link.is-active {
  color: var(--deep);
  font-weight: 800;
}

.lang-divider {
  color: rgba(16, 54, 34, 0.24);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  color: var(--deep);
  font-weight: 800;
  background: linear-gradient(180deg, rgba(196, 157, 86, 0.96), rgba(184, 143, 69, 0.92));
  border: 1px solid rgba(184, 143, 69, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 241, 0.42),
    0 6px 18px rgba(184, 143, 69, 0.14);
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--deep);
  background: linear-gradient(180deg, rgba(204, 167, 99, 0.98), rgba(190, 148, 73, 0.95));
  border-color: rgba(184, 143, 69, 0.66);
}

.label,
.meta-label,
.contact-row span {
  color: rgba(16, 54, 34, 0.74);
}

.hero {
  padding: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 14px;
  align-items: end;
}

.hero-copy,
.section-head,
.editorial-copy,
.note-box,
.panel,
.panel-block,
.contact-sheet,
.map-frame,
.contact-row,
.simple-list {
  display: grid;
  gap: 12px;
}

.hero-copy {
  gap: 12px;
  padding-bottom: 6px;
}

.hero-copy h1 {
  max-width: 9ch;
}

.subline {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--deep);
  max-width: 28ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  padding-top: 4px;
}

.hero .link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-bottom: 2px;
}

.hero .link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(184, 143, 69, 0.38);
}

.hero .link:hover::after,
.hero .link:focus-visible::after {
  background: rgba(16, 54, 34, 0.48);
}

.hero-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-size: 14px;
  color: rgba(23, 21, 17, 0.58);
}

.section {
  padding: 22px 0 46px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.section-compact {
  padding-top: 18px;
  padding-bottom: 34px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.editorial-grid,
.menu-grid,
.drinks-grid,
.visit-grid {
  display: grid;
  gap: 20px;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  align-items: start;
}

.editorial-grid-reverse {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.simple-list {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.simple-list p {
  color: var(--deep);
}

.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  color: var(--deep);
}

.inline-contact span {
  font-weight: 600;
}

.inline-contact a {
  color: var(--brass);
}

.menu-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  align-items: start;
}

.sheet,
.contact-sheet,
.map-frame {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.group {
  padding: 16px 0 6px;
}

.group + .group {
  border-top: 1px solid var(--line-soft);
}

.rows {
  margin-top: 8px;
}

.row,
.contact-row {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.row {
  grid-template-columns: minmax(0, 1fr) 56px;
}

.contact-row {
  grid-template-columns: 140px minmax(0, 1fr);
}

.row:last-child,
.contact-row:last-child {
  border-bottom: 0;
}

.row strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
}

.price {
  text-align: right;
  color: var(--deep);
  font-weight: 700;
}

.menu-side {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.menu-side .media-frame {
  width: min(100%, 340px);
}

.note-box {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drinks-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.84fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
}

.panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  gap: 16px;
}

.panel-block + .panel-block {
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.cellar-callout {
  display: grid;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(16, 54, 34, 0.06), rgba(16, 54, 34, 0.035)),
    rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(16, 54, 34, 0.12);
}

.cellar-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cellar-highlight .button-link {
  min-height: 38px;
  padding: 0 14px;
}

.cellar-highlight strong {
  display: block;
  color: var(--deep);
  font-weight: 700;
}

.cellar-highlight span {
  display: block;
  margin-top: 2px;
  color: rgba(23, 21, 17, 0.62);
  font-size: 0.92rem;
}

.cellar-band {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.wine-photo-column {
  display: grid;
  justify-items: stretch;
  align-content: start;
  padding: 44px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wine-column-photo {
  width: 100%;
}

.wine-column-photo img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(23, 21, 17, 0.08);
}

.cellar-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
  padding-top: 2px;
  border-top: 1px solid rgba(16, 54, 34, 0.1);
}

.cellar-summary div {
  padding-top: 10px;
  display: grid;
  gap: 4px;
}

.visit-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.map-frame {
  width: 100%;
  min-height: 380px;
}

.external-consent {
  display: grid;
  gap: 12px;
  padding: 18px;
  min-height: 100%;
  align-content: center;
  background: rgba(255, 253, 248, 0.78);
}

.map-consent,
.reservation-consent {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.external-consent h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.external-consent-actions {
  padding-top: 2px;
}

.map-frame iframe {
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-frame iframe[hidden] {
  display: none !important;
}

.map-frame.is-ready {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-sheet {
  padding: 0;
}

.media-frame {
  margin: 0;
}

.review-summary,
.review-grid,
.review-actions {
  display: grid;
  gap: 12px;
}

.review-summary {
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-summary p {
  color: var(--deep);
  font-weight: 600;
}

.review-source {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 54, 34, 0.62);
}

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

.review-card {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.review-card .meta-label {
  color: rgba(16, 54, 34, 0.62);
}

.review-card + .review-card {
  border-left: 0;
}

.review-quote {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  color: var(--muted);
  font-size: 13px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.review-meta strong {
  color: var(--deep);
}

.review-actions {
  justify-items: start;
  margin-top: 12px;
}

.hero-photo {
  max-width: 69%;
  justify-self: end;
}

.food-secondary {
  max-width: none;
}

.hero-photo img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.food-secondary img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.media-frame img {
  width: 100%;
  height: var(--desktop-height, auto);
  aspect-ratio: var(--aspect-ratio, auto);
  object-fit: cover;
  object-position: var(--object-position, center center);
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 17, 14, 0.32);
}

.reservation-modal[hidden] {
  display: none !important;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
}

.reservation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 388px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 18px 18px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(23, 21, 17, 0.16);
  display: grid;
  gap: 14px;
}

.reservation-close {
  justify-self: end;
  border: 0;
  padding: 0;
  background: none;
  color: var(--brass);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.reservation-copy {
  display: grid;
  gap: 6px;
}

.reservation-widget-shell {
  width: 100%;
  min-height: 500px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 10px;
  display: grid;
  justify-items: center;
  align-content: start;
}

.reservation-widget-shell[hidden] {
  display: none !important;
}

.reservation-widget {
  width: 100%;
  min-height: 472px;
  display: grid;
  justify-items: center;
  align-content: start;
}

.reservation-widget iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.reservation-state {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px 0;
}

.reservation-loading,
.reservation-error,
.reservation-fallback {
  font-size: 14px;
  text-align: center;
}

.reservation-fallback[hidden] {
  display: none !important;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: start;
}

.site-footer-copy,
.site-footer-details,
.site-footer-links {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: clamp(140px, 15vw, 180px);
}

.site-footer-tagline {
  max-width: 34ch;
  color: rgba(23, 21, 17, 0.82);
}

.site-footer-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: rgba(23, 21, 17, 0.58);
}

@media (max-width: 980px) {
  .hero,
  .editorial-grid,
  .editorial-grid-reverse,
  .menu-grid,
  .drinks-grid,
  .visit-grid,
  .review-grid,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .media-frame img,
  .map-frame iframe {
    height: var(--mobile-height, auto);
  }

  .hero-photo {
    max-width: 100%;
  }

  .cellar-summary {
    grid-template-columns: 1fr;
  }

  .menu-side .media-frame,
  .map-frame,
  .food-secondary {
    max-width: 100%;
    width: 100%;
  }

  .menu-side {
    justify-items: stretch;
  }

  .map-frame {
    min-height: 0;
  }

  .reservation-modal {
    padding: 16px;
  }

  .reservation-dialog {
    width: min(100%, 388px);
    padding: 18px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .cellar-highlight,
  .header,
  .hero-note {
    flex-direction: column;
    align-items: start;
  }

  .header-meta,
  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(1200px, calc(100vw - 28px));
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 46px);
  }

  h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  h3 {
    font-size: clamp(21px, 6vw, 28px);
  }

  .header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .logo {
    width: clamp(98px, 27vw, 124px);
  }

  .header-meta {
    width: auto;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-left: auto;
  }

  .nav {
    display: none;
  }

  .nav a,
  .nav-link-button,
  .lang-link,
  .lang-divider {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .nav a {
    display: none;
  }

  .lang-switch {
    min-height: 34px;
    padding: 0 10px;
    gap: 8px;
    border-color: rgba(16, 54, 34, 0.2);
    background: rgba(255, 253, 248, 0.92);
  }

  .button-link {
    min-height: 38px;
    padding: 0 13px;
  }

  .hero {
    gap: 14px;
  }

  .hero-copy {
    gap: 8px;
  }

  .subline {
    font-size: 15px;
    max-width: 25ch;
  }

  .hero .actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    justify-items: start;
    gap: 8px 18px;
  }

  .hero .actions .button-link {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero .link {
    min-height: 28px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .hero-note {
    gap: 6px;
    font-size: 12px;
  }

  .section {
    padding: 16px 0 32px;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .group {
    padding: 14px 0 4px;
  }

  .row,
  .contact-row {
    gap: 10px;
    padding: 10px 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .cellar-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .cellar-highlight {
    align-items: stretch;
  }

  .cellar-highlight .button-link,
  .external-consent-actions .button-link,
  .review-actions .button-link {
    width: 100%;
  }

  .wine-photo-column {
    padding: 18px 0 8px;
  }

  .external-consent {
    padding: 16px 14px;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .review-card {
    padding: 14px 0;
  }

  .review-quote {
    font-size: 15px;
  }

  .reservation-modal {
    padding: 10px;
  }

  .reservation-dialog {
    width: 100%;
    max-height: 88vh;
    padding: 16px 14px;
  }

  .reservation-widget-shell {
    min-height: 460px;
    padding: 10px 0;
  }

  .reservation-widget {
    min-height: 430px;
  }

  .site-footer {
    padding: 24px 0 30px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(1200px, calc(100vw - 24px));
  }

  h1 {
    font-size: clamp(36px, 10.6vw, 44px);
  }

  h2 {
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .nav {
    gap: 6px 12px;
  }

  .nav a,
  .nav-link-button,
  .lang-link,
  .lang-divider {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .subline {
    max-width: none;
  }

  .hero .actions {
    gap: 7px 14px;
  }

  .hero-note {
    font-size: 12px;
  }

  .cellar-summary {
    grid-template-columns: 1fr;
  }
}
