:root {
  --ink: #2d2018;
  --ink-soft: #4a3a2e;
  --muted: #7a6a5c;
  --paper: #f7f0e4;
  --paper-deep: #ebe0d0;
  --butter: #e8c47a;
  --butter-soft: #f3dfb0;
  --cocoa: #5c3d2e;
  --sage: #5a6b52;
  --sage-deep: #3f4d39;
  --glass: rgba(255, 248, 235, 0.92);
  --line: rgba(45, 32, 24, 0.12);
  --glow: rgba(232, 196, 122, 0.45);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", system-ui, sans-serif;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232, 196, 122, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 40%, rgba(90, 107, 82, 0.12), transparent 50%),
    linear-gradient(180deg, #f3e8d6 0%, var(--paper) 28%, #f6efe3 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1000;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--butter);
  outline-offset: 3px;
}

body:has(dialog[open]) { overflow: hidden; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
}
.skip-link:focus { top: 12px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 76px;
  padding: 14px 4.5%;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 228, 0.88);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 600 22px/1.1 var(--serif);
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: auto;
  background: #f7f0e4;
  border: 1px solid rgba(92, 61, 46, 0.18);
  box-shadow: none;
}

.brand small {
  display: block;
  margin-top: 4px;
  font: 600 9px/1.2 var(--sans);
  letter-spacing: 0.16em;
  color: var(--muted);
}

.header nav,
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(243, 223, 176, 0.22));
  border: 1px solid rgba(92, 61, 46, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 18px rgba(45, 32, 24, 0.04);
}

.site-nav a {
  position: relative;
  padding: 10px 16px;
  font: italic 500 15px/1.2 var(--serif);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--butter);
  opacity: 0.85;
  box-shadow: 0 0 0 1px rgba(92, 61, 46, 0.08);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--butter), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  opacity: 0.95;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cocoa);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}

.header-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--sage);
  color: #f8f4ea;
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 4.5% 48px;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) 1fr;
  gap: 3%;
  align-items: end;
  min-height: calc(100dvh - 76px);
}

