:root {
  --teal-950: #0b2929;
  --teal-900: #123a39;
  --teal-700: #2f6762;
  --teal-100: #dfeae6;
  --cream: #f8f3ea;
  --paper: #fffdf9;
  --ink: #182322;
  --muted: #63706e;
  --line: rgba(18, 58, 57, 0.14);
  --accent: #c98556;
  --accent-dark: #87502f;
  --danger: #a34242;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 12px 34px rgba(14, 42, 41, 0.09);
  --shadow-raised: 0 22px 60px rgba(14, 42, 41, 0.17);
  --container: min(1180px, calc(100% - 40px));
  --header-height: 76px;
  --mobile-bottom-nav-clearance: 0px;
  --mobile-nav-content-gap: 16px;
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --dusk: #a8542f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: clip; }
.noscript-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1rem; padding: 1rem; color: #fff; background: #151412; }
.noscript-nav a { color: inherit; font-weight: 700; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.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; z-index: 5000; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 14px; background: var(--paper); border-radius: 10px; box-shadow: var(--shadow-soft); }
.skip-link:focus { transform: none; }

:focus-visible { outline: 3px solid #70402c; outline-offset: 3px; }
.hero :focus-visible,
.menu-page-hero :focus-visible,
.site-footer :focus-visible,
.demo-banner :focus-visible { outline-color: #ffd2a8; }
.svg-icon { display: inline-flex; width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.svg-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.demo-banner { background: var(--teal-950); color: rgba(255,255,255,.88); font-size: .82rem; }
.demo-banner .container { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.demo-banner strong { color: #fff; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }

.site-header { position: sticky; top: 0; z-index: 900; background: rgba(255,253,249,.91); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(10,35,34,.08); background: rgba(255,253,249,.97); }
.header-row { min-height: var(--header-height); display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 174px; height: auto; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: .93rem; }
.desktop-nav a { position: relative; padding: 8px 0; color: #344745; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--accent); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.desktop-nav a.active { color: var(--teal-900); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header-phone { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal-900); font-weight: 750; }
.menu-toggle, .icon-button { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.menu-toggle:hover, .icon-button:hover { transform: translateY(-1px); background: var(--cream); }
.menu-toggle { display: none; }

.primary-button, .secondary-button, .text-button {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 10px 18px; font-weight: 760; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button { color: #fff; background: var(--teal-900); border: 1px solid var(--teal-900); box-shadow: 0 9px 20px rgba(18,58,57,.18); }
.primary-button:hover { transform: translateY(-2px); background: var(--teal-950); box-shadow: 0 13px 28px rgba(18,58,57,.22); }
.secondary-button { color: var(--teal-900); background: rgba(255,255,255,.88); border: 1px solid var(--line); }
.secondary-button:hover { transform: translateY(-2px); border-color: rgba(18,58,57,.32); }
.text-button { min-height: 42px; padding: 8px 12px; border: 0; background: transparent; color: var(--teal-700); }

.mobile-menu { position: fixed; inset: 0; z-index: 2100; display: grid; overflow: hidden; visibility: hidden; pointer-events: none; }
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.dialog-backdrop { position: absolute; inset: 0; border: 0; background: rgba(5,25,25,.66); opacity: 0; transition: opacity .25s ease; cursor: pointer; }
.open > .dialog-backdrop { opacity: 1; }
.mobile-menu-panel { position: relative; margin-left: auto; width: min(420px, 92vw); height: 100%; background: var(--paper); padding: 24px; transform: translateX(104%); transition: transform .28s ease; overflow-y: auto; box-shadow: var(--shadow-raised); }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mobile-menu-head h2 { margin: 2px 0 0; font-family: var(--font-display); font-weight: 600; font-size: 2rem; }
.mobile-menu-links { display: grid; padding: 18px 0; }
.mobile-menu-links a { min-height: 52px; display: flex; align-items: center; padding: 10px 4px; border-bottom: 1px solid var(--line); font-weight: 720; font-size: 1.05rem; }
.mobile-menu-links a.active { color: var(--accent-dark); }
.mobile-menu-actions { display: grid; gap: 10px; margin-top: 12px; }

.hero { position: relative; min-height: clamp(620px, 82svh, 820px); display: grid; align-items: end; overflow: hidden; isolation: isolate; background: var(--teal-950); }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-media::after { content: ""; background: linear-gradient(90deg, rgba(7,31,32,.86) 0%, rgba(7,31,32,.55) 52%, rgba(7,31,32,.2) 100%), linear-gradient(0deg, rgba(7,31,32,.74), transparent 55%); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 128px 0 78px; }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow { color: #f5b98a; }
.hero h1 { margin: 0; max-width: 780px; font-family: var(--font-display); font-weight: 600; font-size: clamp(4.2rem, 9vw, 8.4rem); line-height: .86; letter-spacing: -.055em; }
.hero h1 span { display: block; margin-bottom: 14px; font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.35rem); line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; font-weight: 650; }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.86); font-size: clamp(1rem, 1.6vw, 1.14rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero .secondary-button { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.26); backdrop-filter: blur(8px); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.meta-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .82rem; color: rgba(255,255,255,.88); }

.quick-info { position: relative; z-index: 4; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-soft); }
.quick-card { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 24px 28px; border-right: 1px solid var(--line); }
.quick-card:last-child { border-right: 0; }
.quick-card small { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.quick-card strong, .quick-card a { margin-top: 5px; color: var(--teal-900); font-size: 1.03rem; font-weight: 780; }
.quick-card a { min-height: 44px; display: inline-flex; align-items: center; align-self: flex-start; }

.section { padding: 94px 0; }
.section-alt { background: var(--cream); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-title { margin: 0; max-width: 760px; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: 1.04; letter-spacing: -.035em; color: var(--teal-950); }
.section-copy { max-width: 660px; margin: 16px 0 0; color: var(--muted); font-size: 1.04rem; }
.story-grid > *, .info-grid > * { min-width: 0; }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; gap: 72px; }
.story-card { position: relative; width: 100%; }
.story-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-raised); }
.story-badge { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 18px 20px; border-radius: var(--radius-md); background: rgba(255,253,249,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-soft); }
.story-badge strong { display: block; color: var(--teal-900); }
.story-badge span { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; }
.story-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0 30px; }
.story-point { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.story-point strong { display: block; color: var(--teal-900); }
.story-point span { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; }

.featured-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; }
.product-card-button { width: 100%; height: 100%; display: flex; flex-direction: column; padding: 0; overflow: hidden; text-align: left; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); cursor: pointer; box-shadow: 0 8px 26px rgba(14,42,41,.05); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.product-card-button:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(18,58,57,.25); }
.product-card-static { cursor: default; }
.product-card-static:hover { transform: none; box-shadow: 0 8px 26px rgba(14,42,41,.05); border-color: var(--line); }
.product-card-static:hover .product-card-media img { transform: none; }
.product-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--teal-100); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card-button:hover .product-card-media img { transform: scale(1.035); }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; background: rgba(255,253,249,.94); color: var(--teal-900); font-size: .72rem; font-weight: 820; box-shadow: 0 5px 16px rgba(10,35,34,.1); }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 18px 18px 16px; }
.product-category { color: var(--accent-dark); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-name { display: block; margin-top: 6px; color: var(--teal-950); font-family: var(--font-display); font-size: 1.38rem; line-height: 1.15; font-weight: 700; }
.product-description { display: -webkit-box; margin-top: 9px; overflow: hidden; color: var(--muted); font-size: .92rem; line-height: 1.48; -webkit-box-orient: vertical; -webkit-line-clamp: 2; min-height: 2.74em; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.product-price { color: var(--teal-900); font-size: 1.08rem; white-space: nowrap; }
.product-detail-link { display: inline-flex; align-items: center; gap: 5px; color: var(--teal-700); font-size: .79rem; font-weight: 760; }
.product-detail-link .svg-icon { transition: transform .2s ease; }
.product-static-note { color: var(--muted); font-size: .74rem; font-weight: 700; text-align: right; }
.product-card-button:hover .product-detail-link .svg-icon { transform: translateX(3px); }
.featured-cta { margin-top: 30px; display: flex; justify-content: center; }

.menu-page-hero { padding: 80px 0 52px; background: linear-gradient(135deg, var(--teal-950), var(--teal-700)); color: #fff; }
.menu-page-hero .section-title { color: #fff; }
.menu-page-hero .section-copy { color: rgba(255,255,255,.78); }
.catalog-section { padding-top: 0; }
.catalog-toolbar { position: sticky; top: var(--header-height); z-index: 80; padding: 16px 0; background: rgba(248,243,234,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.category-scroll { position: relative; }
.category-scroll::after { content: ""; position: absolute; top: 0; right: 0; width: 46px; height: 100%; pointer-events: none; background: linear-gradient(90deg, transparent, var(--cream)); }
.category-strip { display: flex; gap: 9px; overflow-x: auto; padding: 2px 34px 10px 2px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.category-button { min-height: 42px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: #40504e; cursor: pointer; font-weight: 720; font-size: .86rem; scroll-snap-align: start; }
.category-button[aria-pressed="true"] { color: #fff; background: var(--teal-900); border-color: var(--teal-900); box-shadow: 0 7px 18px rgba(18,58,57,.16); }
.filter-panel { display: grid; grid-template-columns: minmax(230px, 1fr) 190px repeat(3, auto) auto; gap: 9px; align-items: center; margin-top: 10px; }
.search-field { position: relative; }
.search-field .svg-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.filter-panel input[type="search"], .filter-panel select { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); padding: 9px 42px 9px 14px; }
.filter-panel select { padding-right: 34px; }
.check-pill { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); white-space: nowrap; font-size: .82rem; font-weight: 700; }
.check-pill input { accent-color: var(--teal-700); width: 17px; height: 17px; }
.clear-button { min-height: 42px; padding: 8px 12px; border: 0; border-radius: 999px; background: transparent; color: var(--teal-700); cursor: pointer; font-weight: 750; }
.catalog-content { padding-top: 34px; }
.catalog-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.catalog-disclaimer { max-width: 760px; display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .88rem; }
.catalog-disclaimer .svg-icon { color: var(--accent-dark); margin-top: 2px; }
.result-count { color: var(--teal-900); font-size: .88rem; font-weight: 800; white-space: nowrap; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 30px; }
.load-more-wrap [hidden] { display: none; }
.empty-state { grid-column: 1/-1; min-height: 280px; display: grid; place-items: center; align-content: center; gap: 8px; border: 1px dashed rgba(18,58,57,.25); border-radius: var(--radius-md); background: var(--paper); text-align: center; color: var(--muted); }
.empty-state .svg-icon { width: 34px; height: 34px; color: var(--teal-700); }
.empty-state h3, .empty-state p { margin: 0; }

.modal, .lightbox { position: fixed; inset: 0; z-index: 2400; display: grid; place-items: center; padding: 24px; visibility: hidden; pointer-events: none; }
.modal.open, .lightbox.open { visibility: visible; pointer-events: auto; }
.product-dialog { position: relative; width: min(980px, 100%); max-height: min(760px, 92vh); overflow: auto; border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-raised); transform: translateY(20px) scale(.98); opacity: 0; transition: transform .24s ease, opacity .24s ease; }
.modal.open .product-dialog { transform: none; opacity: 1; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(255,253,249,.92); }
.product-dialog-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.product-dialog-media { min-height: 520px; background: var(--teal-100); }
.product-dialog-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.product-dialog-content { padding: 52px 42px 38px; }
.product-dialog-content h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.02; color: var(--teal-950); }
.modal-price { margin: 14px 0 0; color: var(--teal-900); font-size: 1.3rem; font-weight: 850; }
.modal-description { margin: 18px 0 0; color: var(--muted); font-size: 1rem; }
.modal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.modal-meta h3 { margin: 0 0 10px; color: var(--teal-900); font-size: .9rem; text-transform: uppercase; letter-spacing: .07em; }
.modal-meta ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: .9rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius-md); background: var(--teal-100); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 4; }
.lightbox-dialog { position: relative; max-width: min(1100px, 96vw); max-height: 92vh; margin: 0; padding: 12px; border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-raised); transform: scale(.97); opacity: 0; transition: transform .24s ease, opacity .24s ease; }
.lightbox.open .lightbox-dialog { transform: none; opacity: 1; }
.lightbox-dialog img { max-width: 100%; max-height: 78vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-dialog figcaption { padding: 10px 6px 2px; color: var(--muted); text-align: center; }
.lightbox-close { position: absolute; top: 20px; right: 20px; z-index: 2; background: rgba(255,253,249,.92); }

.info-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px; align-items: stretch; }
.info-card, .map-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-soft); }
.info-card { padding: 32px; }
.info-card h2 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 2.5rem; color: var(--teal-950); }
.contact-list { display: grid; gap: 0; margin-top: 22px; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-100); color: var(--teal-900); }
.contact-row strong { display: block; color: var(--teal-900); }
.contact-row span:not(.svg-icon), .contact-row p { margin: 3px 0 0; color: var(--muted); font-size: .92rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.map-card { min-height: 520px; display: flex; flex-direction: column; }
.map-card iframe,
.map-consent iframe { width: 100%; flex: 1; min-height: 430px; border: 0; }
.map-consent { min-height: 430px; flex: 1; display: grid; place-items: center; padding: 32px; background: linear-gradient(145deg, var(--teal-100), var(--cream)); }
.map-consent-content { max-width: 470px; text-align: center; }
.map-consent-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--paper); color: var(--teal-900); box-shadow: var(--shadow-soft); }
.map-consent-icon .svg-icon { width: 28px; height: 28px; }
.map-consent h3 { margin: 0; color: var(--teal-950); font-family: var(--font-display); font-weight: 600; font-size: 2rem; }
.map-consent p:not(.eyebrow) { margin: 12px auto 22px; color: var(--muted); }
.map-consent.is-loaded { display: flex; padding: 0; background: var(--teal-100); }
.map-consent.is-loaded iframe { width: 100%; min-height: 430px; }
.map-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; }
.map-footer p { margin: 0; color: var(--muted); font-size: .9rem; }

