:root {
  --ink: #12100f;
  --charcoal: #1c1917;
  --charcoal-2: #25211e;
  --paper: #f3eddf;
  --bone: #fffaf0;
  --paprika: #e64822;
  --rust: #a92c17;
  --sand: #c7a86a;
  --muted: #736c63;
  --muted-dark: #aaa197;
  --line: rgba(18, 16, 15, .14);
  --line-dark: rgba(255, 250, 240, .14);
  --success: #2f7854;
  --danger: #b52e28;
  --shadow: 0 22px 60px rgba(18, 16, 15, .18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1240px;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --display: "Arial Narrow", "Roboto Condensed", "Arial Black", Arial, sans-serif;
  --sans: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--paprika); color: var(--bone); }

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 9999;
  transform: translateY(-180%); background: var(--bone); color: var(--ink);
  padding: .7rem 1rem; border: 2px solid var(--ink); font-weight: 800;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark { background: var(--ink); color: var(--bone); }
.section--charcoal { background: var(--charcoal); color: var(--bone); }
.section--bone { background: var(--bone); }
.section--paprika { background: var(--paprika); color: var(--bone); }

.demo-bar {
  min-height: 34px; background: var(--paprika); color: var(--bone); display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18); font-size: .76rem; font-weight: 800; letter-spacing: .05em;
}
.demo-bar__inner { display: flex; gap: .8rem; align-items: center; justify-content: center; text-align: center; padding: .35rem 0; }
.demo-pill { border: 1px solid currentColor; padding: .1rem .38rem; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(18,16,15,.94); color: var(--bone);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-dark);
}
.nav-shell { height: 76px; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img { width: 35px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font: 900 1.15rem/1 var(--display); text-transform: uppercase; letter-spacing: .1em; }
.brand__meta { margin-top: .23rem; color: var(--sand); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.site-nav a { text-decoration: none; font-size: .86rem; font-weight: 700; color: #dcd5ca; padding: .68rem .78rem; border-radius: 6px; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--bone); background: rgba(255,255,255,.07); }
.nav-actions { display: flex; gap: .55rem; align-items: center; }
.cart-button { position: relative; }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 .3rem; border-radius: 999px; background: var(--bone); color: var(--ink);
  display: inline-grid; place-items: center; font-size: .68rem; font-weight: 900; margin-left: .25rem;
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-dark); background: transparent; color: var(--bone); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: currentColor; margin: 5px auto; transition: .2s ease; }

.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .72rem 1rem; border: 1px solid transparent; border-radius: var(--radius-sm); text-decoration: none;
  font-weight: 850; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--paprika); color: var(--bone); border-color: var(--paprika); }
