:root {
  --charcoal: #2a2622;
  --ink: #1a1714;
  --cream: #f5f0e8;
  --paper: #ebe4d8;
  --terracotta: #c67b5c;
  --terracotta-dark: #a86144;
  --grass: #8a8272;
  --grass-on-dark: #c9c2b4;
  --wood: #8b6f47;
  --line: rgba(42, 38, 34, 0.14);
  --line-dark: rgba(245, 240, 232, 0.22);
  --muted: #6b645c;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.65 Karla, Arial, sans-serif;
  overflow-x: hidden;
}

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

a[href]:not(.button):hover,
button:hover { cursor: pointer; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1, h2, h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--terracotta);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.eyebrow,
.section__label {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero .eyebrow,
.section--dark .section__label {
  color: var(--grass-on-dark);
}

.section {
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--line-dark);
}

.section--dark .section__label { color: var(--grass-on-dark); }

.section--warm {
  background: var(--paper);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
}

.skip-link:focus { top: 16px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.wordmark {
  font: 600 1.35rem/1 Newsreader, Georgia, serif;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 600 14px Karla, sans-serif;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 14px;
}

nav a,
.header__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}

nav a:hover { color: var(--terracotta-dark); }

.header__cta {
  padding: 0 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 600;
}

.header__cta:hover {
  background: var(--terracotta-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: end;
}

.hero__visual {
  position: absolute;
  inset: 0;
  margin: 0;
  background: linear-gradient(145deg, #3d342c 0%, #2a2622 100%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(26, 23, 20, 0.92) 0%, rgba(26, 23, 20, 0.45) 42%, rgba(26, 23, 20, 0.2) 100%);
}

.hero__panel {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(2rem, 8vw, 5rem);
  color: var(--cream);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  max-width: 11ch;
}

.hero__lead {
  max-width: 28rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.92);
  margin-bottom: 1.75rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.75rem;
  border: 0;
  border-radius: 999px;
  font: 600 15px Karla, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.button--primary {
  background: var(--terracotta);
  color: #fff;
}

.button--primary:hover { background: var(--terracotta-dark); }

.button--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.text-link {
  font-size: 14px;
  color: inherit;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover { color: var(--terracotta); }

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 0;
}

.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font: 500 14px Karla, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker__track span {
  flex-shrink: 0;
  color: var(--grass-on-dark);
}

.ticker__track span::after {
  content: " ·";
  margin-left: 3rem;
  color: var(--wood);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.kitchen__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
  align-items: start;
}

.kitchen__figure {
  margin: 0;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--paper), #c4b49a);
}

.kitchen__figure figcaption,
.gallery-item figcaption,
.wine__visual figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.kitchen__copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.drop-cap::first-letter {
  float: left;
  font: 600 4.2rem/0.85 Newsreader, Georgia, serif;
  color: var(--terracotta);
  margin: 0.08em 0.12em 0 0;
}

.facts-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.facts-inline li {
  font-size: 14px;
  color: var(--muted);
}

.facts-inline strong {
  display: block;
  font: 500 2rem/1 Newsreader, Georgia, serif;
  color: var(--charcoal);
}

.experience-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.experience-list article {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 0.25s;
}

.experience-list article:hover {
  padding-left: 0.75rem;
}

.experience-list__num {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--grass-on-dark);
  padding-top: 0.35rem;
}

.experience-list h3 { margin-bottom: 0.35rem; }

.experience-list p {
  margin: 0;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.55;
}

.experience-list a {
  font-size: 1.5rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.35rem;
}

.experience-list a:hover { color: var(--terracotta); }

