
:root {
  --sidebar: #aeb1b3;
  --sidebar-dark: #979b9d;
  --ink: #45494b;
  --ink-strong: #26292b;
  --muted: #74797c;
  --paper: #ffffff;
  --soft: #f4f4f3;
  --line: #d9dbdc;
  --wine: #713341;
  --wine-dark: #55242f;
  --shadow: 0 18px 50px rgba(25, 28, 30, .13);
  --sidebar-width: 282px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink-strong);
  color: #fff;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-bar,
.nav-backdrop {
  display: none;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  background: var(--sidebar);
  color: #fff;
  box-shadow: 8px 0 24px rgba(0, 0, 0, .05);
}

.brand-panel {
  display: grid;
  min-height: 235px;
  place-items: center;
  padding: 26px;
  background: var(--sidebar) !important;
}

.brand-panel img {
  width: 160px;
  height: auto;
}

.sidebar-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 34px 30px 26px;
  overflow-y: auto;
}

.sidebar-nav {
  display: grid;
  gap: 3px;
}

.sidebar-nav a {
  position: relative;
  display: block;
  padding: 8px 3px;
  color: rgba(255, 255, 255, .94);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.sidebar-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 3px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .22s ease;
}

.sidebar-nav a:hover::after,
.sidebar-nav a:focus-visible::after,
.sidebar-nav a[aria-current="page"]::after {
  width: 35px;
}

.sidebar-nav a[aria-current="page"] {
  color: #fff;
}

.sidebar-meta {
  margin-top: auto;
  padding-top: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  line-height: 1.65;
}

.sidebar-meta a {
  text-decoration: none;
}

.sidebar-meta a:hover,
.sidebar-meta a:focus-visible {
  text-decoration: underline;
}

.reserve-side {
  display: block;
  margin: 22px -30px -26px;
  padding: 19px 20px;
  background: #fff;
  color: var(--ink-strong);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.reserve-side:hover,
.reserve-side:focus-visible {
  background: var(--soft);
}

.page-wrap {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(78vh, 820px);
  align-items: end;
  overflow: hidden;
  background-color: #777;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 22, 24, .64), rgba(20, 22, 24, .12) 72%),
    linear-gradient(0deg, rgba(20, 22, 24, .42), transparent 58%);
}

.hero-home {
  background-image: url("../img/hero-home.jpg");
}

.hero-restaurant {
  background-image: url("../img/hero-restaurant.jpg");
  background-position: center 46%;
}

.hero-menu {
  min-height: 62vh;
  background-image: url("../img/hero-menu.jpg");
  background-position: center 45%;
}

.hero-gallery {
  min-height: 62vh;
  background-image: url("../img/hero-gallery.jpg");
}

.hero-contact {
  min-height: 62vh;
  background-image: url("../img/hero-contact.jpg");
  background-position: center 52%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) 0 clamp(58px, 8vw, 92px);
}

.kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1,
.legal-head h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.03rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--ink-strong);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #f1f1ef;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-dark {
  background: var(--ink-strong);
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #101112;
}

.btn-wine {
  background: var(--wine);
  color: #fff;
}

