:root {
  --cream: #fff6e8;
  --paper: #f8ead6;
  --wine: #4b1f1a;
  --wine-dark: #2c1210;
  --olive: #6f6f3f;
  --gold: #c69c58;
  --ink: #251b16;
  --muted: #78675a;
  --shadow: 0 20px 60px rgba(44, 18, 16, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 156, 88, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--cream), #f6e0bf 100%);
  line-height: 1.6;
}

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--wine);
  z-index: 10;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(44, 18, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 246, 232, 0.14);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 156, 88, 0.75);
  border-radius: 50%;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
}

.brand strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.brand small {
  display: block;
  color: rgba(255, 246, 232, 0.78);
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255, 246, 232, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-menu a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid rgba(198, 156, 88, 0.7);
  border-radius: 999px;
  padding: 10px 16px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(rgba(44,18,16,0.25), rgba(44,18,16,0.84)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%234b1f1a'/%3E%3Cstop offset='.5' stop-color='%237a3328'/%3E%3Cstop offset='1' stop-color='%232c1210'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg opacity='.16' fill='%23fff6e8'%3E%3Ccircle cx='230' cy='160' r='90'/%3E%3Ccircle cx='1310' cy='190' r='130'/%3E%3Ccircle cx='1020' cy='700' r='160'/%3E%3C/g%3E%3Cg opacity='.18' stroke='%23c69c58' stroke-width='3' fill='none'%3E%3Cpath d='M0 690 C260 610 390 760 620 680 S980 500 1260 620 1600 590 1600 590'/%3E%3Cpath d='M0 780 C220 710 390 850 630 760 S1000 630 1260 730 1600 700 1600 700'/%3E%3C/g%3E%3C/svg%3E") center/cover;
}

.hero-content {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Cinzel, Georgia, serif;
  line-height: 1.1;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.6rem);
  letter-spacing: 0.02em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 246, 232, 0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--wine-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 246, 232, 0.55);
  color: var(--cream);
}

.button.full { width: 100%; }

.intro-panel {
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

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

.highlights article,
.menu-card,
.wine-card,
.hours-card,
.info-box,
.photo-card {
  background: rgba(255, 246, 232, 0.82);
  border: 1px solid rgba(75, 31, 26, 0.12);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.highlights article {
  padding: 28px;
}

.highlights span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.highlights h2 {
  font-size: 1.35rem;
  margin-top: 10px;
}

.highlights p,
.section p {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.photo-card {
  min-height: 450px;
  padding: 22px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(rgba(44,18,16,0.1), rgba(44,18,16,0.65)),
    repeating-linear-gradient(135deg, #5a2b22, #5a2b22 18px, #6f372b 18px, #6f372b 36px);
  color: var(--cream);
  overflow: hidden;
}

.photo-card-inner {
  border: 1px solid rgba(255, 246, 232, 0.3);
  border-radius: 18px;
  padding: 24px;
  background: rgba(44, 18, 16, 0.45);
  backdrop-filter: blur(8px);
}

.photo-card p {
  color: rgba(255, 246, 232, 0.82);
  margin: 0 0 4px;
}

.photo-card strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.6rem;
}

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

.menu {
  background: rgba(75, 31, 26, 0.06);
}

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

.menu-card {
  padding: 30px;
}

.menu-card.featured {
  background: var(--wine);
  color: var(--cream);
}

.menu-card.featured em {
  color: rgba(255, 246, 232, 0.72);
}

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

.menu-card li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(75, 31, 26, 0.13);
}

.menu-card.featured li {
  border-bottom-color: rgba(255, 246, 232, 0.16);
}

.menu-card span {
  display: block;
  font-weight: 800;
}

.menu-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
}

.wine {
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 156, 88, 0.28), transparent 24rem),
    var(--wine-dark);
  color: var(--cream);
}

.wine p { color: rgba(255, 246, 232, 0.78); }

.wine-card,
.hours-card {
  padding: 36px;
  background: rgba(255, 246, 232, 0.08);
  border-color: rgba(255, 246, 232, 0.16);
  color: var(--cream);
}

.wine-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.wine-list span {
  border: 1px solid rgba(198, 156, 88, 0.65);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
}

.hours-card small {
  display: block;
  color: rgba(255, 246, 232, 0.58);
  margin-top: 14px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.address {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine) !important;
}

.info-box {
  padding: 30px;
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(75, 31, 26, 0.12);
  padding: 10px 0;
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--wine-dark);
  color: rgba(255, 246, 232, 0.78);
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-content a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: absolute;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--wine-dark);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open { display: flex; }

  .nav-menu a { padding: 8px 0; }

  .highlights,
  .menu-grid,
  .split,
  .split.reverse,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 640px; }

  .intro-panel { margin-top: -40px; }

  .section { padding: 70px 0; }

  .photo-card { min-height: 340px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }

  .hero-actions,
  .footer-content {
    flex-direction: column;
  }

  .button { width: 100%; }

  .hours div {
    display: block;
  }

  .hours dd {
    text-align: left;
    margin-top: 2px;
  }
}