.hero-backdrop {
  position: absolute;
  inset: 8% 2% auto auto;
  width: min(55%, 720px);
  height: 70%;
  background: radial-gradient(ellipse at center, var(--glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-brand {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

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

.hero-brand h1 {
  margin: 18px 0 12px;
  font: 700 clamp(48px, 7vw, 92px)/0.95 var(--serif);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-tagline {
  margin: 0 0 28px;
  max-width: 28ch;
  font: 400 18px/1.5 var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.primary-link,
.secondary-link,
.back-button,
.order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.primary-link,
.order-link {
  background: var(--sage);
  color: #f8f4ea;
  border-color: var(--sage);
}

.primary-link:hover,
.order-link:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-1px);
}

.secondary-link {
  background: transparent;
  color: var(--ink);
  border-color: rgba(45, 32, 24, 0.28);
}

.secondary-link:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

/* Shop window */
.window-wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.window-viewport {
  position: relative;
  overflow: hidden;
  background: #3a281c;
  border: 6px solid #d9c8a8;
  outline: 1px solid rgba(45, 32, 24, 0.2);
  box-shadow:
    0 24px 60px rgba(45, 32, 24, 0.22),
    inset 0 0 0 1px rgba(255, 240, 210, 0.2);
}

.shop-scene { position: relative; width: 100%; }

.shop-image {
  display: block;
  width: 100%;
  height: auto;
}

.window-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 10px 16px;
  background: var(--glass);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(30, 20, 12, 0.18);
  pointer-events: none;
}

.mobile-hint { display: none; }

.window-caption {
  margin: 14px 0 0;
  font: italic 15px/1.4 var(--serif);
  color: var(--muted);
  text-align: right;
}

/* Hotspots */
.hotspot {
  position: absolute;
  border: 1px solid transparent;
  border-radius: 22%;
  background: transparent;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hotspot::after {
  content: "+";
  position: absolute;
  right: 6%;
  top: 8%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid rgba(255, 247, 222, 0.9);
  box-shadow: 0 2px 10px rgba(32, 16, 8, 0.28);
  border-radius: 50%;
  font-size: 17px;
  transition: transform 0.2s, background 0.2s;
}

.hotspot:hover,
.hotspot:focus-visible {
  background: rgba(232, 196, 122, 0.14);
  border-color: rgba(243, 223, 176, 0.75);
  box-shadow: 0 0 28px var(--glow);
  outline: none;
}

.hotspot:hover::after,
.hotspot:focus-visible::after {
  transform: scale(1.12);
  background: #fff8e7;
}

.hotspot-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: #fff8ea;
  color: var(--ink);
  white-space: nowrap;
  padding: 9px 12px;
  box-shadow: 0 4px 16px rgba(30, 18, 10, 0.22);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}

.hotspot:hover .hotspot-label,
.hotspot:focus-visible .hotspot-label {
  opacity: 1;
  transform: translate(-50%, -8px);
}

/* Sections */
.menu-section,
.gallery-section {
  max-width: 1456px;
  margin: 0 auto;
  padding: 64px 4.5%;
}

.menu-section { border-top: 1px solid var(--line); }

.section-heading {
  display: block;
  margin-bottom: 36px;
}

.menu-section .section-heading,
.gallery-section .section-heading,
.menu-section .sample-note {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.sample-note {
  margin: 36px auto 0;
  max-width: 520px;
  padding: 20px 22px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.sample-note-lead {
  margin: 0 0 12px;
  font: 600 15px/1.45 var(--serif);
  color: var(--ink-soft);
}

.sample-note ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.65;
}

.sample-note li + li {
  margin-top: 6px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font: 600 clamp(28px, 3.5vw, 42px)/1.15 var(--serif);
  letter-spacing: -0.02em;
}

.section-heading h2 em,
.story h2 em,
.contact-section h2 em {
  font-weight: 400;
  color: var(--cocoa);
}

.section-heading .section-lead {
  margin: 14px 0 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.section-heading .text-link {
  display: inline-block;
  margin-top: 14px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 20px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-card {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  min-width: 0;
}

.menu-photo {
  position: relative;
  overflow: hidden;
  height: 148px;
  background: var(--cocoa);
}

.menu-photo > img,
.menu-photo svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.menu-card:hover .menu-photo > img,
.menu-card:hover .menu-photo svg {
  transform: scale(1.04);
}

.menu-card-info {
  padding: 16px 0 10px;
  border-bottom: 1px solid var(--line);
}

.menu-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: 600 22px/1.25 var(--serif);
}

.menu-card-title > span:last-child {
  font: 500 18px var(--sans);
  color: var(--cocoa);
}

.menu-card-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.menu-card-meta span { display: block; }
.menu-card-meta span + span {
  margin-top: 4px;
  color: var(--sage-deep);
  font-weight: 500;
}

.menu-card-desc {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.illustration-label,
.coming-soon-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--glass);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

/* Placeholders */
.product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px;
  text-align: center;
  color: var(--paper);
  --ph: 28;
  background:
    radial-gradient(circle at 30% 25%, hsla(var(--ph), 55%, 72%, 0.35), transparent 45%),
    linear-gradient(145deg, hsl(var(--ph), 28%, 38%) 0%, hsl(var(--ph), 26%, 22%) 55%, #2d2018 100%);
}

.product-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.9;
  flex-shrink: 0;
}

.product-placeholder strong {
  display: block;
  width: 100%;
  font: 600 18px/1.2 var(--serif);
}

.product-placeholder small {
  display: block;
  width: 100%;
  font: 600 10px/1.35 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Gallery */
.bake-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 16px;
  max-width: 980px;
  margin: 0 auto;
}

.bake-gallery figure { margin: 0; min-width: 0; }

.bake-gallery img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bake-gallery figure:hover img { transform: scale(1.02); }

.bake-gallery figcaption {
  margin-top: 10px;
  font: italic 15px/1.3 var(--serif);
  color: var(--muted);
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 32, 24, 0.25);
  padding: 6px 0;
  transition: border-color 0.2s, color 0.2s;
}

.text-link:hover {
  color: var(--sage-deep);
  border-color: var(--sage);
}

/* Story */
.story {
  text-align: center;
  padding: 72px 20px;
  background:
    linear-gradient(180deg, rgba(90, 107, 82, 0.08), rgba(232, 196, 122, 0.12)),
    var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7f0e4;
  border: 1px solid rgba(92, 61, 46, 0.18);
  box-shadow: none;
}

.story .eyebrow { margin-top: 18px; }

.story h2 {
  margin: 18px auto 20px;
  max-width: 16ch;
  font: 600 clamp(30px, 4vw, 44px)/1.15 var(--serif);
}

.story > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.story .text-link { display: inline-block; margin-top: 18px; }

/* Contact */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 4.5% 80px;
  text-align: center;
}

.contact-intro h2 {
  margin: 14px 0 12px;
  font: 600 clamp(30px, 4vw, 44px)/1.15 var(--serif);
}

.contact-intro > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}

.service-facts {
  list-style: none;
  margin: 18px auto 8px;
  padding: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.service-facts li + li { margin-top: 4px; }

.contact-phone {
  display: inline-block;
  margin: 8px 0 22px;
  font: 600 30px/1.2 var(--serif);
  letter-spacing: -0.02em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--sage);
  color: #f8f4ea;
  border: 1px solid var(--sage);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-btn:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-1px);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

footer {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4.5% 36px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  font: 600 20px var(--serif);
  color: var(--ink);
}

/* Dialog */
dialog {
  padding: 0;
  border: 1px solid rgba(45, 32, 24, 0.18);
  background: #faf4e8;
  color: var(--ink);
  width: min(860px, calc(100% - 32px));
  max-height: 90dvh;
  overflow: auto;
  box-shadow: 0 28px 90px rgba(20, 14, 10, 0.4);
}

dialog[open] {
  display: grid;
  grid-template-columns: 38% 62%;
  animation: reveal 0.28s ease-out;
}

dialog::backdrop {
  background: rgba(30, 22, 16, 0.72);
  backdrop-filter: blur(6px);
}

.close-button {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45, 32, 24, 0.18);
  border-radius: 50%;
  background: #fffaf0;
  font-size: 22px;
  line-height: 1;
}