.btn-wine:hover,
.btn-wine:focus-visible {
  background: var(--wine-dark);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-soft {
  background: var(--soft);
}

.container {
  width: min(var(--content-width), calc(100% - 72px));
  margin-inline: auto;
}

.narrow {
  width: min(840px, calc(100% - 72px));
  margin-inline: auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.split-copy h2,
.contact-card h2,
.menu-section h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.section-head p,
.split-copy > p {
  margin: 18px 0 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(42px, 7vw, 95px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media.portrait img {
  min-height: 560px;
  object-position: center top;
}

.image-note {
  position: absolute;
  right: -24px;
  bottom: -24px;
  max-width: 280px;
  padding: 22px 24px;
  background: var(--sidebar);
  color: #fff;
  font-size: .9rem;
  line-height: 1.5;
}

.hours-card {
  margin-top: 30px;
  padding: 26px 28px;
  border-left: 3px solid var(--wine);
  background: var(--soft);
}

.hours-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hours-card p {
  margin: 8px 0 0;
}

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

.feature-card {
  min-height: 250px;
  padding: 34px;
  background: #fff;
}

.feature-card .number {
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.feature-card h3 {
  margin: 24px 0 10px;
  color: var(--ink-strong);
  font-size: 1.35rem;
  font-weight: 400;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.event-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(31, 33, 35, .92), rgba(31, 33, 35, .64)),
    url("../img/hero-home.jpg") center/cover;
  color: #fff;
}

.event-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
}

.event-cta p {
  max-width: 720px;
  margin: 18px 0 0;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item h3 {
  margin: 0;
  color: var(--wine);
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 0;
}

.menu-jump {
  position: sticky;
  z-index: 8;
  top: 0;
  display: flex;
  gap: 8px;
  padding: 14px max(36px, calc((100% - var(--content-width)) / 2));
  overflow-x: auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.menu-jump a {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-jump a:hover,
.menu-jump a:focus-visible {
  color: var(--wine);
}

.season-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.season-intro {
  padding: clamp(34px, 5vw, 58px);
  background: var(--wine);
  color: #fff;
}

.season-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}

.season-intro p {
  margin: 18px 0 0;
}

.season-menu {
  display: grid;
  gap: 30px;
  padding: clamp(34px, 5vw, 58px);
}

.menu-section {
  scroll-margin-top: 90px;
}

.menu-section + .menu-section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.menu-section h2 {
  margin-bottom: 28px;
}

.menu-list {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:first-child {
  border-top: 1px solid var(--line);
}

.menu-item h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.menu-item .detail {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 400;
}

.menu-item .translation {
  display: block;
  margin-top: 4px;
  color: #909496;
  font-size: .78rem;
  font-style: italic;
  font-weight: 400;
}

.price {
  color: var(--wine);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: .82rem;
}

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

.wine-card {
  padding: 34px;
  background: var(--soft);
}

.wine-card h3 {
  margin: 0 0 22px;
  color: var(--ink-strong);
  font-size: 1.5rem;
  font-weight: 400;
}

.wine-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.wine-entry strong {
  display: block;
  line-height: 1.35;
}

.wine-entry small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 572px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(.86);
  transform: scale(1.025);
}

.gallery-dialog {
  width: min(1100px, calc(100% - 40px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.gallery-dialog::backdrop {
  background: rgba(14, 15, 16, .92);
}

.dialog-frame {
  position: relative;
  display: grid;
  gap: 12px;
}

.dialog-frame img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.dialog-caption {
  margin: 0;
  padding-right: 50px;
  font-size: .88rem;
}

.dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: #fff;
  color: var(--ink-strong);
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 7vw, 90px);
}

.contact-card {
  padding: clamp(34px, 5vw, 58px);
  background: var(--soft);
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-lines {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.contact-line {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-line a,
.contact-line strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink-strong);
  font-size: 1.08rem;
  text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--wine);
}

.contact-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 300;
  line-height: 1.12;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-note {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--wine);
  background: #fff;
  box-shadow: 0 8px 30px rgba(25, 28, 30, .08);
}

.legal-head {
  padding: clamp(100px, 12vw, 150px) 0 55px;
  background: var(--soft);
}

.legal-head h1 {
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.legal-content {
  padding: 70px 0 100px;
}

.legal-content h2 {
  margin: 48px 0 14px;
  color: var(--ink-strong);
  font-size: 1.5rem;
  font-weight: 400;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  color: var(--ink-strong);
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #5c6164;
}

.legal-content ul {
  padding-left: 1.2em;
}

.legal-content a {
  color: var(--wine);
}

.notice {
  margin: 0 0 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--wine);
  background: #faf5f6;
  color: var(--ink-strong);
  font-size: .9rem;
}

.site-footer {
  padding: 52px 0;
  background: var(--ink-strong);
  color: rgba(255, 255, 255, .82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .9fr;
  gap: 50px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer p {
  margin: 10px 0 0;
  font-size: .84rem;
  line-height: 1.65;
}

.footer-title {
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.footer-links a {
  font-size: .84rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .72rem;
}

@media (max-width: 1100px) {
  :root {
    --sidebar-width: 250px;
  }

  .sidebar-inner {
    padding-inline: 24px;
  }

  .reserve-side {
    margin-inline: -24px;
  }

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

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

  .split,
  .split-reverse,
  .contact-grid {
    gap: 46px;
  }
}

@media (max-width: 920px) {
  .mobile-bar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 70;
    display: flex;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ink-strong);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-brand img {
    width: 42px;
    height: 42px;
    object-fit: cover;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink-strong);
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle span::before {
    top: -8px;
  }

  .menu-toggle span::after {
    top: 8px;
  }

  .sidebar {
    width: min(340px, 88vw);
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(18, 20, 21, .58);
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  .page-wrap {
    margin-left: 0;
    padding-top: 72px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-menu,
  .hero-gallery,
  .hero-contact {
    min-height: 560px;
  }

  .split,
  .split-reverse,
  .contact-grid,
  .season-card {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-media {
    order: -1;
  }

  .split-media img,
  .split-media.portrait img {
    min-height: 420px;
  }

  .image-note {
    right: 18px;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .hero-inner,
  .container,
  .narrow {
    width: min(100% - 36px, var(--content-width));
  }

  .hero {
    min-height: 620px;
  }

  .hero-menu,
  .hero-gallery,
  .hero-contact {
    min-height: 500px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 22, 24, .72), rgba(20, 22, 24, .3)),
      linear-gradient(0deg, rgba(20, 22, 24, .45), transparent 58%);
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-block: 66px;
  }

  .split-media img,
  .split-media.portrait img {
    min-height: 360px;
  }

  .image-note {
    position: static;
    max-width: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-jump {
    top: 72px;
    padding-inline: 14px;
  }

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

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

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
    min-height: 220px;
  }

  .gallery-item.tall {
    grid-row: span 1;
    min-height: 330px;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-brand span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
