:root {
  --color-wine-950: #21070a;
  --color-wine-900: #3b0d12;
  --color-wine-800: #56131a;
  --color-wine-700: #751f27;
  --color-gold-500: #c79a4b;
  --color-gold-300: #e7c884;
  --color-cream-100: #fffaf3;
  --color-cream-200: #f4eadc;
  --color-cream-300: #e6d5bd;
  --color-ink-900: #201a18;
  --color-ink-700: #4f4540;
  --color-ink-500: #776c66;
  --color-white: #fff;
  --shadow-soft: 0 24px 70px rgba(33, 7, 10, 0.13);
  --shadow-card: 0 14px 34px rgba(33, 7, 10, 0.08);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --container: 1180px;
  --header-height: 96px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: var(--font-sans);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink-900);
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 38%, #fffaf3 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

button,
input,
textarea { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--color-wine-900);
  color: var(--color-white);
  border-radius: 12px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(86, 19, 26, 0.08);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 8px 30px rgba(33, 7, 10, 0.08);
}

.topbar {
  background: var(--color-wine-900);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a:hover { color: var(--color-gold-300); }

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  transform: translateX(-61px);
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--color-wine-800), var(--color-wine-950));
  color: var(--color-gold-300);
  font-family: var(--font-sans);
  font-weight: 850;
  font-size: 1.7rem;
  box-shadow: inset 0 0 0 1px rgba(231, 200, 132, 0.22), 0 10px 30px rgba(86, 19, 26, 0.22);
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand__text small {
  color: var(--color-ink-500);
  font-size: 0.82rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--color-ink-700);
  font-size: 0.96rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--color-wine-900);
  background: rgba(117, 31, 39, 0.08);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: var(--color-white);
  background: var(--color-wine-900);
  box-shadow: 0 12px 28px rgba(59, 13, 18, 0.18);
}

.btn--primary {
  color: var(--color-white);
  background: var(--color-wine-900);
  box-shadow: 0 14px 30px rgba(59, 13, 18, 0.18);
}

.btn--secondary {
  color: var(--color-wine-900);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(117, 31, 39, 0.18);
}

.btn--light {
  color: var(--color-wine-950);
  background: var(--color-gold-300);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.92rem;
  color: var(--color-wine-900);
  background: var(--color-white);
  border-color: rgba(86, 19, 26, 0.1);
}

.btn--full { width: 100%; }

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(59, 13, 18, 0.2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--color-wine-900);
  padding: 0;
  position: relative;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--color-white);
  border-radius: 99px;
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}

.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle span:nth-child(4) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { top: 22px; transform: rotate(-45deg); }

.section { padding: 110px 0; }

.hero {
  padding: 78px 0 64px;
  overflow: hidden;
}

.hero__grid,
.split,
.contact-grid,
.story-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero__grid { grid-template-columns: 1.02fr 0.98fr; }
.hero__content { min-width: 0; }
.split { grid-template-columns: 0.9fr 1.1fr; }
.split--reverse { grid-template-columns: 1fr 0.98fr; }
.story-grid { grid-template-columns: 0.95fr 1.05fr; }
.contact-grid { grid-template-columns: 1fr 0.9fr; align-items: stretch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--color-wine-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light { color: var(--color-gold-300); }

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

h1,
h2 {
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h1 {
  max-width: min(100%, 12ch);
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 5.5vw, 4.75rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--color-wine-950);
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  font-weight: 850;
  color: var(--color-wine-950);
}

.section--dark h2,
.section--dark h3 { color: var(--color-white); }

h3 {
  margin-bottom: 12px;
  line-height: 1.14;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__lead,
.section-copy p,
.section-heading p,
.story-card p {
  color: var(--color-ink-700);
  font-size: 1.08rem;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 630px;
}

.hero__meta div {
  padding: 18px 16px;
  border: 1px solid rgba(117, 31, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero__meta strong {
  display: block;
  color: var(--color-wine-900);
  font-size: 1.5rem;
  line-height: 1;
}

.hero__meta span {
  display: block;
  margin-top: 6px;
  color: var(--color-ink-500);
  font-size: 0.9rem;
}

.hero__visual,
.image-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-cream-200);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero__visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  align-self: start;
  transform: translateY(-18px);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: none;
}

.hero__visual::before,
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(33, 7, 10, 0.02), rgba(33, 7, 10, 0.22));
  pointer-events: none;
}