.site-footer { padding: 62px 0 22px; background: var(--teal-950); color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; }
.footer-brand img { width: 185px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; }
.footer-column h3 { margin: 0 0 14px; color: #fff; font-size: .92rem; }
.footer-column a, .footer-column p { display: block; margin: 8px 0; font-size: .9rem; }
.footer-column a { min-height: 44px; display: flex; align-items: center; gap: 5px; margin-block: 2px; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover { color: #fff; }
.footer-column .svg-icon { width: .9em; height: .9em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

.mobile-bottom-nav { display: none; }

.privacy-hero, .not-found { padding: 80px 0; background: var(--cream); }
.document-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 62px 0 90px; }
.document-shell h1 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.7rem, 7vw, 5rem); color: var(--teal-950); }
.document-shell h2 { margin: 34px 0 8px; color: var(--teal-900); }
.document-shell p, .document-shell li { color: var(--muted); }
.document-shell .notice { padding: 18px 20px; border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--cream); }
.not-found { min-height: 70svh; display: grid; place-items: center; text-align: center; }
.not-found .section-title { margin-inline: auto; }
.not-found p { max-width: 540px; margin: 16px auto 28px; color: var(--muted); }

/* Decorative divider retained from the original component system. */
.grain-divider {
  height: 30px; margin: 0; background-color: var(--accent); opacity: .55;
  -webkit-mask-image: url("../assets/icons/grain-wave.svg"); mask-image: url("../assets/icons/grain-wave.svg");
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: 120px auto; mask-size: 120px auto;
}
.grain-divider.on-dark { background-color: rgba(255,255,255,.55); }
@media (prefers-reduced-motion: no-preference) {
  .grain-divider { transition: opacity .4s ease; }
}

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