.btn--primary:hover, .btn--primary:focus-visible { background: #f0502b; }
.btn--light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost { background: transparent; color: currentColor; border-color: var(--line-dark); }
.btn--ink { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--small { min-height: 38px; padding: .5rem .75rem; font-size: .82rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.icon-button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; cursor: pointer; border-radius: var(--radius-sm); }
.section--dark .icon-button, .modal--dark .icon-button { border-color: var(--line-dark); color: var(--bone); }

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin: 0 0 .9rem; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 900; color: var(--paprika); }
.eyebrow::before { content: ""; width: 24px; height: 3px; background: currentColor; }
.section--dark .eyebrow, .section--charcoal .eyebrow { color: var(--sand); }
.display-title, h1, h2, h3 { text-wrap: balance; }
.display-title {
  font: 900 clamp(3.5rem, 8.7vw, 8.5rem)/.82 var(--display); letter-spacing: -.055em; text-transform: uppercase; margin: 0;
}
.section-title { font: 900 clamp(2.35rem, 5vw, 4.8rem)/.9 var(--display); letter-spacing: -.04em; text-transform: uppercase; margin: 0; }
.section-intro { max-width: 640px; font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--muted); margin: 1rem 0 0; }
.section--dark .section-intro, .section--charcoal .section-intro { color: var(--muted-dark); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-heading__copy { max-width: 760px; }
.kicker-note { font-size: .78rem; color: var(--muted); max-width: 280px; }

.hero { position: relative; min-height: min(810px, calc(100svh - 110px)); background: var(--ink); color: var(--bone); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: url('../assets/brand/pattern.svg'); opacity: .64; background-size: 160px; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); min-height: inherit; align-items: center; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(3rem, 8vw, 6.5rem); }
.hero__copy { z-index: 1; max-width: 670px; }
.hero__title-accent { color: var(--paprika); display: block; }
.hero__lead { max-width: 590px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #c9c1b7; margin: 1.5rem 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin: 2rem 0 0; padding: 0; list-style: none; color: #bfb6ab; font-size: .83rem; }
.hero__proof li { display: flex; gap: .5rem; align-items: center; }
.hero__proof li::before { content: ""; width: 7px; height: 7px; background: var(--sand); transform: rotate(45deg); }
.hero__visual { position: relative; min-height: 570px; align-self: stretch; display: grid; place-items: center; }
.hero__image-frame { position: absolute; width: min(700px, 52vw); aspect-ratio: 4/3; right: -9vw; top: 50%; transform: translateY(-50%) rotate(2deg); overflow: hidden; background: var(--charcoal); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); }
.hero__image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); pointer-events: none; }
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__label { position: absolute; left: 2rem; bottom: 2rem; z-index: 2; background: var(--bone); color: var(--ink); padding: .85rem 1rem; box-shadow: var(--shadow); max-width: 250px; }
.hero__label strong { display: block; font: 900 1.15rem/1 var(--display); text-transform: uppercase; }
.hero__label small { display: block; margin-top: .3rem; color: var(--muted); }
.hero__sticker { position: absolute; top: 12%; left: 3%; width: 110px; aspect-ratio: 1; border-radius: 50%; background: var(--paprika); display: grid; place-items: center; text-align: center; transform: rotate(-12deg); font: 900 1.1rem/.9 var(--display); text-transform: uppercase; z-index: 3; box-shadow: 0 16px 38px rgba(0,0,0,.24); }