.hero__visual::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(245px, 78%);
  padding: 15px 17px;
  border-radius: 8px;
  color: var(--color-wine-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(117, 31, 39, 0.1);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.floating-card--top { top: 42px; left: 30px; }
.floating-card--bottom { right: 30px; bottom: 34px; }
.floating-card span { display: block; color: var(--color-ink-500); font-size: 0.82rem; }
.floating-card strong { display: block; margin-top: 2px; line-height: 1.2; }

.quick-actions {
  margin-top: -26px;
  position: relative;
  z-index: 5;
  padding-bottom: 48px;
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  display: grid;
  gap: 8px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(117, 31, 39, 0.1);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-card:hover { transform: translateY(-3px); border-color: rgba(117, 31, 39, 0.18); box-shadow: var(--shadow-soft); }
.quick-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--color-wine-900);
  background: var(--color-cream-100);
  font-size: 1.35rem;
}
.quick-card strong { color: var(--color-wine-950); font-size: 1.1rem; }
.quick-card small { color: var(--color-ink-500); line-height: 1.45; }

.section--cream { background: linear-gradient(180deg, #fffaf3, #f6eddf); }
.section--dark {
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(33, 7, 10, 0.98), rgba(86, 19, 26, 0.96));
}

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

.section-copy { max-width: 670px; }
.section-copy p { margin-bottom: 24px; }
.section--dark .section-copy p { color: rgba(255, 255, 255, 0.78); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-wine-800);
  font-weight: 800;
}

.text-link::after { content: "→"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(4px); }

.offer-card,
.daily-menu,
.info-panel,
.story-card,
.values > div,
.contact-card,
.hours-card,
.request-form {
  border: 1px solid rgba(117, 31, 39, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.offer-card {
  padding: 30px;
}

.offer-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(117, 31, 39, 0.1);
}

.offer-card__header {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(117, 31, 39, 0.1);
}

.offer-card__header span,
.pill {
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(199, 154, 75, 0.16);
  color: var(--color-wine-800);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.offer-card__header strong { font-size: 1.55rem; line-height: 1.1; color: var(--color-wine-950); }

.price-list {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(117, 31, 39, 0.08);
}

.price-list span { color: var(--color-ink-700); }
.price-list strong { color: var(--color-wine-900); white-space: nowrap; }

.fineprint {
  margin: 0;
  color: var(--color-ink-500);
  font-size: 0.88rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.daily-menu,
.info-panel,
.story-card,
.contact-card,
.hours-card,
.request-form { padding: 32px; }

.daily-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 26px;
}

.daily-menu h3 { margin: 10px 0 0; font-size: clamp(1.5rem, 3vw, 2.2rem); }

.menu-table {
  display: grid;
  gap: 10px;
}

.menu-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid rgba(117, 31, 39, 0.09);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.72);
}

.menu-row.is-today {
  border-color: rgba(199, 154, 75, 0.65);
  background: rgba(231, 200, 132, 0.18);
  box-shadow: 0 14px 34px rgba(199, 154, 75, 0.16);
}

.menu-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-wine-900);
  font-weight: 850;
}

.menu-row strong { color: var(--color-ink-900); }
.menu-row em { font-style: normal; font-weight: 850; color: var(--color-wine-800); white-space: nowrap; }

.info-panel { position: sticky; top: 130px; background: var(--color-white); }
.info-panel p { color: var(--color-ink-700); }
.info-panel .btn { margin: 8px 0 16px; }