/* Page loading and navigation transitions */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(201,133,86,.13), transparent 32%),
    var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .34s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .34s;
}
.page-loader-inner {
  width: min(310px, 78vw);
  display: grid;
  justify-items: center;
  gap: 18px;
  transform: translateY(0);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .26s ease;
}
.page-loader img { width: min(220px, 64vw); height: auto; }
.page-loader-label {
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.page-loader-track {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--teal-100);
}
.page-loader-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-700), var(--accent));
  animation: loaderSweep 1.05s cubic-bezier(.65, 0, .35, 1) infinite;
}
.js body.page-loading .page-loader,
.js body.page-leaving .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.js body.page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, .34s;
}
.js body.page-ready .page-loader-inner { transform: translateY(-8px); opacity: 0; }
.js body.page-leaving .page-loader-inner { transform: none; opacity: 1; }
.js body.page-leaving main,
.js body.page-leaving [data-shared-footer] {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .24s ease, transform .3s cubic-bezier(.4, 0, .2, 1);
}
.js body.page-ready main,
.js body.page-ready [data-shared-footer] {
  animation: pageEnter .52s cubic-bezier(.22, 1, .36, 1);
}
.mobile-bottom-nav-spacer { display: none; }


/* Progressive enhancement and release safeguards */
.js-fallback .page-loader { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transition: none !important; }
.no-js .reveal,
.js-fallback .reveal { opacity: 1; transform: none; }
.no-js .catalog-toolbar,
.js-fallback .catalog-toolbar { display: none; }
.noscript-header { position: sticky; top: 0; z-index: 950; border-bottom: 1px solid var(--line); background: var(--paper); }
.noscript-header-row { min-height: 72px; display: flex; align-items: center; gap: 20px; }
.noscript-brand { color: var(--teal-950); font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.noscript-nav { margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.noscript-nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--teal-900); font-weight: 700; }
.noscript-phone { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal-900); font-weight: 800; }
.noscript-catalog-notice { margin-bottom: 22px; padding: 16px 18px; border: 1px solid rgba(135,80,47,.28); border-radius: var(--radius-sm); background: #fff8ef; color: var(--ink); }
.noscript-catalog-notice a { color: var(--teal-900); font-weight: 800; text-decoration: underline; }
.release-blocker { grid-column: 1 / -1; padding: 28px; border: 2px solid rgba(163,66,66,.35); border-radius: var(--radius-md); background: #fff7f7; color: var(--ink); }
.release-blocker h3 { margin: 0; color: var(--danger); }
.release-blocker p { margin: 8px 0 0; color: var(--muted); }
body[data-catalog-blocked="true"] .catalog-toolbar { display: none; }

@keyframes loaderSweep {
  0% { transform: translateX(-115%); }
  55% { transform: translateX(115%); }
  100% { transform: translateX(245%); }
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   Premium motion system — mobile-first and GPU-friendly
   Animates only opacity and transforms during normal use.
   ========================================================= */
:root {
  --motion-fast: 180ms;
  --motion-medium: 360ms;
  --motion-slow: 720ms;
  --ease-out-soft: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --ease-emphasis: cubic-bezier(.34, 1.56, .64, 1);
}

/* Better tactile feedback without relying on hover on touchscreens. */
.primary-button,
.secondary-button,
.text-button,
.menu-toggle,
.icon-button,
.category-button,
.clear-button,
.check-pill,
.mobile-bottom-nav a {
  transition:
    transform var(--motion-fast) var(--ease-out-soft),
    box-shadow var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    opacity var(--motion-fast) ease;
}

.primary-button:active,
.secondary-button:active,
.text-button:active,
.menu-toggle:active,
.icon-button:active,
.category-button:active,
.clear-button:active,
.mobile-bottom-nav a:active {
  transform: scale(.965);
  transition-duration: 80ms;
}

/* Header and brand settle in as one polished unit. */
.site-header {
  transform: translateZ(0);
}
.site-header.scrolled .brand img {
  transform: scale(.965);
}
.brand img {
  transition: transform var(--motion-medium) var(--ease-spring);
  transform-origin: left center;
}

/* Hero: cinematic entrance plus restrained scroll depth. */
.hero-media {
  inset: -2.5% 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  backface-visibility: hidden;
}
.hero-media img {
  transform: scale(1.025);
  transform-origin: 50% 55%;
  backface-visibility: hidden;
}
.js body.page-loading .hero-media img,
.js body.page-loading .hero .eyebrow,
.js body.page-loading .hero h1,
.js body.page-loading .hero-copy,
.js body.page-loading .hero-actions,
.js body.page-loading .hero-meta,
.js body.page-loading .menu-page-hero .eyebrow,
.js body.page-loading .menu-page-hero .section-title,
.js body.page-loading .menu-page-hero .section-copy {
  opacity: 0;
}
.js body.page-loading .hero .eyebrow,
.js body.page-loading .hero h1,
.js body.page-loading .hero-copy,
.js body.page-loading .hero-actions,
.js body.page-loading .hero-meta,
.js body.page-loading .menu-page-hero .eyebrow,
.js body.page-loading .menu-page-hero .section-title,
.js body.page-loading .menu-page-hero .section-copy {
  transform: translate3d(0, 24px, 0);
}
.js body.page-ready .hero-media img {
  animation: heroImageReveal 1.25s var(--ease-out-soft) both;
}
.js body.page-ready .hero .eyebrow,
.js body.page-ready .hero h1,
.js body.page-ready .hero-copy,
.js body.page-ready .hero-actions,
.js body.page-ready .hero-meta,
.js body.page-ready .menu-page-hero .eyebrow,
.js body.page-ready .menu-page-hero .section-title,
.js body.page-ready .menu-page-hero .section-copy {
  animation: heroContentReveal .78s var(--ease-out-soft) both;
}
.js body.page-ready .hero h1,
.js body.page-ready .menu-page-hero .section-title { animation-delay: 70ms; }
.js body.page-ready .hero-copy,
.js body.page-ready .menu-page-hero .section-copy { animation-delay: 150ms; }
.js body.page-ready .hero-actions { animation-delay: 225ms; }
.js body.page-ready .hero-meta { animation-delay: 300ms; }

.hero-actions > *,
.hero-meta > * {
  transform-origin: center;
}
.js body.page-ready .hero-actions > * {
  animation: heroItemPop .55s var(--ease-spring) both;
}
.js body.page-ready .hero-actions > *:nth-child(1) { animation-delay: 290ms; }
.js body.page-ready .hero-actions > *:nth-child(2) { animation-delay: 350ms; }
.js body.page-ready .hero-actions > *:nth-child(3) { animation-delay: 410ms; }
.js body.page-ready .hero-meta > * {
  animation: heroItemPop .5s var(--ease-spring) both;
}
.js body.page-ready .hero-meta > *:nth-child(1) { animation-delay: 390ms; }
.js body.page-ready .hero-meta > *:nth-child(2) { animation-delay: 440ms; }
.js body.page-ready .hero-meta > *:nth-child(3) { animation-delay: 490ms; }

/* Scroll reveals support directional variants and safe stagger caps. */
.reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: .985;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .68s var(--ease-out-soft) var(--reveal-delay),
    transform .78s var(--ease-out-soft) var(--reveal-delay);
  backface-visibility: hidden;
}
.reveal[data-reveal-kind="left"] { --reveal-x: -34px; --reveal-y: 8px; }
.reveal[data-reveal-kind="right"] { --reveal-x: 34px; --reveal-y: 8px; }
.reveal[data-reveal-kind="scale"] { --reveal-y: 12px; --reveal-scale: .94; }
.reveal[data-reveal-kind="card"] { --reveal-y: 30px; --reveal-scale: .97; }
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.product-card.reveal:not(.visible) .product-card-media img,
.gallery-item.reveal:not(.visible) img {
  transform: scale(1.075);
}

/* Cards feel alive on mouse and deliberate on touch. */
.product-card-button {
  transform: translateZ(0);
  transition:
    transform .34s var(--ease-spring),
    box-shadow .34s ease,
    border-color .28s ease;
}
.product-card-media img {
  transition: transform .72s var(--ease-out-soft);
  backface-visibility: hidden;
}
.product-badge {
  transition: transform .34s var(--ease-spring), opacity .25s ease;
}
.product-card-button:active {
  transform: scale(.985);
  transition-duration: 90ms;
}
.product-card-button:active .product-badge {
  transform: scale(.96);
}
.product-detail-link .svg-icon {
  transition: transform .32s var(--ease-spring);
}

/* Category/filter motion remains compact so the toolbar stays responsive. */
.category-button {
  position: relative;
  overflow: hidden;
  transition:
    transform .22s var(--ease-spring),
    color .2s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}
.category-button[aria-pressed="true"] .svg-icon {
  animation: categoryIconPop .42s var(--ease-emphasis);
}
.category-button.selection-pop {
  animation: categorySelectionPop .4s var(--ease-emphasis);
}
.filter-panel input[type="search"],
.filter-panel select,
.check-pill {
  transition: border-color .22s ease, box-shadow .22s ease, transform .18s var(--ease-out-soft), background-color .22s ease;
}
.filter-toggle { display: none; }
.advanced-filters { display: contents; }
.filter-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  line-height: 22px;
  text-align: center;
}
.brand-wordmark, .footer-wordmark {
  margin: 0;
  color: var(--teal-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: .8;
}
.brand-wordmark small, .footer-wordmark small {
  display: block;
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-wordmark { color: #fff; font-size: 2.8rem; }
.availability-card { max-width: 760px; margin: 0 auto; padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); text-align: center; box-shadow: var(--shadow-sm); }
.availability-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.hero-production .hero-media { background: radial-gradient(circle at 78% 25%, rgba(201,133,86,.36), transparent 25%), linear-gradient(135deg, #0a2929, #174d49 55%, #7d5a40); }
.production-story { grid-template-columns: minmax(0, 760px); justify-content: center; text-align: center; }
.catalog-tools-fab, .catalog-tools-backdrop, .catalog-tools-head { display: none; }
.catalog-section { position: relative; }
.photo-mosaic { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 94px; grid-auto-flow: dense; gap: 12px; margin-top: 34px; }
.mosaic-photo { grid-column: span 2; grid-row: span 3; min-height: 0; padding: 0; border: 0; border-radius: 22px; background: var(--teal-100); box-shadow: 0 10px 28px rgba(7,31,32,.1); overflow: hidden; cursor: zoom-in; }
.mosaic-photo.mosaic-wide { grid-column: span 3; grid-row: span 3; }
.mosaic-photo.mosaic-tall { grid-column: span 2; grid-row: span 5; }
.mosaic-photo.mosaic-small { grid-column: span 1; grid-row: span 2; }
.mosaic-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s var(--ease-out-soft), filter .3s ease; }
.mosaic-photo:hover img { transform: scale(1.045); filter: saturate(1.06); }
.mosaic-photo:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.page-hero-centered { text-align: center; }
.page-hero-centered .section-copy { margin-inline: auto; }
.hero-inline-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.utility-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 28px; }
.utility-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 10px 28px rgba(7,31,32,.07); }
.utility-card h2 { margin: 18px 0 8px; font-size: 1.45rem; }
.utility-card p { min-height: 48px; margin: 0 0 18px; color: var(--muted); }
.text-action { display: inline-flex; min-height: 42px; align-items: center; border: 0; background: transparent; color: var(--teal-700); font: inherit; font-weight: 800; cursor: pointer; }
.directions-map { margin-top: 20px; }
.map-footer-centered { justify-content: center; text-align: center; gap: 18px; }
.action-feedback { min-height: 24px; margin: -14px 0 10px; color: var(--teal-700); text-align: center; font-weight: 700; }
.contact-topics { margin-top: 58px; text-align: center; }
.contact-topics .story-points { margin-top: 28px; text-align: left; }
.contact-topics .story-point { color: inherit; }
.selection-summary { margin-bottom: 14px; color: var(--teal-900); font-size: .86rem; }
.selection-summary span { color: var(--muted); }
.selection-summary.selection-changed { animation: selectionConfirm .5s var(--ease-emphasis); }
.selection-summary.is-empty { opacity: .78; }
.selection-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.selection-summary-head > div { min-width: 0; display: flex; align-items: center; gap: 7px; }
.selection-clear { min-height: 34px; padding: 5px 10px; border: 1px solid currentColor; border-radius: 999px; background: transparent; color: inherit; font: inherit; font-size: .72rem; font-weight: 750; cursor: pointer; }
.selection-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 0; padding: 0; list-style: none; }
.selection-item { display: inline-flex; align-items: center; gap: 7px; padding: 6px 7px 6px 11px; border-radius: 999px; background: var(--teal-100); }
.selection-item span { color: var(--teal-900); }
.selection-item span strong { margin-left: 6px; }
.selection-item button { width: 26px; height: 26px; border: 0; border-radius: 50%; background: rgba(18,58,57,.1); color: var(--teal-900); font-size: 1rem; line-height: 1; cursor: pointer; }
.quantity-controls { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; }
.quantity-controls > strong { min-width: 20px; text-align: center; font-variant-numeric: tabular-nums; }
.product-card { position: relative; }
.product-select-button {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 18px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--teal-900);
  box-shadow: 0 5px 14px rgba(7,31,32,.08);
  transform: translateX(50%);
  font: inherit;
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease-spring), color .2s ease, background-color .2s ease;
}
.product-select-button:hover { transform: translateX(50%) translateY(-2px); }
.product-select-button:active { transform: translateX(50%) scale(.95); }
.product-select-button[aria-pressed="true"] { border-color: var(--teal-900); background: var(--teal-900); color: #fff; }
.product-card-footer {
  display: grid;
  grid-template-columns: minmax(64px, 1fr) 122px minmax(84px, 1fr);
  align-items: center;
  gap: 8px;
}
.product-card-footer .product-price { grid-column: 1; justify-self: start; }
.product-card-footer .product-detail-link { grid-column: 3; justify-self: end; white-space: nowrap; }
.product-select-button { width: max-content; max-width: 118px; white-space: nowrap; }
@keyframes selectionConfirm {
  0% { transform: scale(.96); }
  55% { transform: scale(1.035); }
  100% { transform: scale(1); }
}
.filter-panel input[type="search"]:focus,
.filter-panel select:focus-within,
.check-pill:focus-within {
  border-color: rgba(47,103,98,.58);
  box-shadow: 0 0 0 4px rgba(47,103,98,.1);
}
.check-pill:active { transform: scale(.98); }

/* Mobile menu and dialogs now animate both in and out. */
.mobile-menu,
.modal,
.lightbox {
  transition: visibility 0s linear .4s;
}
.mobile-menu.open,
.mobile-menu.closing,
.modal.open,
.modal.closing,
.lightbox.open,
.lightbox.closing {
  visibility: visible;
  transition-delay: 0s;
}
.dialog-backdrop {
  backdrop-filter: blur(0px);
  transition: opacity .32s ease, backdrop-filter .38s ease;
}
.open > .dialog-backdrop {
  backdrop-filter: blur(3px);
}
.mobile-menu-panel {
  transform: translate3d(104%, 0, 0);
  transition: transform .46s var(--ease-spring);
  will-change: transform;
}
.mobile-menu.open .mobile-menu-panel { transform: translate3d(0, 0, 0); }
.mobile-menu.closing .mobile-menu-panel { transform: translate3d(104%, 0, 0); }
.mobile-menu-links a,
.mobile-menu-actions > * {
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: opacity .32s ease, transform .45s var(--ease-spring);
}
.mobile-menu.open .mobile-menu-links a,
.mobile-menu.open .mobile-menu-actions > * {
  opacity: 1;
  transform: none;
}
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 120ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 160ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: 240ms; }
.mobile-menu.open .mobile-menu-actions > *:nth-child(1) { transition-delay: 260ms; }
.mobile-menu.open .mobile-menu-actions > *:nth-child(2) { transition-delay: 300ms; }

