:root {
  --cream: #f7f0e5;
  --paper: #fffaf2;
  --white: #ffffff;
  --rust: #ae4729;
  --rust-dark: #762c20;
  --rust-deep: #4e1c17;
  --ink: #211e1b;
  --muted: #6f645c;
  --line: rgba(100, 65, 45, .18);
  --sage: #596451;
  --shadow: 0 18px 50px rgba(62, 31, 17, .12);
  --radius: 26px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--rust); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.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; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 999; padding: 10px 14px; border-radius: 8px; color: white; background: var(--rust-dark); transform: translateY(-140%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.open-strip { min-height: 38px; padding: 8px 18px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; text-align: center; color: white; background: var(--rust-dark); font-size: .9rem; letter-spacing: .01em; }
.open-dot { width: 9px; height: 9px; border-radius: 50%; background: #7fe28d; box-shadow: 0 0 0 5px rgba(127, 226, 141, .18); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 250, 242, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: 190px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); font-size: .94rem; font-weight: 700; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav a:not(.nav-call)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--rust); transition: right .2s ease; }
.site-nav a:not(.nav-call):hover::after, .site-nav a:not(.nav-call):focus-visible::after { right: 0; }
.nav-call { padding: 11px 16px; border-radius: 999px; color: white; background: var(--rust); }
.nav-call:hover { background: var(--rust-dark); }
.menu-toggle { display: none; width: 46px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--rust-dark); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: calc(100vh - 122px); min-height: 760px; display: grid; align-items: center; overflow: hidden; color: white; background: #24211e; }
.hero picture, .hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 48%; }
.hero-shade { background: linear-gradient(90deg, rgba(25, 17, 13, .82) 0%, rgba(35, 22, 15, .68) 42%, rgba(20, 14, 10, .16) 78%, rgba(20, 14, 10, .04) 100%), linear-gradient(0deg, rgba(20, 12, 8, .45), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 130px; }
.hero-content > * { max-width: 760px; }
.eyebrow { margin: 0 0 18px; color: var(--rust); font-size: .78rem; line-height: 1.2; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.eyebrow.light { color: #f6cfbe; }
h1, h2, h3 { margin: 0; font-family: var(--serif); line-height: 1.05; letter-spacing: -.025em; }
h1 { max-width: 820px !important; font-size: clamp(3.2rem, 7.7vw, 7.2rem); text-wrap: balance; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.6rem); text-wrap: balance; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0 0 1.1em; }
.hero-lede { margin-top: 26px; max-width: 720px !important; font-size: clamp(1.08rem, 1.8vw, 1.34rem); line-height: 1.6; color: rgba(255,255,255,.9); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .94rem; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--rust); box-shadow: 0 10px 26px rgba(92, 30, 18, .26); }
.button-primary:hover { background: #c25532; }
.button-glass { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.11); backdrop-filter: blur(8px); }
.button-glass:hover { background: rgba(255,255,255,.2); }
.button-cream { color: var(--rust-dark); background: var(--cream); }
.button-outline-light { color: white; border-color: rgba(255,255,255,.55); background: transparent; }
.button-outline-light:hover { color: var(--rust-dark); background: white; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--rust-dark); font-weight: 800; text-underline-offset: 4px; }

.hero-card { position: absolute; z-index: 3; right: max(20px, calc((100vw - 1180px) / 2)); bottom: 34px; width: min(380px, calc(100% - 40px)); display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.27); border-radius: 22px; background: rgba(31, 21, 16, .68); box-shadow: var(--shadow); backdrop-filter: blur(13px); }
.hero-card div { display: flex; flex-direction: column; }
.hero-card-label { margin-bottom: 4px; color: #f2c4ae; font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-card strong { font-size: 1.1rem; }
.hero-card span:last-child { color: rgba(255,255,255,.75); }
.hero-card a { white-space: nowrap; font-weight: 800; text-underline-offset: 4px; }

.quick-info { color: white; background: var(--rust-dark); }
.quick-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-item { min-height: 108px; display: flex; align-items: center; gap: 16px; padding: 24px 32px; border-right: 1px solid rgba(255,255,255,.18); }
.quick-item:last-child { border-right: 0; }
.quick-item svg { width: 30px; height: 30px; flex: 0 0 auto; fill: #f1c4ae; }
.quick-item div { display: flex; flex-direction: column; }
.quick-item span { color: #f0cfc0; font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.quick-item strong { font-size: 1rem; }
.quick-item a { text-decoration: none; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.intro-copy .lead { margin-top: 24px; color: var(--rust-dark); font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.45; }
.intro-copy p:not(.eyebrow):not(.lead) { color: var(--muted); font-size: 1.05rem; }
.dark-row { align-items: center; }
.image-frame { position: relative; margin: 0; }
.image-frame img { width: 100%; min-height: 590px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame::before { content: ""; position: absolute; z-index: -1; right: -18px; top: -18px; width: 68%; height: 72%; border-radius: var(--radius); background: #ecd7c8; }
.image-frame figcaption { position: absolute; left: 20px; bottom: 20px; padding: 11px 15px; border-radius: 12px; color: white; background: rgba(44, 27, 19, .78); font-size: .86rem; backdrop-filter: blur(8px); }

.offerings { color: white; background: var(--rust-deep); }
.centered { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.04rem; }
.offerings .section-heading > p:last-child { color: rgba(255,255,255,.7); }
.offerings .eyebrow { color: #e9ad93; }
.offering-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(390px, 1fr)); gap: 18px; }
.offering-card { position: relative; min-height: 390px; overflow: hidden; border-radius: 26px; background: #281813; }
.offering-large { grid-row: 1 / span 2; }
.offering-wide { grid-column: 2; }
.offering-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offering-card:hover img { transform: scale(1.025); }
.offering-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(25, 13, 9, .93) 0%, rgba(30, 16, 12, .3) 62%, transparent 100%); }
.offering-overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; }
.card-number { display: block; margin-bottom: 10px; color: #efb69d; font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.offering-overlay p { max-width: 620px; margin: 10px 0 0; color: rgba(255,255,255,.76); }
.offering-overlay a { display: inline-block; margin-top: 14px; color: white; font-weight: 800; text-underline-offset: 4px; }

.butcher-feature { background: #f1e4d5; }
.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(46px, 8vw, 100px); align-items: center; }
.split-images { position: relative; }
.split-main { width: 100%; max-height: 750px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-badge { position: absolute; right: -24px; bottom: 26px; width: min(270px, 72%); padding: 20px 22px; border-radius: 18px; color: white; background: var(--rust-dark); box-shadow: 0 14px 36px rgba(74, 32, 22, .25); }
.split-badge strong, .split-badge span { display: block; }
.split-badge strong { font-family: var(--serif); font-size: 1.55rem; }
.split-badge span { margin-top: 4px; color: rgba(255,255,255,.76); font-size: .9rem; }
.split-copy > p:not(.eyebrow):not(.small-note) { margin-top: 24px; color: var(--muted); font-size: 1.06rem; }
.check-list { margin: 28px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 34px; border-bottom: 1px solid rgba(94, 59, 41, .14); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--rust); font-size: .76rem; }
.small-note { color: var(--muted); font-size: .88rem; }
.small-note a { color: var(--rust-dark); font-weight: 800; }

.kitchen-section { overflow: hidden; color: white; background: var(--sage); }
.kitchen-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.kitchen-copy > p:not(.eyebrow) { margin-top: 24px; color: rgba(255,255,255,.78); font-size: 1.06rem; }
.kitchen-photo-stack { position: relative; min-height: 650px; }
.kitchen-large { position: absolute; top: 0; right: 0; width: 82%; height: 78%; object-fit: cover; border-radius: var(--radius); box-shadow: 0 22px 60px rgba(21, 29, 19, .28); }
.kitchen-small { position: absolute; left: 0; bottom: 0; width: 47%; height: 48%; object-fit: cover; border: 8px solid var(--sage); border-radius: 22px; box-shadow: 0 16px 44px rgba(21, 29, 19, .28); }

.gallery-section { background: var(--paper); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.gallery-heading > p { max-width: 470px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #ddd; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,14,9,.68), transparent 55%); }
.gallery-item span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; color: white; font-size: .92rem; font-weight: 800; text-align: left; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.press-section { background: #efe0d0; }
.press-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: stretch; }
.press-intro { padding-right: 28px; }
.press-intro p:last-child { margin-top: 22px; color: var(--muted); }
.press-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; text-decoration: none; background: rgba(255,255,255,.68); box-shadow: 0 12px 34px rgba(76,43,25,.07); transition: transform .2s ease, background .2s ease; }
.press-card:hover { transform: translateY(-4px); background: white; }
.press-card > span { margin-bottom: 20px; color: var(--rust); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.press-card h3 { margin-bottom: 30px; font-size: 1.55rem; line-height: 1.2; }
.press-card strong { margin-top: auto; color: var(--rust-dark); font-size: .9rem; }

.visit-section { padding: clamp(78px, 9vw, 128px) 0; color: white; background: var(--rust-dark); }
.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 7vw, 84px); align-items: stretch; }
.visit-lede { margin-top: 22px; color: rgba(255,255,255,.78); font-size: 1.15rem; }
.visit-copy address { margin: 28px 0; font-style: normal; font-size: 1.14rem; }
.visit-copy address strong { font-size: 1.45rem; }
.contact-links { display: grid; grid-template-columns: 1fr; gap: 10px; }
.contact-links a { display: flex; flex-direction: column; padding: 15px 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; text-decoration: none; background: rgba(255,255,255,.06); }
.contact-links span { color: #efc4b1; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; }
.hours-note { margin-top: 24px; color: rgba(255,255,255,.72); font-size: .9rem; }
.map-card { min-height: 570px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: white; box-shadow: 0 20px 60px rgba(50,12,8,.25); }
.map-card iframe { width: 100%; flex: 1; min-height: 490px; border: 0; }
.map-fallback { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding: 18px 22px; color: var(--ink); background: var(--cream); }
.map-fallback span { color: var(--muted); }

.site-footer { padding: 62px 0 0; color: #e9d7cb; background: #251713; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; padding-bottom: 48px; }
.footer-brand img { width: 260px; max-width: 100%; filter: brightness(1.2); }
.footer-brand p { margin-top: 12px; color: #c9aea0; }
.footer-heading { margin-bottom: 15px; color: white; font-family: var(--sans); font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; }
.site-footer p { color: #c9aea0; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #e9d7cb; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #a98d80; font-size: .82rem; }

.mobile-actions { display: none; }
.lightbox { width: min(1080px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: hidden; border: 0; border-radius: 20px; color: white; background: #160e0b; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(10, 7, 5, .88); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: calc(100vh - 120px); object-fit: contain; background: #100a08; }
.lightbox p { margin: 0; padding: 14px 54px 16px 18px; color: rgba(255,255,255,.8); }
.lightbox-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; background: rgba(20,10,6,.7); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.noscript { margin: 0; padding: 14px; text-align: center; color: white; background: #7c241f; }

:focus-visible { outline: 3px solid #f0a57f; outline-offset: 3px; }

@media (max-width: 1060px) {
  .site-nav { gap: 18px; }
  .offering-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .press-intro { grid-column: 1 / -1; max-width: 720px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 82px; }
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand { width: 154px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 110px 14px auto 14px; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 13px 12px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .nav-call { margin-top: 8px; text-align: center; }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(90deg, rgba(26,17,12,.84), rgba(26,17,12,.46)), linear-gradient(0deg, rgba(20,12,8,.5), transparent 55%); }
  .hero-content { padding-bottom: 190px; }
  .hero-card { left: 14px; right: 14px; bottom: 24px; width: auto; }
  .quick-info-grid { grid-template-columns: 1fr; }
  .quick-item { min-height: auto; padding: 20px 10px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .quick-item:last-child { border-bottom: 0; }
  .intro-grid, .split-feature, .kitchen-grid, .visit-grid { grid-template-columns: 1fr; }
  .image-frame img { min-height: 420px; }
  .offering-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .offering-card, .offering-large, .offering-wide { grid-column: auto; grid-row: auto; min-height: 480px; }
  .split-images { max-width: 650px; }
  .split-badge { right: 16px; }
  .kitchen-photo-stack { min-height: 590px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-intro { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  body { padding-bottom: 64px; }
  .open-strip { font-size: .79rem; }
  .open-strip span:last-child { display: none; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 57% 50%; }
  .hero-content { padding-top: 28px; padding-bottom: 205px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-card { display: block; }
  .hero-card a { display: inline-block; margin-top: 12px; }
  .section { padding: 72px 0; }
  .intro-copy .lead { font-size: 1.3rem; }
  .image-frame img { min-height: 320px; }
  .image-frame::before { right: -8px; top: -8px; }
  .offering-card, .offering-large, .offering-wide { min-height: 440px; }
  .offering-overlay { padding: 22px; }
  .split-badge { position: relative; right: auto; bottom: auto; width: calc(100% - 28px); margin: -52px auto 0; }
  .kitchen-photo-stack { min-height: 480px; }
  .kitchen-large { width: 92%; height: 74%; }
  .kitchen-small { width: 55%; height: 44%; border-width: 5px; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 18px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .map-card { min-height: 450px; }
  .map-card iframe { min-height: 380px; }
  .map-fallback { display: block; }
  .map-fallback span { display: block; margin-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; padding: 8px; gap: 8px; background: rgba(33, 22, 17, .96); border-top: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); }
  .mobile-actions a { display: grid; place-items: center; border-radius: 12px; color: white; text-decoration: none; font-weight: 800; }
  .mobile-actions a:first-child { background: var(--rust); }
  .mobile-actions a:last-child { border: 1px solid rgba(255,255,255,.35); }
}

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