.dialog-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 36px;
  background:
    radial-gradient(circle at 40% 30%, rgba(243, 223, 176, 0.35), transparent 55%),
    #e8dcc8;
  min-width: 0;
}

.dialog-photo {
  width: 100%;
  background: transparent;
}

.dialog-photo > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62dvh;
  object-fit: contain;
}

.dialog-photo svg,
.dialog-photo .product-placeholder {
  display: block;
  width: 100%;
  min-height: 260px;
}

.dialog-visual > p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.recipe-card { padding: 36px 32px 22px; }

.recipe-card .eyebrow { color: var(--cocoa); }

.recipe-card h2 {
  margin: 12px 0;
  font: 600 36px/1.1 var(--serif);
  letter-spacing: -0.02em;
}

.product-description {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(45, 32, 24, 0.12);
  border-bottom: 1px solid rgba(45, 32, 24, 0.12);
}

.price-row strong { font: 600 28px var(--serif); }
.price-row > span { font-size: 13px; color: var(--muted); }
.price-row .enquiry-price { font-size: 22px; }

.recipe-details h3 {
  margin: 18px 0 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recipe-details p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.dialog-sample {
  margin: 20px 0;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.order-link { width: 100%; margin-bottom: 8px; text-align: center; }
.call-link {
  background: transparent;
  color: var(--sage-deep);
  border-color: rgba(90, 107, 82, 0.4);
}
.call-link:hover {
  background: rgba(90, 107, 82, 0.1);
  color: var(--sage-deep);
}

.back-button {
  width: 100%;
  margin-top: 4px;
  background: transparent;
  color: var(--sage-deep);
  border-color: transparent;
  justify-content: flex-start;
  padding-left: 0;
}
.back-button:hover { background: transparent; transform: none; text-decoration: underline; }

.dialog-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.dialog-navigation button {
  background: none;
  border: 0;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}
.dialog-navigation button:hover { text-decoration: underline; }
.dialog-navigation > span { font-size: 12px; color: var(--muted); }

@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(200px, 0.36fr) 1fr;
    gap: 22px;
    min-height: auto;
  }
  .hero-brand h1 { font-size: 56px; }
  .header nav,
  .site-nav { gap: 0; }
  .site-nav a { padding: 9px 12px; font-size: 14px; }
}

@media (max-width: 760px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding: 12px 5%;
  }
  .header nav,
  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4px 6px;
  }
  .site-nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .site-nav a:first-child { display: none; }
  .brand { font-size: 20px; gap: 10px; }
  .brand-logo { width: 56px; height: 56px; }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 24px 5% 32px;
    min-height: auto;
  }
  .hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }
  .hero-brand .eyebrow {
    width: 100%;
    text-align: center;
  }
  .hero-brand h1 {
    font-size: 52px;
    margin: 12px 0 10px;
    text-align: center;
    width: 100%;
  }
  .hero-tagline {
    margin: 0 auto 22px;
    font-size: 16px;
    text-align: center;
    max-width: 28ch;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  .hero-note {
    text-align: center;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-backdrop { display: none; }
  .window-wrap {
    width: 100%;
  }

  .window-viewport {
    border-width: 4px;
  }
  .shop-scene {
    position: relative;
    width: 100%;
    transform: none;
  }
  .window-hint {
    display: block;
    bottom: 12px;
    white-space: normal;
    max-width: 90%;
    text-align: center;
    font-size: 12px;
    padding: 8px 12px;
  }
  .desktop-hint { display: none; }
  .mobile-hint { display: inline; }
  .hotspot-label { display: none; }
  .hotspot::after { width: 28px; height: 28px; font-size: 18px; }
  .window-caption { text-align: center; font-size: 14px; }

  .menu-section,
  .gallery-section,
  .contact-section {
    padding-left: 5%;
    padding-right: 5%;
  }
  .menu-section { padding-top: 40px; padding-bottom: 40px; }
  .menu-grid,
  .bake-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .bake-gallery img { height: 118px; }
  .bake-gallery figcaption { font-size: 14px; margin-top: 8px; }
  .menu-card-title { font-size: 18px; }
  .menu-photo { height: 118px; }

  .story { padding: 48px 6%; }
  .story h2 { font-size: 32px; }
  .story br { display: none; }

  .contact-phone { font-size: 26px; }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  dialog[open] { grid-template-columns: 1fr; max-width: 480px; }
  .dialog-visual { height: 220px; display: block; padding: 12px 0 28px; }
  .dialog-photo > img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .dialog-photo .product-placeholder,
  .dialog-photo svg { min-height: 0; height: 100%; }
  .recipe-card { padding: 24px; }
  .recipe-card h2 { font-size: 30px; }
}

@media (max-width: 380px) {
  .menu-card-title { font-size: 16px; }
  .product-placeholder strong { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