.menu__head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.menu__note {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-column {
  background: var(--cream);
  padding: 1.75rem 1.5rem 2rem;
}

.menu-column h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.menu-column--feature {
  background: var(--paper);
  grid-row: span 2;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 16px;
}

.menu-items li span:last-child {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-column__hint {
  margin: 1rem 0 0;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.gallery__head { margin-bottom: 2rem; }

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

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  grid-column: span 4;
  background: linear-gradient(160deg, #ddd3c4, #b8a892);
}

.gallery-item--wide { grid-column: span 8; min-height: 360px; }

.gallery-item--tall { grid-row: span 2; min-height: 100%; }

.wine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
}

.wine__copy p {
  color: rgba(245, 240, 232, 0.88);
  max-width: 32rem;
}

.wine-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.wine-highlights li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 16px;
  color: rgba(245, 240, 232, 0.9);
}

.wine-highlights strong {
  color: var(--terracotta);
  font-weight: 600;
}

.wine__visual {
  margin: 0;
  min-height: 520px;
  position: relative;
  background: linear-gradient(160deg, #3d342c, #2a2622);
}

.quote {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8rem);
  background: var(--paper);
}

.quote blockquote {
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  font: italic 400 clamp(1.75rem, 4vw, 3rem)/1.25 Newsreader, Georgia, serif;
  color: var(--charcoal);
}

.quote p {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.book__intro p {
  color: rgba(245, 240, 232, 0.85);
  max-width: 28rem;
}

.book__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2rem;
  font-style: normal;
  font-size: 15px;
}

.book__contacts a:hover { color: var(--terracotta); }

.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-tabs button {
  min-height: 44px;
  padding: 0 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font: 600 14px Karla, sans-serif;
  cursor: pointer;
}

.form-tabs button[aria-selected="true"] {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-panel[hidden] { display: none; }

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.9);
}

.form-panel input,
.form-panel textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
  padding: 10px 0;
  font: 17px Karla, sans-serif;
  outline: none;
  resize: vertical;
}

.form-panel input:focus,
.form-panel textarea:focus {
  border-color: var(--terracotta);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(245, 240, 232, 0.85) !important;
  font-size: 14px !important;
  min-height: 44px;
}

.consent input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  accent-color: var(--terracotta);
}

.consent a { text-decoration: underline; }

.form-status {
  min-height: 20px;
  font-size: 14px;
  color: var(--grass-on-dark);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  background: var(--ink);
  color: rgba(245, 240, 232, 0.82);
  font-size: 14px;
}

.footer__brand p {
  margin: 0.75rem 0 0;
  color: var(--grass-on-dark);
  max-width: 16rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer__links a:hover { color: var(--terracotta); }

.footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--grass-on-dark);
  font-size: 13px;
}

.section__lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.section__lead--light {
  color: rgba(245, 240, 232, 0.72);
}

.menu-wine {
  margin-top: 1px;
  padding: 2rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.menu-wine h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.menu-wine__intro p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.menu-items--wine {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wine__note {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.82);
  max-width: 28rem;
  margin: 0 0 1.5rem;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.visit__address {
  font-style: normal;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 1.5rem;
}

.visit__hours h3,
.visit__faq h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.visit__hours dl {
  margin: 0;
}

.visit__hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 16px;
}

.visit__hours dt {
  color: var(--muted);
}

.visit__hours dd {
  margin: 0;
  font-weight: 600;
}

.visit__hint {
  margin: 1rem 0 0;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.visit__faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.visit__faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.visit__faq p {
  margin: 0.5rem 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.footer__hours {
  margin-top: 0.75rem !important;
  font-size: 14px !important;
  color: var(--grass-on-dark) !important;
}

.button--ghost:hover {
  border-color: var(--charcoal);
  background: rgba(42, 38, 34, 0.04);
}

.wine .text-link {
  color: var(--cream);
}

.wine .text-link:hover { color: var(--terracotta); }

.button:focus-visible,
.form-tabs button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}


.reveal {
  animation: reveal 0.8s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 960px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-column--feature { grid-row: auto; }
  .menu-wine { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .kitchen__grid,
  .wine,
  .book { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 12; grid-row: auto; min-height: 320px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(245, 240, 232, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(26, 23, 20, 0.08);
  }
  .nav-open nav { display: flex; }
  nav a { min-height: 48px; }
  .header__cta { justify-content: center; margin-top: 0.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .facts-inline { grid-template-columns: 1fr 1fr; }
  .experience-list article { grid-template-columns: 40px 1fr 44px; }
  .experience-list p { font-size: 16px; }
  .footer { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero { min-height: min(92vh, 720px); min-height: min(92dvh, 720px); }
  .hero__panel { padding-bottom: 2.5rem; }
  .hero h1 { max-width: none; font-size: clamp(2.15rem, 10vw, 3rem); }
  .section { padding-inline: 1.25rem; }
  .kitchen__figure { min-height: 320px; }
}

@media (max-width: 390px) {
  .facts-inline { grid-template-columns: 1fr; }
  .actions { gap: 1rem; }
  .button { width: 100%; }
  .text-link { justify-content: center; width: 100%; }
  .gallery-item,
  .gallery-item--wide { min-height: 260px; }
  .drop-cap::first-letter { font-size: 3.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track,
  .reveal { animation: none !important; }
}