.image-card {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0 30px;
}

.feature-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-grid strong { display: block; color: var(--color-gold-300); }
.feature-grid span { display: block; margin-top: 5px; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

.values {
  display: grid;
  gap: 16px;
}

.values > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 4px 18px;
  padding: 24px;
}

.values span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--color-wine-900);
  background: rgba(231, 200, 132, 0.75);
  font-weight: 900;
}

.values strong { font-size: 1.2rem; color: var(--color-wine-950); }
.values p { margin: 0; color: var(--color-ink-500); }

.contact-card,
.request-form { background: var(--color-white); }
.request-form { grid-column: span 2; }

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(117, 31, 39, 0.08);
}

.contact-list span { color: var(--color-ink-500); font-size: 0.88rem; }
.contact-list strong { color: var(--color-wine-950); font-size: 1.06rem; }

.hours-list {
  margin: 24px 0 18px;
  display: grid;
  gap: 10px;
}

.hours-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 12px 0 13px;
  border-bottom: 1px solid rgba(117, 31, 39, 0.08);
}

.hours-list dt { font-weight: 850; color: var(--color-wine-950); }
.hours-list dd { margin: 0; color: var(--color-ink-700); }

.request-form {
  display: grid;
  gap: 16px;
}

.request-form h3 { margin-bottom: 4px; }

label {
  display: grid;
  gap: 7px;
  color: var(--color-ink-700);
  font-size: 0.94rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(117, 31, 39, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--color-ink-900);
  background: #fffdf8;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea { resize: vertical; }
input:focus,
textarea:focus {
  border-color: var(--color-gold-500);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(199, 154, 75, 0.18);
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, var(--color-wine-950), var(--color-wine-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.6fr;
  gap: 42px;
}

.brand--footer .brand__text strong { color: var(--color-white); }
.brand--footer .brand__text small { color: rgba(255, 255, 255, 0.62); }
.site-footer p { max-width: 420px; margin: 22px 0 0; }
.site-footer h3 { color: var(--color-gold-300); font-size: 1rem; margin-bottom: 14px; }
.site-footer a:not(.brand) { display: block; margin: 8px 0; color: rgba(255, 255, 255, 0.76); transition: color 180ms ease; }
.site-footer a:hover { color: var(--color-gold-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav-cta { display: none; }
  .hero__grid,
  .split,
  .split--reverse,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 480px; align-self: stretch; transform: none; }
  .hero__visual img { transform: none; }
  .menu-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
  .request-form { grid-column: auto; }
}

@media (max-width: 820px) {
  :root { --header-height: 86px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .navbar { min-height: 76px; }
  .brand { transform: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 248, 236, 0.98);
    box-shadow: var(--shadow-soft);
    transform-origin: top right;
    transform: scale(0.96) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-menu.is-open { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
  .nav-menu a { padding: 14px 16px; }
  .hero { padding-top: 58px; }
  .hero__meta,
  .quick-actions__grid,
  .feature-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .quick-actions { margin-top: 0; }
  .section { padding: 72px 0; }
  .hero__visual { min-height: 400px; }
  .floating-card { position: static; width: auto; margin: 10px 16px; }
  .hero__visual { padding: 30px 0; }
  .daily-menu__top { display: grid; }
  .menu-row { grid-template-columns: 48px 1fr; }
  .menu-row em { grid-column: 2; }
  .hours-list div { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand__text strong { font-size: 0.95rem; }
  .brand__text small { display: none; }
  .brand__mark { width: 42px; height: 42px; font-size: 1.45rem; }
  h1 { font-size: clamp(2.15rem, 11.5vw, 2.85rem); }
  .hero__actions .btn { width: 100%; }
  .daily-menu,
  .info-panel,
  .story-card,
  .values > div,
  .contact-card,
  .hours-card,
  .request-form,
  .offer-card { padding: 22px; border-radius: 8px; }
  .values > div { grid-template-columns: 1fr; }
}
