:root {
  --paper: #f8f3e9;
  --white: #fffdf8;
  --ink: #211b16;
  --muted: #6f6358;
  --line: #d9cdbd;
  --burgundy: #7f2633;
  --burgundy-dark: #551721;
  --olive: #54643e;
  --brass: #b68b45;
  --shadow: 0 24px 70px rgba(56, 39, 24, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  overflow-wrap: anywhere;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(127, 38, 51, 0.06) 0 1px, transparent 1px 100%) 0 0 / 84px 84px,
    var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(33, 27, 22, 0.11);
  background: rgba(248, 243, 233, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--burgundy);
  background: rgba(127, 38, 51, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px) 32px;
}

.location-line,
.section-heading p,
.craft-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
}

h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: white;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--burgundy-dark);
  outline: none;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.7);
}

.hero-media {
  position: relative;
  height: min(68vh, 680px);
  min-height: 460px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 27, 22, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media > img,
.feature-image > img,
.craft-image > img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.media-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 253, 248, 0.92);
}

.media-note span,
.visit-strip span,
.product-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-note strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
}

.visit-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.visit-strip div {
  padding: 18px;
  background: var(--white);
}

.visit-strip strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(15px, 2vw, 19px);
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(26px, 5vw, 52px);
}

.section-heading.compact {
  margin-bottom: 28px;
}

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

.intro-grid article,
.product-card,
.menu-columns article,
.visit-details article {
  background: var(--white);
}

.intro-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.intro-grid p,
.product-card p,
.menu-columns p,
.craft-copy p,
.craft-copy dd,
.visit-details p,
.site-footer p {
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
}

.feature-image,
.craft-image {
  position: relative;
  margin: 0;
  height: 520px;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card span {
  color: var(--olive);
}

.menu-section {
  background: var(--ink);
  color: var(--white);
}

.menu-section .section-heading p {
  color: #e4b66a;
}

.menu-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
}

.menu-panel > img {
  min-height: 100%;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.18);
}

.menu-columns article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  background: #2b231d;
}

.menu-columns p {
  color: #d8cec2;
}

.menu-columns strong {
  color: #e4b66a;
  font-size: 18px;
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.craft-copy > p:not(:first-child) {
  max-width: 680px;
  font-size: 18px;
}

.craft-copy dl {
  display: grid;
  gap: 1px;
  max-width: 680px;
  margin: 30px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.craft-copy div {
  padding: 22px;
  background: var(--white);
}

.craft-copy dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.craft-copy dd {
  margin: 0;
}

.visit-section {
  background: #efe4d3;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(33, 27, 22, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(35deg, transparent 0 45%, rgba(127, 38, 51, 0.22) 45% 46%, transparent 46%),
    linear-gradient(118deg, transparent 0 38%, rgba(84, 100, 62, 0.2) 38% 39%, transparent 39%),
    radial-gradient(circle at 62% 52%, var(--burgundy) 0 9px, transparent 10px),
    #fbf7ef;
}

.map-card span,
.map-card strong {
  position: absolute;
  left: 28px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(33, 27, 22, 0.12);
}

.map-card span {
  top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-card strong {
  top: 51%;
  left: 48%;
  translate: -15% -50%;
  color: var(--burgundy);
}

.map-card i {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(33, 27, 22, 0.12);
  border-radius: 50%;
}

.visit-details {
  display: grid;
  gap: 14px;
  align-content: start;
}

.visit-details article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(33, 27, 22, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero,
  .product-layout,
  .menu-panel,
  .craft-section,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .feature-image,
  .craft-image,
  .map-card {
    height: 420px;
    min-height: 0;
  }

  .visit-strip,
  .intro-grid,
  .menu-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 70px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(31px, 10vw, 43px);
    line-height: 1.03;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 148px;
    padding-inline: 14px;
  }

  .visit-strip,
  .intro-grid,
  .menu-columns {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .feature-image,
  .craft-image,
  .map-card {
    height: 330px;
  }

  .media-note {
    position: static;
    width: auto;
    border-left: 0;
    border-top: 4px solid var(--brass);
  }

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

/* Shared Google Maps fix: replace decorative map sketches with real embedded maps. */
.google-map-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.google-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.google-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.google-map-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.google-map-copy p:not(.google-map-kicker) {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.google-map-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.google-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: #e6ebef;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
}

.map-sketch,
.mini-map,
.map-card:not(.google-map-card),
.map-panel:not(.google-map-panel),
.map[aria-label*="map" i] {
  display: none !important;
}

@media (max-width: 760px) {
  .google-map-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 560px);
    margin: 36px auto;
  }

  .google-map-frame {
    min-height: 300px;
  }
}

/* Shared real menu fix: menu category buttons now reveal actual menu items. */
.real-menu-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.real-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.real-menu-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.real-menu-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.real-menu-head p:not(.real-menu-kicker) {
  max-width: 540px;
  margin: 0;
  line-height: 1.55;
  opacity: 0.82;
}

.real-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.real-menu-tab {
  min-height: 42px;
  border: 1px solid rgba(25, 25, 25, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.real-menu-tab[aria-selected="true"] {
  background: #151515;
  color: #fff;
  border-color: #151515;
}

.real-menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.real-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.real-menu-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.real-menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.45;
  opacity: 0.78;
}

.real-menu-price {
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .real-menu-section {
    width: min(100% - 24px, 560px);
    margin: 36px auto;
    padding: 18px;
  }

  .real-menu-head {
    display: grid;
    align-items: start;
  }

  .real-menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-menu-tab {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }

  .real-menu-panel {
    grid-template-columns: 1fr;
  }
}