.ticker { overflow: hidden; background: var(--bone); border-block: 1px solid var(--line); }
.ticker__track { width: max-content; display: flex; gap: 2rem; padding: .95rem 0; animation: ticker 26s linear infinite; font: 900 .83rem/1 var(--display); text-transform: uppercase; letter-spacing: .12em; }
.ticker__track span { display: inline-flex; gap: 2rem; align-items: center; }
.ticker__track span::after { content: "◆"; color: var(--paprika); font-size: .62rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.luxury-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: minmax(240px, auto); gap: 1rem; }
.product-feature { position: relative; overflow: hidden; min-height: 330px; background: var(--charcoal); color: var(--bone); border: 1px solid var(--line-dark); cursor: pointer; }
.product-feature:first-child { grid-row: span 2; min-height: 680px; }
.product-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-feature:hover img, .product-feature:focus-within img { transform: scale(1.025); }
.product-feature__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,.88), rgba(10,9,8,.04) 62%); }
.product-feature__content { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 2; }
.product-feature__name { margin: 0; font: 900 clamp(1.65rem, 3vw, 3.4rem)/.9 var(--display); text-transform: uppercase; letter-spacing: -.025em; }
.product-feature:not(:first-child) .product-feature__name { font-size: clamp(1.3rem, 2vw, 2rem); }
.product-feature__price { display: inline-block; margin-top: .55rem; color: var(--sand); font-weight: 900; font-variant-numeric: tabular-nums; }
.product-feature__meta { margin-top: .4rem; font-size: .78rem; color: #c8beb3; max-width: 450px; }
.media-badge { position: absolute; top: .8rem; left: .8rem; z-index: 3; background: rgba(18,16,15,.88); color: var(--bone); border: 1px solid var(--line-dark); padding: .35rem .5rem; font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.menu-architecture { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.arch-card { padding: clamp(1.6rem, 4vw, 3.4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 320px; display: flex; flex-direction: column; }
.arch-card__number { color: var(--paprika); font: 900 4rem/1 var(--display); opacity: .95; }
.arch-card h3 { font: 900 2.1rem/.95 var(--display); text-transform: uppercase; margin: auto 0 .8rem; }
.arch-card p { color: var(--muted); margin: 0 0 1.2rem; }
.arch-card a { font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.branch-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); }
.branch-mini { padding: 1.5rem; border-right: 1px solid var(--line-dark); min-height: 190px; display: flex; flex-direction: column; }
.branch-mini:last-child { border-right: 0; }
.branch-mini__place { font: 900 1.5rem/1 var(--display); text-transform: uppercase; }
.branch-mini__phone { margin-top: .55rem; color: var(--sand); text-decoration: none; font-weight: 850; }
.branch-mini__actions { margin-top: auto; padding-top: 1.4rem; display: flex; gap: .55rem; flex-wrap: wrap; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 280px 280px; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; background: var(--charcoal); border: 0; padding: 0; cursor: zoom-in; color: var(--bone); text-align: left; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.03); }
.gallery-item__caption { position: absolute; inset: auto .9rem .9rem .9rem; background: rgba(18,16,15,.82); padding: .6rem .7rem; font-size: .72rem; }

.split-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.story-points { display: grid; gap: 0; border-top: 1px solid var(--line); }
.story-point { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.story-point__num { font: 900 1.5rem/1 var(--display); color: var(--paprika); }
.story-point h3 { margin: 0 0 .35rem; font: 900 1.15rem/1 var(--display); text-transform: uppercase; }
.story-point p { margin: 0; color: var(--muted); }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 1rem; text-align: left; background: transparent; border: 0; padding: 1.4rem 0; cursor: pointer; font-weight: 850; }
.faq-question::after { content: "+"; font-size: 1.4rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 0 1.4rem; max-width: 760px; color: var(--muted); }
.faq-answer.is-open { display: block; }

.cta-panel { background: var(--paprika); color: var(--bone); padding: clamp(2rem, 6vw, 5.5rem); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.cta-panel h2 { margin: 0; max-width: 800px; font: 900 clamp(2.5rem, 6vw, 6rem)/.85 var(--display); text-transform: uppercase; letter-spacing: -.04em; }
.cta-panel p { max-width: 600px; margin: 1rem 0 0; color: rgba(255,255,255,.82); }

.page-hero { background: var(--ink); color: var(--bone); padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.07); transform: rotate(45deg); right: -120px; top: -220px; }
.page-hero__grid { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 2rem; position: relative; z-index: 1; }
.page-hero h1 { margin: 0; font: 900 clamp(3.4rem, 8vw, 7.6rem)/.84 var(--display); text-transform: uppercase; letter-spacing: -.05em; }
.page-hero p { color: #bfb6ab; max-width: 550px; margin: 1rem 0 0; }
.page-hero__note { border-left: 3px solid var(--paprika); padding-left: 1rem; color: #bfb6ab; font-size: .82rem; max-width: 340px; justify-self: end; }

.menu-toolbar { position: sticky; top: 76px; z-index: 120; background: rgba(243,237,223,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.menu-toolbar__inner { display: grid; grid-template-columns: minmax(240px, 1fr) 2fr; gap: 1rem; align-items: center; min-height: 82px; }
.search-box { position: relative; }
.search-box input { width: 100%; height: 46px; border: 1px solid var(--line); background: var(--bone); color: var(--ink); padding: 0 1rem 0 2.7rem; border-radius: var(--radius-sm); outline: none; }
.search-box input:focus { border-color: var(--paprika); box-shadow: 0 0 0 3px rgba(230,72,34,.13); }
.search-box::before { content: "⌕"; position: absolute; left: .9rem; top: 50%; transform: translateY(-54%); font-size: 1.35rem; color: var(--muted); }
.filter-row { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding: .2rem; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip { flex: none; min-height: 38px; border: 1px solid var(--line); background: transparent; padding: .45rem .75rem; border-radius: 999px; font-size: .8rem; font-weight: 850; cursor: pointer; }
.filter-chip[aria-pressed="true"], .filter-chip:hover, .filter-chip:focus-visible { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.menu-results-meta { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 1.3rem; color: var(--muted); font-size: .82rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.15rem; }
.product-card { background: var(--bone); border: 1px solid var(--line); min-width: 0; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18,16,15,.09); }
.product-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #d9d1c3; cursor: pointer; border: 0; padding: 0; width: 100%; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__badge { position: absolute; top: .7rem; left: .7rem; background: var(--paprika); color: var(--bone); font-size: .62rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; padding: .35rem .45rem; }
.product-card__visual-status { position: absolute; right: .7rem; bottom: .7rem; background: rgba(18,16,15,.82); color: var(--bone); font-size: .58rem; font-weight: 800; padding: .3rem .4rem; }
.product-card__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.product-card__category { color: var(--paprika); font-size: .65rem; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }
.product-card h3 { margin: .35rem 0 .5rem; font: 900 1.34rem/1.02 var(--display); text-transform: uppercase; }
.product-card__desc { margin: 0 0 1rem; color: var(--muted); font-size: .84rem; flex: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.price { font-weight: 900; font-variant-numeric: tabular-nums; white-space: nowrap; }
.empty-state { grid-column: 1/-1; border: 1px dashed var(--line); padding: 3rem; text-align: center; color: var(--muted); }

.notice { border-left: 4px solid var(--sand); background: var(--bone); padding: 1rem 1.15rem; font-size: .82rem; color: var(--muted); }
.notice strong { color: var(--ink); }
.notice--dark { background: var(--charcoal-2); border-color: var(--paprika); color: #bbb1a6; }
.notice--dark strong { color: var(--bone); }

.locations-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.location-card { background: var(--bone); border: 1px solid var(--line); padding: clamp(1.3rem, 3vw, 2rem); display: flex; flex-direction: column; min-height: 330px; }
.location-card__top { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.location-card__index { width: 44px; height: 44px; display: grid; place-items: center; background: var(--ink); color: var(--bone); font: 900 1rem/1 var(--display); }
.location-card h2 { margin: 1.6rem 0 .4rem; font: 900 2rem/.95 var(--display); text-transform: uppercase; }
.location-card__phone { color: var(--paprika); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.location-card dl { display: grid; grid-template-columns: 100px 1fr; gap: .5rem .8rem; margin: 1.4rem 0 0; font-size: .83rem; }
.location-card dt { color: var(--muted); }
.location-card dd { margin: 0; font-weight: 700; }
.location-card__actions { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: auto; padding-top: 1.5rem; }
.status-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-tag::before { content: ""; width: 7px; height: 7px; background: var(--success); border-radius: 50%; }
.status-tag--warn::before { background: var(--sand); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.big-fact { font: 900 clamp(5rem, 12vw, 11rem)/.75 var(--display); color: var(--paprika); letter-spacing: -.08em; }
.fact-label { display: block; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-top: .75rem; }
.prose { max-width: 720px; }
.prose h2 { font: 900 2rem/1 var(--display); text-transform: uppercase; margin: 2.3rem 0 .8rem; }
.prose p { color: var(--muted); }
.fact-list { list-style: none; padding: 0; margin: 2rem 0; border-top: 1px solid var(--line); }
.fact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 1rem; }
.fact-list strong { font-weight: 900; }
.fact-list span { color: var(--muted); text-align: right; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); }
.contact-list { display: grid; border-top: 1px solid var(--line); margin-top: 2rem; }
.contact-row { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; }
.contact-row a { font-weight: 850; }
.form-card { background: var(--bone); border: 1px solid var(--line); padding: clamp(1.4rem, 4vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1/-1; }
.field label { font-size: .78rem; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); background: #fffdf8; color: var(--ink); padding: .78rem .85rem; border-radius: var(--radius-sm); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--paprika); box-shadow: 0 0 0 3px rgba(230,72,34,.12); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); min-height: 1em; font-size: .7rem; }
.form-note { color: var(--muted); font-size: .72rem; margin: 1rem 0; }
.form-success { display: none; background: #e5f2ea; border-left: 4px solid var(--success); padding: .9rem; margin-top: 1rem; font-size: .82rem; }
.form-success.is-visible { display: block; }

.site-footer { background: #0e0c0b; color: var(--bone); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 2rem; }
.footer-brand p { color: #91877d; max-width: 430px; font-size: .84rem; }
.footer-title { font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; color: var(--sand); font-weight: 900; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: #cbc1b7; text-decoration: none; font-size: .84rem; }
.footer-links a:hover { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
.footer-disclosure { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 1rem; color: #81776e; font-size: .7rem; }

.overlay { position: fixed; inset: 0; background: rgba(7,6,5,.72); z-index: 900; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; z-index: 910; top: 0; right: 0; width: min(440px, 100%); height: 100dvh; background: var(--bone); transform: translateX(102%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: -24px 0 60px rgba(0,0,0,.24); }
.drawer.is-open { transform: none; }
.drawer__head { min-height: 76px; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.drawer__head h2 { margin: 0; font: 900 1.5rem/1 var(--display); text-transform: uppercase; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.2rem; }
.drawer__foot { border-top: 1px solid var(--line); padding: 1rem 1.2rem; background: #fbf7ee; }
.cart-empty { color: var(--muted); text-align: center; padding: 3rem 1rem; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; background: #ddd3c3; }
.cart-item h3 { margin: 0; font: 900 1rem/1 var(--display); text-transform: uppercase; }
.cart-item p { margin: .25rem 0; font-size: .69rem; color: var(--muted); }
.cart-item__price { font-size: .8rem; font-weight: 900; }
.cart-item__remove { border: 0; background: transparent; color: var(--danger); cursor: pointer; padding: .2rem; font-size: .72rem; text-decoration: underline; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); margin-top: .45rem; }
.qty button { width: 32px; height: 30px; border: 0; background: transparent; cursor: pointer; }
.qty span { min-width: 26px; text-align: center; font-size: .76rem; font-weight: 900; }
.cart-summary { display: grid; gap: .5rem; margin-bottom: .8rem; }
.cart-summary__row { display: flex; justify-content: space-between; gap: 1rem; }
.cart-summary__row strong { font-size: 1.08rem; }
.demo-inline { color: var(--muted); font-size: .68rem; margin: .55rem 0 1rem; }

.modal { position: fixed; z-index: 930; inset: 50% auto auto 50%; width: min(720px, calc(100% - 2rem)); max-height: min(88dvh, 840px); overflow-y: auto; background: var(--bone); transform: translate(-50%, -48%) scale(.98); opacity: 0; visibility: hidden; box-shadow: var(--shadow); transition: .2s ease; }
.modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal--wide { width: min(960px, calc(100% - 2rem)); }
.modal__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,250,240,.96); backdrop-filter: blur(10px); z-index: 2; }
.modal__head h2 { margin: 0; font: 900 1.35rem/1 var(--display); text-transform: uppercase; }
.modal__body { padding: 1.2rem; }
.product-modal-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; }
.product-modal-media { min-height: 330px; background: #ded5c8; }
.product-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-copy h2 { margin: .4rem 0 .7rem; font: 900 clamp(2rem, 5vw, 3.2rem)/.9 var(--display); text-transform: uppercase; }
.product-modal-copy p { color: var(--muted); }
.product-modal-price { font-size: 1.4rem; font-weight: 900; color: var(--paprika); }
.product-source-note { font-size: .68rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: .8rem; margin-top: 1rem; }
.modal-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }

.checkout-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 1.5rem; }
.checkout-summary { background: #f2ecdf; padding: 1rem; align-self: start; }
.checkout-summary h3 { margin-top: 0; font: 900 1.1rem/1 var(--display); text-transform: uppercase; }
.radio-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.radio-tab input { position: absolute; opacity: 0; }
.radio-tab span { display: block; border: 1px solid var(--line); padding: .7rem; text-align: center; font-weight: 800; cursor: pointer; }
.radio-tab input:checked + span { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.toast-region { position: fixed; z-index: 1200; right: 1rem; bottom: 1rem; display: grid; gap: .5rem; width: min(360px, calc(100% - 2rem)); pointer-events: none; }
.toast { background: var(--ink); color: var(--bone); border-left: 4px solid var(--paprika); padding: .85rem 1rem; box-shadow: var(--shadow); font-size: .8rem; animation: toastIn .2s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } }

.lightbox { position: fixed; inset: 0; z-index: 980; display: grid; place-items: center; background: rgba(7,6,5,.92); opacity: 0; visibility: hidden; transition: .2s ease; padding: 1rem; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__inner { max-width: 1100px; width: 100%; max-height: 90vh; position: relative; }
.lightbox img { max-height: 82vh; width: 100%; object-fit: contain; }
.lightbox__caption { color: var(--bone); margin-top: .6rem; font-size: .75rem; }
.lightbox__close { position: absolute; right: 0; top: -52px; color: var(--bone); border-color: var(--line-dark); }

.back-to-top { position: fixed; z-index: 300; right: 1rem; bottom: 1rem; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--bone); box-shadow: 0 8px 24px rgba(18,16,15,.12); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
body:has(.toast-region .toast) .back-to-top { bottom: 5rem; }

.reveal { transition: opacity .55s ease, transform .55s ease; }
.reveal.reveal-pending { opacity: 0; transform: translateY(18px); }
.reveal.reveal-pending.is-visible { opacity: 1; transform: none; }

/* Admin */
.admin-shell { min-height: 100vh; background: #11100f; color: var(--bone); }
.admin-header { border-bottom: 1px solid var(--line-dark); background: #151311; position: sticky; top: 0; z-index: 20; }
.admin-header__inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.demo-data-chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--paprika); padding: .32rem .5rem; font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-main { padding: 2.5rem 0 5rem; }
.admin-intro { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.admin-intro h1 { margin: 0; font: 900 clamp(2.4rem, 5vw, 4rem)/.9 var(--display); text-transform: uppercase; }
.admin-intro p { color: var(--muted-dark); max-width: 520px; margin: .7rem 0 0; }
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.metric { background: #1d1a18; border: 1px solid var(--line-dark); padding: 1.2rem; }
.metric__label { color: var(--muted-dark); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.metric__value { margin-top: .65rem; font: 900 2.3rem/1 var(--display); }
.metric__note { margin-top: .4rem; color: var(--sand); font-size: .68rem; }
.admin-columns { display: grid; grid-template-columns: 1.3fr .7fr; gap: .8rem; margin-top: .8rem; }
.admin-panel { background: #1d1a18; border: 1px solid var(--line-dark); padding: 1.2rem; }
.admin-panel h2 { margin: 0 0 1.2rem; font: 900 1.15rem/1 var(--display); text-transform: uppercase; }
.bar-chart { height: 250px; display: flex; align-items: end; gap: .65rem; border-bottom: 1px solid var(--line-dark); padding: 1rem 0 0; }
.bar { flex: 1; background: var(--paprika); min-height: 10px; position: relative; }
.bar span { position: absolute; bottom: -2.1rem; left: 50%; transform: translateX(-50%); color: var(--muted-dark); font-size: .62rem; }
.demo-table { width: 100%; border-collapse: collapse; font-size: .78rem; }
.demo-table th, .demo-table td { padding: .75rem .4rem; border-bottom: 1px solid var(--line-dark); text-align: left; }
.demo-table th { color: var(--muted-dark); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.demo-table .status { color: var(--sand); font-weight: 900; }
.availability-list { display: grid; gap: .6rem; }
.availability-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line-dark); padding-bottom: .6rem; }
.fake-toggle { width: 42px; height: 23px; border-radius: 999px; background: #4f493f; position: relative; border: 0; cursor: pointer; }
.fake-toggle::after { content: ""; width: 17px; height: 17px; border-radius: 50%; background: var(--bone); position: absolute; top: 3px; left: 3px; transition: .2s ease; }
.fake-toggle[aria-pressed="true"] { background: var(--success); }
.fake-toggle[aria-pressed="true"]::after { left: 22px; }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-actions .account-label { display: none; }
  .hero__grid { grid-template-columns: 1fr .9fr; }
  .hero__image-frame { width: 58vw; }
  .luxury-grid { grid-template-columns: 1.1fr .9fr; }
  .product-feature:first-child { grid-row: span 2; }
  .product-feature:nth-child(4) { grid-column: 2; }
  .branch-strip { grid-template-columns: repeat(2,1fr); }
  .branch-mini:nth-child(2) { border-right: 0; }
  .branch-mini:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-grid > :last-child { grid-column: 1/-1; }
  .admin-grid { grid-template-columns: repeat(2,1fr); }
}

.mobile-nav { position: fixed; z-index: 920; inset: 0 0 0 auto; width: min(390px, 100%); background: var(--ink); color: var(--bone); transform: translateX(102%); transition: transform .25s ease; padding: 1rem; display: flex; flex-direction: column; }
.mobile-nav.is-open { transform: none; }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; min-height: 58px; }
.mobile-nav__links { display: grid; margin-top: 2rem; }
.mobile-nav__links a { font: 900 clamp(2rem, 8vw, 3rem)/1 var(--display); text-transform: uppercase; text-decoration: none; padding: .6rem 0; border-bottom: 1px solid var(--line-dark); }
.mobile-nav__actions { display: grid; gap: .7rem; margin-top: auto; }
.mobile-nav__fineprint { color: var(--muted-dark); font-size: .68rem; margin-top: 1rem; }

@media (max-width: 820px) {
  .container { width: min(calc(100% - 1.4rem), var(--container)); }
  .nav-shell { height: 68px; }
  .brand__meta { display: none; }
  .nav-actions .btn--account { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 3.6rem 2rem; }
  .hero__copy { max-width: 100%; }
  .hero__visual { min-height: 430px; order: 2; }
  .hero__image-frame { width: calc(100% + 1.4rem); right: -.7rem; top: 50%; height: 390px; aspect-ratio: auto; }
  .hero__sticker { width: 86px; left: 0; }
  .hero__label { left: .7rem; bottom: .5rem; }
  .section-heading { display: block; }
  .kicker-note { margin-top: 1rem; }
  .luxury-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .product-feature:first-child { grid-column: 1/-1; grid-row: auto; min-height: 420px; }
  .product-feature:nth-child(4) { grid-column: auto; }
  .menu-architecture { grid-template-columns: 1fr; }
  .arch-card { min-height: 245px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery-item:first-child { grid-column: 1/-1; grid-row: auto; }
  .split-story, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-panel { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__note { justify-self: start; margin-top: 1rem; }
  .menu-toolbar { top: 68px; }
  .menu-toolbar__inner { grid-template-columns: 1fr; padding: .7rem 0; gap: .55rem; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1/-1; }
  .product-modal-grid, .checkout-grid { grid-template-columns: 1fr; }
  .product-modal-media { min-height: 280px; max-height: 380px; }
  .admin-columns { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .demo-bar__inner { align-items: flex-start; }
  .demo-pill { margin-top: .08rem; }
  .brand img { width: 31px; height: 35px; }
  .nav-actions .btn { padding-inline: .7rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__proof { display: grid; gap: .55rem; }
  .hero__visual { min-height: 355px; }
  .hero__image-frame { height: 330px; }
  .hero__label { max-width: 210px; }
  .luxury-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .product-feature:first-child { min-height: 420px; }
  .branch-strip { grid-template-columns: 1fr; }
  .branch-mini, .branch-mini:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .branch-mini:last-child { border-bottom: 0; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .gallery-item:first-child { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__media { aspect-ratio: 16/10; }
  .menu-results-meta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: auto; }
  .footer-disclosure { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .location-card dl { grid-template-columns: 1fr; gap: .1rem; }
  .location-card dd { margin-bottom: .6rem; }
  .modal { width: 100%; max-height: 92dvh; inset: auto 0 0 0; transform: translateY(102%); }
  .modal.is-open { transform: none; }
  .product-modal-media { min-height: 230px; }
  .drawer { width: 100%; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-intro { display: block; }
  .admin-intro .btn { margin-top: 1rem; }
}

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

:focus-visible { outline: 3px solid var(--sand); outline-offset: 3px; }