.sheet-handle { display: none; }
.product-dialog {
  transform: translate3d(0, 28px, 0) scale(.97);
  transition: transform .4s var(--ease-spring), opacity .3s ease;
  will-change: transform, opacity;
}
.modal.open .product-dialog { transform: translate3d(0, 0, 0) scale(1); }
.modal.closing .product-dialog { transform: translate3d(0, 22px, 0) scale(.98); opacity: 0; }
.product-dialog-media img {
  transform: scale(1.045);
  transition: transform .72s var(--ease-out-soft);
}
.modal.open .product-dialog-media img { transform: scale(1); }
.product-dialog-content > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity .38s ease, transform .5s var(--ease-out-soft);
}
.modal.open .product-dialog-content > * { opacity: 1; transform: none; }
.modal.open .product-dialog-content > *:nth-child(1) { transition-delay: 90ms; }
.modal.open .product-dialog-content > *:nth-child(2) { transition-delay: 130ms; }
.modal.open .product-dialog-content > *:nth-child(3) { transition-delay: 170ms; }
.modal.open .product-dialog-content > *:nth-child(4) { transition-delay: 210ms; }
.modal.open .product-dialog-content > *:nth-child(5) { transition-delay: 250ms; }

.lightbox-dialog {
  transform: translate3d(0, 18px, 0) scale(.93);
  transition: transform .42s var(--ease-spring), opacity .28s ease;
}
.lightbox.open .lightbox-dialog { transform: translate3d(0, 0, 0) scale(1); }
.lightbox.closing .lightbox-dialog { transform: translate3d(0, 12px, 0) scale(.96); opacity: 0; }
.lightbox-dialog img {
  transform: scale(1.025);
  transition: transform .55s var(--ease-out-soft);
}
.lightbox.open .lightbox-dialog img { transform: scale(1); }

/* Loader becomes a branded transition rather than a blocking screen. */
.page-loader-inner {
  position: relative;
  isolation: isolate;
}
.page-loader-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201,133,86,.22);
  border-radius: 50%;
  transform: translate(-50%, -58%) scale(.72);
  opacity: 0;
}
.js body.page-loading .page-loader-inner::before,
.js body.page-leaving .page-loader-inner::before {
  animation: loaderHalo 1.45s var(--ease-out-soft) infinite;
}
.js body.page-loading .page-loader img,
.js body.page-leaving .page-loader img {
  animation: loaderLogoFloat 1.8s ease-in-out infinite;
}
.page-loader-track span {
  width: 34%;
  animation-duration: .92s;
}
.js body.page-leaving main,
.js body.page-leaving [data-shared-footer] {
  transform: translate3d(0, -10px, 0) scale(.995);
}

/* Progressive enhancement for supported browsers. */
@media (hover: hover) and (pointer: fine) {
  .product-card-button:hover {
    transform: translate3d(0, -7px, 0) scale(1.008);
    box-shadow: 0 22px 48px rgba(14,42,41,.13);
  }
  .product-card-button:hover .product-card-media img { transform: scale(1.065); }
  .product-card-button:hover .product-badge { transform: translate3d(0, -2px, 0) scale(1.03); }
  .gallery-item:hover img { transform: scale(1.07); }
  .primary-button:hover,
  .secondary-button:hover { transform: translate3d(0, -3px, 0); }
  .category-button:hover { transform: translate3d(0, -2px, 0); }
  .grain-divider { animation: grainDrift 14s linear infinite; }
}

/* Low-power/data-saver mode keeps the polish while removing costly layers. */
.motion-lite .hero-media { transform: none; }
.motion-lite .dialog-backdrop,
.motion-lite .site-header,
.motion-lite .mobile-bottom-nav,
.motion-lite .hero .secondary-button,
.motion-lite .story-badge {
  backdrop-filter: none !important;
}
.motion-lite .page-loader-inner::before,
.motion-lite .grain-divider { animation: none !important; }
.motion-lite .reveal { transition-duration: .42s, .48s; }

@keyframes heroImageReveal {
  from { opacity: .45; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.025); }
}
@keyframes heroContentReveal {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroItemPop {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.94); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes categoryIconPop {
  0% { transform: scale(.7) rotate(-8deg); }
  70% { transform: scale(1.16) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes categorySelectionPop {
  0% { transform: scale(.96); }
  58% { transform: scale(1.055); }
  100% { transform: scale(1); }
}
@keyframes loaderHalo {
  0% { opacity: 0; transform: translate(-50%, -58%) scale(.7); }
  45% { opacity: .58; }
  100% { opacity: 0; transform: translate(-50%, -58%) scale(1.08); }
}
@keyframes loaderLogoFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -5px, 0); }
}
@keyframes grainDrift {
  from { -webkit-mask-position: 0 center; mask-position: 0 center; }
  to { -webkit-mask-position: 240px center; mask-position: 240px center; }
}

/* =========================================================
   More Than a Kiosk — brand redesign
   ========================================================= */
:root {
  --teal-950: #141310;
  --teal-900: #1d1b17;
  --teal-700: #514b42;
  --teal-100: #ece6da;
  --cream: #f5efe4;
  --paper: #fffdf8;
  --ink: #1b1916;
  --muted: #6d665d;
  --line: rgba(29, 27, 23, .14);
  --accent: #f2b62d;
  --accent-dark: #d35a2d;
  --danger: #a34242;
  --dusk: #df5c2c;
  --brand-yellow: #f2b62d;
  --brand-orange: #e9652f;
  --brand-green: #79ad55;
  --brand-blue: #2f96a8;
  --shadow-soft: 0 14px 38px rgba(25, 22, 17, .09);
  --shadow-raised: 0 26px 74px rgba(25, 22, 17, .2);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

body { background: var(--paper); }
.section-title,
.hero h1,
.menu-page-hero .section-title,
.info-card h2,
.map-consent h3,
.document-shell h1,
.document-shell h2,
.not-found h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; }
.section-title { line-height: .98; }
.eyebrow { color: var(--accent-dark); letter-spacing: .15em; }

.site-header { background: rgba(255,253,248,.93); }
.site-header.scrolled { background: rgba(255,253,248,.98); box-shadow: 0 10px 34px rgba(25,22,17,.1); }
.header-row { min-height: 82px; }
.kiosk-brand { align-items: center; gap: 11px; }
.kiosk-brand > img,
.footer-logo > img,
.mobile-menu-brand > img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 7px 20px rgba(22,20,16,.2);
}
.brand-copy { display: grid; gap: 2px; line-height: 1; }
.brand-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: .035em;
  white-space: nowrap;
}
.brand-copy small { color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav a::after { background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange), var(--brand-green), var(--brand-blue)); }
.header-phone { border-color: rgba(29,27,23,.18); background: #fff; color: var(--ink); }
.header-phone:hover { border-color: var(--brand-orange); }
.primary-button { border-color: var(--ink); background: var(--ink); box-shadow: 0 10px 25px rgba(20,19,16,.2); }
.primary-button:hover { background: #000; box-shadow: 0 15px 32px rgba(20,19,16,.26); }
.secondary-button { color: var(--ink); background: rgba(255,255,255,.88); }
.secondary-button:hover { border-color: rgba(29,27,23,.42); }

.kiosk-loader-inner { gap: 12px; }
.loader-logo { width: 112px !important; height: 112px !important; border-radius: 50%; object-fit: cover; box-shadow: 0 18px 50px rgba(20,19,16,.22); }
.kiosk-loader-inner .brand-wordmark {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: .95;
  text-align: center;
}
.kiosk-loader-inner .brand-wordmark small { margin-top: 7px; font-family: var(--font-body); font-size: .58rem; }
.page-loader { background: radial-gradient(circle at 50% 34%, rgba(242,182,45,.18), transparent 30%), var(--paper); }
.page-loader-track span { background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange), var(--brand-green), var(--brand-blue)); }

.hero-kiosk {
  min-height: clamp(720px, 88svh, 900px);
  align-items: stretch;
  background:
    radial-gradient(circle at 16% 28%, rgba(242,182,45,.16), transparent 28%),
    radial-gradient(circle at 46% 82%, rgba(47,150,168,.12), transparent 26%),
    #151412;
}
.hero-kiosk .hero-shell {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding-block: 64px 76px;
}
.hero-kiosk .hero-content { width: auto; margin: 0; padding: 40px 0; }
.hero-kiosk .hero-content h1 { max-width: 720px; font-size: clamp(5rem, 8vw, 8.7rem); line-height: .78; letter-spacing: .01em; }
.hero-kiosk .hero-content h1 span {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: clamp(.82rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: .2em;
  color: rgba(255,255,255,.72);
}
.hero-kiosk .hero-copy { max-width: 620px; }
.hero-kiosk .hero-media {
  position: relative;
  inset: auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  transform: translateY(var(--hero-shift, 0));
}
.hero-kiosk .hero-media::after { display: none; }
.hero-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 28px; background: #2a2721; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.18)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transform: none; }
.hero-photo-main { grid-row: 1 / -1; }
.hero-photo-main img { object-position: 56% center; }
.hero-photo-top img { object-position: center 45%; }
.hero-photo-bottom img { object-position: center 45%; }
.hero-logo-badge { position: absolute; left: -48px; bottom: 62px; width: 132px; height: 132px; padding: 7px; border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: 0 20px 48px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.hero-logo-badge img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hero-rainbow,
.footer-rainbow { position: absolute; inset: auto 0 0; height: 6px; display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-rainbow span:nth-child(1), .footer-rainbow span:nth-child(1) { background: var(--brand-yellow); }
.hero-rainbow span:nth-child(2), .footer-rainbow span:nth-child(2) { background: var(--brand-orange); }
.hero-rainbow span:nth-child(3), .footer-rainbow span:nth-child(3) { background: var(--brand-green); }
.hero-rainbow span:nth-child(4), .footer-rainbow span:nth-child(4) { background: var(--brand-blue); }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-yellow { background: var(--brand-yellow); }.dot-orange { background: var(--brand-orange); }.dot-green { background: var(--brand-green); }.dot-blue { background: var(--brand-blue); }

.quick-info { margin-top: -42px; }
.quick-grid { border-color: rgba(29,27,23,.12); box-shadow: 0 18px 48px rgba(25,22,17,.13); }
.quick-card { min-height: 130px; }
.quick-card small { color: var(--accent-dark); }
.quick-card strong, .quick-card a { color: var(--ink); }

.kiosk-story { position: relative; overflow: hidden; }
.kiosk-story::before { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; top: 20%; border: 1px solid rgba(242,182,45,.4); border-radius: 50%; box-shadow: 0 0 0 44px rgba(121,173,85,.07), 0 0 0 88px rgba(47,150,168,.04); }
.kiosk-story .story-card img { aspect-ratio: 4 / 3; object-position: center; }
.story-stamp { position: absolute; right: -24px; bottom: -22px; width: 126px; height: 126px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-yellow); color: var(--ink); font-family: var(--font-display); font-size: 1.55rem; line-height: .9; text-align: center; text-transform: uppercase; transform: rotate(-8deg); box-shadow: 0 16px 35px rgba(25,22,17,.18); }
.kiosk-points { grid-template-columns: 1fr; }
.kiosk-points .story-point { border-left: 4px solid var(--brand-yellow); }
.kiosk-points .story-point:nth-child(2) { border-left-color: var(--brand-orange); }
.kiosk-points .story-point:nth-child(3) { border-left-color: var(--brand-green); }

.category-showcase { position: relative; }
.kiosk-category-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); grid-auto-rows: 220px; gap: 14px; }
.kiosk-category-card { position: relative; grid-column: span 4; overflow: hidden; border-radius: 26px; background: #191814; color: #fff; box-shadow: var(--shadow-soft); }
.kiosk-category-card.category-large { grid-column: span 7; grid-row: span 2; }
.kiosk-category-card.category-wide { grid-column: span 5; }
.kiosk-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.kiosk-category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.78)); }
.kiosk-category-card > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.kiosk-category-card span { color: var(--brand-yellow); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.kiosk-category-card h3 { margin: 4px 0 0; font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: .95; }
.kiosk-category-card p { max-width: 520px; margin: 8px 0 0; color: rgba(255,255,255,.78); font-size: .88rem; }
.kiosk-category-card:hover img { transform: scale(1.04); }
.kiosk-category-card:nth-child(2) span { color: #ff8a54; }
.kiosk-category-card:nth-child(3) span { color: #9bc774; }
.kiosk-category-card:nth-child(4) span { color: #6fc5d4; }

.kiosk-mosaic .mosaic-photo { box-shadow: 0 12px 34px rgba(25,22,17,.12); }
.kiosk-mosaic .mosaic-photo:nth-child(2) img { object-position: center 58%; }

.info-card h2 { font-size: clamp(3rem, 5vw, 4.7rem); line-height: .95; }
.contact-icon { background: rgba(242,182,45,.16); color: var(--ink); }
.map-consent { background: radial-gradient(circle at 20% 20%, rgba(242,182,45,.22), transparent 32%), linear-gradient(145deg, #eee7da, #f9f5ed); }

.kiosk-cta { padding: 78px 0; background: #151412; color: #fff; }
.kiosk-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.kiosk-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; line-height: .82; }
.kiosk-cta .eyebrow { color: var(--brand-yellow); }
.kiosk-cta .secondary-button { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.kiosk-cta .primary-button { color: #151412; background: var(--brand-yellow); border-color: var(--brand-yellow); }

.kiosk-page-hero { padding: 90px 0 72px; background: radial-gradient(circle at 72% 20%, rgba(242,182,45,.17), transparent 28%), #151412; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 72px; align-items: center; }
.page-hero-grid .section-title { font-size: clamp(4rem, 7vw, 7rem); }
.page-hero-grid .hero-inline-actions { justify-content: flex-start; }
.page-hero-image { width: 100%; max-height: 440px; object-fit: cover; border-radius: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.32); }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.offer-card { display: grid; grid-template-columns: 42% 58%; min-height: 350px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow-soft); }
.offer-card img { width: 100%; height: 100%; object-fit: cover; }
.offer-card > div { padding: 30px; }
.offer-number { color: var(--accent-dark); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.offer-card h2 { margin: 8px 0 12px; font-family: var(--font-display); font-size: 2.45rem; font-weight: 400; line-height: .95; }
.offer-card p { margin: 0; color: var(--muted); }
.offer-card ul { margin: 20px 0 0; padding-left: 18px; color: var(--muted); }
.offer-card li + li { margin-top: 6px; }
.availability-note { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 26px; padding: 24px; border: 1px solid rgba(29,27,23,.13); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.availability-note > .svg-icon { width: 34px; height: 34px; color: var(--accent-dark); }
.availability-note strong { display: block; color: var(--ink); }
.availability-note p { margin: 5px 0 0; color: var(--muted); }

.contact-visual { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); overflow: hidden; border-radius: 30px; background: #151412; color: #fff; box-shadow: var(--shadow-raised); }
.contact-visual > img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.contact-visual > div { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.contact-visual > div > img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.contact-visual h2 { margin: 18px 0 8px; font-family: var(--font-display); font-size: 3.3rem; font-weight: 400; line-height: .95; }
.contact-visual p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.not-found-logo { width: 118px; height: 118px; margin: 0 auto 20px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-soft); }

.kiosk-footer { position: relative; background: #151412; }
.footer-rainbow { top: 0; bottom: auto; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo .brand-copy strong { color: #fff; font-size: 1.8rem; }
.footer-logo .brand-copy small { color: rgba(255,255,255,.58); }
.kiosk-footer .footer-column strong { color: #fff; }
.mobile-menu-brand { display: inline-flex; align-items: center; gap: 11px; }
.mobile-menu-brand .brand-copy strong { font-size: 1.5rem; }
.mobile-menu-head { align-items: center; }

@media (hover: hover) {
  .offer-card { transition: transform .3s ease, box-shadow .3s ease; }
  .offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-raised); }
}

/* Official digital menu */
.official-menu-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #151412;
}
.official-menu-hero-image,
.official-menu-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.official-menu-hero-image { z-index: -2; object-fit: cover; object-position: center 48%; }
.official-menu-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,14,12,.93) 0%, rgba(15,14,12,.75) 42%, rgba(15,14,12,.26) 100%),
    linear-gradient(0deg, rgba(15,14,12,.8), transparent 65%);
}
.official-menu-hero-content { padding-block: 150px 80px; color: #fff; }
.official-menu-hero .section-title { max-width: 900px; color: #fff; font-size: clamp(4.8rem, 8vw, 8.8rem); line-height: .82; }
.official-menu-hero .section-copy { max-width: 650px; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.official-menu-hero .eyebrow { color: var(--brand-yellow); }
.official-menu-hero .hero-inline-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.official-menu-hero .primary-button { color: #151412; background: var(--brand-yellow); border-color: var(--brand-yellow); }
.official-menu-hero .secondary-button { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); backdrop-filter: blur(10px); }

.menu-category-nav {
  position: fixed;
  z-index: 1702;
  top: 50%;
  right: 92px;
  width: min(280px, calc(100vw - 130px));
  padding: 12px;
  border: 1px solid rgba(29,27,23,.12);
  border-radius: 24px;
  background: rgba(255,253,249,.97);
  box-shadow: 0 22px 60px rgba(25,22,17,.2);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50%) translateX(18px) scale(.96);
  transform-origin: right center;
  pointer-events: none;
  transition: opacity .2s ease, transform .3s var(--ease-spring), visibility 0s linear .3s;
}
.menu-category-open .menu-category-nav { visibility: visible; opacity: 1; transform: translateY(-50%); pointer-events: auto; transition-delay: 0s; }
.menu-category-nav-scroll { width: auto; display: grid; gap: 7px; min-height: 0; overflow: visible; }
.menu-category-nav-scroll::-webkit-scrollbar { display: none; }
.menu-category-nav a { min-height: 46px; display: flex; align-items: center; padding: 10px 15px; border: 1px solid rgba(29,27,23,.1); border-radius: 15px; background: #fff; color: #3b3934; font-size: .83rem; font-weight: 800; white-space: nowrap; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.menu-category-nav a:hover { transform: translateX(-3px); border-color: var(--brand-orange); background: #fff9ed; }
.menu-category-fab { position: fixed; z-index: 1600; top: 50%; right: 22px; width: 58px; height: 58px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 15px 38px rgba(25,22,17,.28); cursor: pointer; transform: translateY(-50%); transition: transform .22s var(--ease-spring), background .2s ease; }
.menu-category-fab:hover { background: var(--brand-orange); transform: translateY(-50%) scale(1.06); }
.menu-category-fab .svg-icon { width: 23px; height: 23px; }
.menu-category-fab-label { position: absolute; right: calc(100% + 10px); padding: 6px 9px; border-radius: 9px; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 800; white-space: nowrap; opacity: 0; transform: translateX(5px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.menu-category-fab:hover .menu-category-fab-label { opacity: 1; transform: none; }
.menu-category-open .menu-category-fab { z-index: 1703; background: var(--brand-orange); }
.menu-category-backdrop { position: fixed; z-index: 1701; inset: 0; border: 0; background: rgba(25,22,17,.3); backdrop-filter: blur(2px); cursor: default; }
.menu-category-backdrop[hidden] { display: none; }
.no-js .menu-category-fab, .no-js .menu-category-backdrop { display: none; }
.no-js .menu-category-nav { position: static; width: auto; padding: 0; visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.no-js .menu-category-nav-scroll { display: flex; overflow-x: auto; }

.official-menu-section { background: #f4eee3; }
.official-menu-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.54fr); align-items: end; gap: 52px; margin-bottom: 38px; }
.official-menu-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 1rem; }

.catalog-panel {
  scroll-margin-top: calc(var(--header-height) + 92px);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(29,27,23,.12);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 20px 54px rgba(25,22,17,.1);
}
.catalog-panel-head { position: relative; min-height: 300px; display: flex; align-items: end; overflow: hidden; padding: 38px; color: #fff; background: #171510; isolation: isolate; }
.catalog-panel-head > img,
.catalog-panel-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.catalog-panel-head > img { z-index: -2; object-fit: cover; object-position: center 58%; transition: transform .8s ease; }
.catalog-panel:hover .catalog-panel-head > img { transform: scale(1.025); }
.catalog-panel-shade { z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)); }
.catalog-panel-head--beverages > img { object-position: center 44%; }
.catalog-panel-head--cocktails > img { object-position: center 52%; }
.catalog-panel-head--refreshments > img { object-position: center 52%; }
.catalog-panel-head--spirits > img { object-position: center 47%; }
.catalog-panel-title span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; min-height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.09); font-size: .72rem; font-weight: 900; }
.catalog-panel-title p { margin: 16px 0 4px; color: var(--brand-yellow); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.catalog-panel-title h2 { margin: 0; max-width: 1000px; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; line-height: .82; }
.catalog-panel-body { padding: 34px; }
.catalog-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.catalog-group-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.catalog-group { min-width: 0; padding: 25px; border: 1px solid rgba(29,27,23,.11); border-radius: 23px; background: #fffdfa; }
.catalog-group--wide { grid-column: 1 / -1; }
.catalog-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(29,27,23,.11); }
.catalog-group-heading--sub { margin-top: 30px; }
.catalog-group-heading h3 { margin: 0; font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; line-height: 1; color: #1b1916; }
.catalog-group-heading span { color: var(--accent-dark); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; text-align: right; }
.menu-price-list { list-style: none; margin: 8px 0 0; padding: 0; }
.menu-price-list > li { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px dashed rgba(29,27,23,.13); }
.menu-price-list > li:last-child { border-bottom: 0; }
.menu-price-list strong { min-width: 0; color: #2b2924; font-size: .95rem; font-weight: 720; overflow-wrap: anywhere; }
.menu-price-list > li > span { color: #171510; font-size: .96rem; font-weight: 900; white-space: nowrap; }
.menu-price-list small { grid-column: 1 / -1; margin-top: -2px; color: #777064; font-size: .78rem; line-height: 1.45; }
.menu-price-list .menu-item-extra strong,
.menu-price-list .menu-item-extra > span { color: var(--accent-dark); }
.menu-price-list--columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 28px; }
.menu-mini-note { margin-top: 20px; padding: 16px 17px; border-radius: 16px; background: #f3ede3; }
.menu-mini-note strong { display: block; color: #26231e; font-size: .82rem; }
.menu-mini-note p { margin: 4px 0 0; color: #756f65; font-size: .79rem; }
.menu-mini-note--accent { background: rgba(242,182,45,.15); }
.signature-cocktails .menu-price-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 30px; }
.signature-cocktails .menu-price-list > li { align-content: start; }
.spirits-grid .catalog-group { padding: 22px; }
.spirits-grid .catalog-group-heading h3 { font-size: 1.95rem; }
.spirits-grid .menu-price-list strong { font-size: .88rem; }
.spirits-grid .menu-price-list > li > span { font-size: .9rem; }

.bottle-pricing { position: relative; min-height: 260px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); align-items: end; gap: 1px; margin-top: 20px; overflow: hidden; border-radius: 24px; background: #151412; color: #fff; isolation: isolate; }
.bottle-pricing > img,
.bottle-pricing-overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.bottle-pricing-overlay { z-index: -1; background: linear-gradient(90deg, rgba(17,15,12,.9), rgba(17,15,12,.5), rgba(17,15,12,.88)); }
.bottle-pricing > div { min-height: 260px; display: flex; flex-direction: column; justify-content: end; padding: 32px; background: rgba(0,0,0,.1); }
.bottle-pricing > div + div { border-left: 1px solid rgba(255,255,255,.18); }
.bottle-pricing p { margin: 0; color: var(--brand-yellow); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.bottle-pricing h3 { margin: 9px 0 4px; font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.bottle-pricing strong { font-family: var(--font-display); font-size: 4.5rem; font-weight: 400; line-height: .9; }

.official-menu-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 28px; padding: 24px; border: 1px solid rgba(29,27,23,.13); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.official-menu-note > .svg-icon { width: 34px; height: 34px; color: var(--accent-dark); }
.official-menu-note strong { display: block; color: var(--ink); }
.official-menu-note p { margin: 5px 0 0; color: var(--muted); }

@media (hover: hover) {
  .catalog-group { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
  .catalog-group:hover { transform: translateY(-3px); border-color: rgba(201,133,86,.32); box-shadow: 0 14px 34px rgba(25,22,17,.08); }
}


/* Official social media links */
.social-contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
  margin: 28px 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(29, 27, 23, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 182, 45, .22), transparent 32%),
    radial-gradient(circle at 94% 88%, rgba(47, 150, 168, .13), transparent 30%),
    #fff;
  box-shadow: var(--shadow-soft);
}
.social-contact-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -88px;
  top: -92px;
  border: 1px solid rgba(242, 182, 45, .4);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(121, 173, 85, .06), 0 0 0 56px rgba(47, 150, 168, .035);
  pointer-events: none;
}
.social-contact-copy { position: relative; z-index: 1; }
.social-contact-copy h2 {
  max-width: 620px;
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
  font-weight: 400;
  line-height: .92;
}
.social-contact-copy > p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--muted); }
.social-contact-actions { position: relative; z-index: 1; display: grid; gap: 12px; }
.social-profile-button {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 84px;
  padding: 14px 17px;
  border: 1px solid rgba(29, 27, 23, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(25, 22, 17, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.social-profile-button:hover { transform: translateY(-3px); box-shadow: 0 15px 34px rgba(25, 22, 17, .14); }
.social-profile-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
}
.social-profile-icon .svg-icon { width: 27px; height: 27px; }
.instagram-button .social-profile-icon { background: linear-gradient(135deg, #6a35d4, #dc2c75 55%, #f39b31); }
.facebook-button .social-profile-icon { background: #1877f2; }
.social-profile-button strong { display: block; font-size: 1.02rem; }
.social-profile-button small { display: block; margin-top: 3px; overflow-wrap: anywhere; color: var(--muted); font-size: .79rem; }
.social-profile-button .social-external { width: 18px; height: 18px; color: var(--muted); }
.contact-visual-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-visual-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.contact-visual-socials a:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .16); }
.contact-visual-socials .svg-icon { width: 18px; height: 18px; }
.footer-social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.footer-social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  font-size: .82rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.footer-social-links a:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .08); color: #fff; }
.footer-social-links .svg-icon { width: 17px; height: 17px; }
.mobile-social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.mobile-social-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 750;
}
.mobile-social-links .svg-icon { width: 19px; height: 19px; }


/* Local SEO landing pages and internal discovery links */

/* Coffee template artwork, adapted to the More Than a Kiosk design system */
.coffee-ritual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #211713 0%, #3b2720 58%, #17110f 100%);
  color: #fff;
}
.coffee-ritual::after { content: ""; position: absolute; inset: auto -10% -42% auto; z-index: -1; width: 520px; aspect-ratio: 1; border: 1px solid rgba(242,182,45,.18); border-radius: 50%; box-shadow: 0 0 0 48px rgba(242,182,45,.035), 0 0 0 98px rgba(255,255,255,.018); }
.coffee-ritual-beans { position: absolute; inset: 0; z-index: -1; background: url("../assets/images/coffee-template/coffee-beans-bg.png") center / 560px auto repeat; opacity: .045; transform: rotate(-4deg) scale(1.1); }
.coffee-ritual-grid { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: 64px; align-items: center; }
.coffee-ritual .section-title { color: #fff; }
.coffee-ritual .section-copy { color: rgba(255,255,255,.72); }
.coffee-ritual .primary-button { margin-top: 28px; background: var(--brand-yellow); border-color: var(--brand-yellow); color: #211713; box-shadow: 0 12px 30px rgba(242,182,45,.2); }
.coffee-cup-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: end; }
.coffee-cup-card { position: relative; min-width: 0; padding: 22px 16px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.07); text-align: center; backdrop-filter: blur(9px); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.coffee-cup-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.11); border-color: rgba(242,182,45,.42); }
.coffee-cup-card-featured { padding-top: 34px; background: rgba(242,182,45,.11); transform: translateY(-16px); }
.coffee-cup-card-featured:hover { transform: translateY(-24px); }
.coffee-cup-card img { width: min(100%, 190px); height: 220px; object-fit: contain; filter: drop-shadow(0 22px 18px rgba(0,0,0,.32)); }
.coffee-cup-card strong { display: block; margin-top: 4px; color: #fff; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; }
.coffee-cup-card > span:not(.coffee-cup-badge) { display: block; margin-top: 3px; color: rgba(255,255,255,.62); font-size: .78rem; }
.coffee-cup-badge { position: absolute; top: 12px; left: 50%; padding: 5px 10px; border-radius: 999px; background: var(--brand-yellow); color: #211713; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; transform: translateX(-50%); }

.local-seo-hero .section-title { max-width: 850px; }
.local-seo-hero--cocktails { background: radial-gradient(circle at 78% 18%, rgba(229,92,67,.2), transparent 30%), #151412; }
.local-seo-hero--kiosk { background: radial-gradient(circle at 78% 18%, rgba(82,168,120,.2), transparent 30%), #151412; }
.local-seo-content { position: relative; overflow: hidden; }
.local-seo-content::after { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; bottom: -150px; border: 1px solid rgba(242,182,45,.24); border-radius: 50%; pointer-events: none; }
.local-intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: start; }
.local-copy { display: grid; gap: 18px; color: var(--muted); font-size: 1.06rem; line-height: 1.8; }
.local-copy p { margin: 0; }
.seo-menu-grid, .local-feature-grid, .local-search-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.seo-menu-card, .local-feature, .local-search-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-soft); }
.seo-menu-card h3, .local-feature h2, .local-search-card h3 { margin: 0 0 18px; color: var(--ink); font-size: 1.25rem; }
.seo-menu-card .menu-price-list { margin: 0; }
.seo-menu-note { margin: 18px 0 0; color: var(--muted); }
.local-feature span, .local-search-card > span, .cocktail-signature-grid span { display: inline-flex; margin-bottom: 18px; color: var(--brand-orange); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.local-feature p, .local-search-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.local-search-section { background: #181715; color: #fff; }
.local-search-section .section-title { color: #fff; }
.local-search-section .section-copy { color: rgba(255,255,255,.68); }
.local-search-card { display: block; color: #fff; background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.12); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.local-search-card h3 { color: #fff; font-size: 1.5rem; }
.local-search-card p { color: rgba(255,255,255,.68); }
.local-search-card strong { color: var(--brand-yellow); }
.local-search-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(242,182,45,.45); }
.cocktail-signature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.cocktail-signature-grid article { padding: 32px; border-radius: 26px; background: linear-gradient(145deg, #1c1a18, #2c2722); color: #fff; box-shadow: var(--shadow-raised); }
.cocktail-signature-grid h2 { margin: 0 0 10px; font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; }
.cocktail-signature-grid p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.local-faq .faq-list { display: grid; gap: 12px; max-width: 900px; }
.local-faq details { padding: 0 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.local-faq summary { cursor: pointer; padding: 20px 34px 20px 0; color: var(--ink); font-weight: 750; position: relative; }
.local-faq summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.5rem; color: var(--brand-orange); }
.local-faq details[open] summary::after { content: "−"; }
.local-faq details p { margin: 0; padding: 0 0 20px; color: var(--muted); line-height: 1.7; }
.local-inline-links { padding: 18px 0; background: #f1eee7; border-top: 1px solid var(--line); }
.local-inline-links .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 22px; }
.local-inline-links a, .menu-seo-links a { color: var(--ink); font-size: .88rem; font-weight: 750; text-decoration: underline; text-decoration-color: rgba(229,92,67,.4); text-underline-offset: 4px; }
.menu-seo-links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; }
.official-menu-hero .menu-seo-links a { color: rgba(255,255,255,.9); }
.kiosk-category-card .text-action { display: inline-flex; margin-top: 14px; }
