@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600-700-latin-ext.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --cherry: #742638;
  --cherry-dark: #511724;
  --cream: #f6f0e6;
  --flour: #fffaf1;
  --charcoal: #231d1a;
  --ink-soft: #5f554f;
  --brass: #ad7c3f;
  --line: rgba(35, 29, 26, 0.16);
  --container: 1320px;
  --section-space: clamp(92px, 10vw, 150px);
}

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

html {
  min-width: 320px;
  scroll-padding-top: 24px;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--flour);
  color: var(--charcoal);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--flour);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 64px), var(--container));
  height: 106px;
  margin-inline: auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 241, 0.25);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.78);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand__copy small {
  color: rgba(255, 250, 241, 0.64);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
}

.desktop-nav a,
.header-phone {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  margin-left: clamp(24px, 3vw, 46px);
  gap: 8px;
  letter-spacing: 0.035em;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #211814;
  color: var(--flour);
}

.hero__image,
.hero__wash,
.hero > .grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -4;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(1.04);
  transform-origin: 58% 50%;
  animation: hero-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(24, 12, 11, 0.97) 0%, rgba(26, 13, 11, 0.88) 25%, rgba(26, 13, 11, 0.49) 46%, rgba(26, 13, 11, 0.04) 75%),
    linear-gradient(180deg, rgba(22, 11, 10, 0.44) 0%, transparent 31%, rgba(22, 11, 10, 0.18) 70%, rgba(18, 9, 8, 0.58) 100%);
  animation: hero-light-drift 22s ease-in-out infinite alternate;
}

.hero > .grain {
  animation: hero-grain-drift 30s linear infinite alternate;
}

@keyframes hero-drift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  52% { transform: scale(1.016) translate3d(-2px, 1px, 0); }
  100% { transform: scale(1.03) translate3d(-5px, -2px, 0); }
}

@keyframes hero-light-drift {
  from { opacity: 1; }
  to { opacity: 0.975; }
}

@keyframes hero-grain-drift {
  from { opacity: 0.37; background-position: 0 0; }
  to { opacity: 0.41; background-position: 5px -4px; }
}

.grain {
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(760px, 100svh);
  padding-top: 150px;
  padding-bottom: 96px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 12px;
  color: var(--cherry);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #eac183;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(68px, 6.25vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
}

h2 {
  margin: 0;
  font-size: clamp(48px, 5.3vw, 74px);
  line-height: 1;
  letter-spacing: -0.028em;
}

h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.hero__lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--cream {
  min-width: 176px;
  background: var(--flour);
  color: var(--cherry-dark);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.button--cream:hover {
  background: #fff;
}

.button--cherry {
  background: var(--cherry);
  color: var(--flour);
  box-shadow: 0 14px 30px rgba(116, 38, 56, 0.18);
}

.button--cherry:hover {
  background: var(--cherry-dark);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.text-link--light {
  color: rgba(255, 250, 241, 0.9);
}

.hero-proof {
  display: flex;
  min-height: 44px;
  margin-top: 38px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 12px;
  text-decoration: none;
}

.stars {
  color: #efbc6c;
  letter-spacing: 0.07em;
}

.hero-proof .stars {
  margin-right: 4px;
  font-size: 14px;
}

.hero-proof strong {
  color: var(--flour);
}

.image-placeholder {
  position: absolute;
  z-index: 3;
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 241, 0.75);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-placeholder span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d6a25d;
  box-shadow: 0 0 0 4px rgba(214, 162, 93, 0.18);
}

.image-placeholder--hero {
  right: 32px;
  bottom: 27px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--flour);
}

.trust-strip__inner {
  display: grid;
  min-height: 145px;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  align-items: stretch;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 17px;
  padding: 28px 42px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item__number {
  color: var(--cherry);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.trust-item p {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.trust-item strong {
  color: var(--charcoal);
  font-size: 13px;
}

.trust-item--location svg {
  color: var(--cherry);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-heading--split {
  display: grid;
  margin-bottom: clamp(48px, 5.2vw, 74px);
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: end;
}

.section-heading--split > p,
.section-heading--compact > p,
.backstube__lead,
.reputation__copy > p,
.final-cta__inner > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading--split > p {
  max-width: 490px;
  margin: 0 0 8px;
}

.showcase {
  background: var(--cream);
}

.editorial-grid {
  display: grid;
  height: 730px;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.68fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.editorial-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #bcae9f;
}

.editorial-frame--main {
  grid-row: 1 / 3;
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 500ms cubic-bezier(.2,.6,.2,1);
}

.editorial-frame:hover img {
  transform: scale(1.018);
}

.editorial-frame--main img {
  object-position: center center;
}

.editorial-frame--detail-one img {
  object-position: 50% 54%;
}

.editorial-frame--detail-two img {
  object-position: 66% 44%;
}

.editorial-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(26, 13, 11, 0.66));
  content: "";
  pointer-events: none;
}

.editorial-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 241, 0.9);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-frame figcaption span {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 250, 241, 0.4);
}

.section--dark {
  overflow: hidden;
  background: var(--cherry-dark);
  color: var(--flour);
}

.section--dark > .grain,
.final-cta > .grain {
  position: absolute;
  inset: 0;
}

.backstube__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(66px, 8vw, 116px);
  align-items: center;
}

.backstube__visual {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.backstube__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 250, 241, 0.16);
  content: "";
  pointer-events: none;
}

.backstube__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(0.82) contrast(1.04);
}

.backstube__caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  margin: 0;
  padding: 18px 20px;
  flex-direction: column;
  gap: 3px;
  background: rgba(31, 15, 14, 0.82);
  color: var(--flour);
  backdrop-filter: blur(7px);
}

.backstube__caption strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
}

.backstube__caption span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.backstube__visual .image-placeholder {
  right: 20px;
  bottom: 19px;
  left: 20px;
}

.backstube__copy h2 {
  max-width: 700px;
}

.backstube__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 18px;
}

.fact-list {
  max-width: 650px;
  margin: 44px 0 0;
}

.fact-list > div {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 56px 1fr;
  border-top: 1px solid rgba(255, 250, 241, 0.2);
  align-items: baseline;
}

.fact-list > div:last-child {
  border-bottom: 1px solid rgba(255, 250, 241, 0.2);
}

.fact-list dt {
  color: #e2b273;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fact-list dd {
  margin: 0;
}

.fact-list dd strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.fact-list dd span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.source-note {
  display: block;
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.5);
  font-size: 10px;
  line-height: 1.6;
}

.source-note--dark {
  color: #695f59;
}

.assortment {
  background: var(--flour);
}

.section-heading--compact {
  max-width: 800px;
  margin-bottom: 72px;
}

.section-heading--compact > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
}

.assortment-list {
  border-top: 1px solid var(--line);
}

.assortment-list article {
  display: grid;
  position: relative;
  min-height: 146px;
  padding: 30px 18px 30px 0;
  grid-template-columns: 62px minmax(280px, 0.9fr) minmax(300px, 1fr) 110px;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.assortment-list article:hover {
  padding-left: 18px;
  background: rgba(116, 38, 56, 0.035);
}

.assortment-list article::after {
  color: rgba(35, 29, 26, 0.44);
  content: attr(data-group);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: right;
  text-transform: uppercase;
}

.assortment-list article > span {
  color: var(--cherry);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.assortment-list article h3 {
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.05;
  transition: color 180ms ease;
}

.assortment-list article:hover h3,
.assortment-list__konditorei h3 {
  color: var(--cherry);
}

.assortment-list article p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.025em;
  line-height: 1.65;
}

.assortment-list article p i {
  padding-inline: 5px;
  color: var(--brass);
  font-style: normal;
}

.preview-note {
  margin: 28px 0 0;
  padding: 14px 17px;
  border-left: 3px solid var(--brass);
  background: rgba(173, 124, 63, 0.08);
  color: #6e625a;
  font-size: 11px;
  line-height: 1.6;
}

.reputation {
  background: var(--cream);
}

.reputation__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.reputation__score {
  display: flex;
  min-height: 340px;
  align-items: center;
  gap: 22px;
  padding: 52px;
  border: 1px solid var(--line);
  background: var(--flour);
  color: var(--cherry);
}

.reputation__score > span {
  font-family: var(--font-display);
  font-size: clamp(100px, 11vw, 154px);
  line-height: 0.7;
  letter-spacing: -0.07em;
}

.reputation__score > div {
  display: grid;
  gap: 4px;
}

.reputation__score .stars {
  font-size: 13px;
}

.reputation__score small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reputation__copy h2 {
  max-width: 650px;
}

.reputation__copy > p {
  max-width: 650px;
  margin: 26px 0 22px;
  font-size: 18px;
}

.reputation__copy .source-note {
  margin-top: 18px;
}

.visit {
  background: var(--flour);
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 0.82fr);
  border: 1px solid var(--line);
}

.location-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--cherry-dark);
  color: var(--flour);
}

.location-panel__content {
  display: flex;
  min-height: 560px;
  padding: clamp(54px, 6vw, 86px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-panel__mark {
  margin-bottom: 48px;
  color: #eac183;
}

.location-panel__content > p {
  margin: 0 0 13px;
  color: #eac183;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-panel address {
  font-family: var(--font-display);
  max-width: 530px;
  font-size: clamp(34px, 4vw, 51px);
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.location-panel__phone {
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.location-panel__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 24px;
}

.location-panel .button--cherry {
  background: var(--flour);
  color: var(--cherry-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.location-panel .button--cherry:hover {
  background: #fff;
}

.hours-panel {
  padding: clamp(40px, 5vw, 74px);
  background: var(--cream);
}

.hours-panel h3 {
  margin-bottom: 32px;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: grid;
  padding: 18px 0;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 24px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.hours-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.hours-list dt,
.hours-list dd {
  font-size: 13px;
  line-height: 1.55;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

.hours-list__uncertain dd {
  color: var(--cherry);
  font-weight: 750;
}

.hours-panel .preview-note {
  margin-top: 26px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 145px);
  background: var(--cherry);
  color: var(--flour);
  text-align: left;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: end;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta__contact address {
  color: rgba(255, 250, 241, 0.78);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: normal;
  line-height: 1.35;
}

.final-cta__actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 24px;
}

.site-footer {
  padding-block: 32px;
  background: var(--charcoal);
  color: var(--flour);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__inner > div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.site-footer span,
.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 250, 241, 0.5);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 241, 0.82);
  font-size: 11px;
  font-weight: 750;
}

.mobile-cta {
  display: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.button:active,
.text-link:active {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-phone {
    margin-left: auto;
    margin-right: 18px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 250, 241, 0.38);
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    padding: 130px 32px 48px;
    flex-direction: column;
    gap: 0;
    background: var(--charcoal);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.16);
    font-family: var(--font-display);
    font-size: 30px;
    text-decoration: none;
  }

  .mobile-menu__call {
    margin-top: 28px;
    border: 0 !important;
    background: var(--flour);
    color: var(--cherry-dark);
    text-align: center;
  }

  .trust-item {
    padding-inline: 24px;
  }

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

  .editorial-grid {
    height: 650px;
  }

  .backstube__grid,
  .reputation__grid {
    gap: 54px;
  }

  .backstube__visual {
    height: 570px;
  }

  .assortment-list article {
    grid-template-columns: 46px minmax(190px, 0.9fr) minmax(210px, 1fr) 76px;
    gap: 16px;
  }

  .visit__grid {
    grid-template-columns: 1fr;
  }

  .hours-panel {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 76px;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .container,
  .site-header__inner {
    width: calc(100% - 32px);
  }

  .site-header__inner {
    height: 82px;
  }

  .brand {
    gap: 10px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .brand__copy small,
  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 44px;
    margin-right: 10px;
    justify-content: center;
    border: 1px solid rgba(255, 250, 241, 0.38);
    border-radius: 50%;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 812px;
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(20, 10, 9, 0.72) 0%, rgba(20, 10, 9, 0.28) 26%, rgba(20, 10, 9, 0.52) 53%, rgba(20, 10, 9, 0.96) 100%),
      linear-gradient(90deg, rgba(20, 10, 9, 0.58), rgba(20, 10, 9, 0.08));
  }

  .hero__content {
    min-height: 812px;
    padding-top: 150px;
    padding-bottom: 62px;
    justify-content: flex-end;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .eyebrow::before {
    width: 22px;
  }

  h1 {
    font-size: clamp(53px, 15.2vw, 62px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(41px, 12.5vw, 54px);
  }

  h3 {
    font-size: 29px;
  }

  .hero__lead {
    max-width: 335px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
    min-height: 52px;
  }

  .hero__actions .text-link {
    justify-content: center;
    border: 1px solid rgba(255, 250, 241, 0.42);
    border-radius: 2px;
  }

  .hero-proof {
    margin-top: 22px;
    gap: 6px;
    font-size: 11px;
  }

  .hero-proof .stars {
    font-size: 12px;
  }

  .image-placeholder--hero {
    right: auto;
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    font-size: 7px;
  }

  .trust-strip__inner {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 112px;
    padding: 22px 16px;
    gap: 10px;
  }

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item--location {
    grid-column: 1 / 3;
    border-top: 1px solid var(--line);
  }

  .trust-item__number {
    font-size: 35px;
  }

  .trust-item p {
    font-size: 10px;
  }

  .trust-item strong {
    font-size: 11px;
  }

  .section-heading--split,
  .section-heading--compact {
    margin-bottom: 38px;
  }

  .section-heading--split {
    gap: 20px;
  }

  .section-heading--split > p,
  .section-heading--compact > p,
  .backstube__lead,
  .reputation__copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .editorial-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 230px;
    gap: 8px;
  }

  .editorial-frame--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .editorial-frame--detail-one,
  .editorial-frame--detail-two {
    grid-row: 2;
  }

  .editorial-frame figcaption {
    right: 11px;
    bottom: 11px;
    left: 11px;
    gap: 7px;
    font-size: 7.5px;
    letter-spacing: 0.055em;
  }

  .backstube__grid,
  .reputation__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .backstube__visual {
    height: 500px;
  }

  .backstube__copy {
    order: 0;
  }

  .backstube__copy h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.02;
  }

  .backstube__lead {
    margin-top: 24px;
  }

  .backstube__copy .source-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .fact-list {
    margin-top: 36px;
  }

  .fact-list > div {
    padding: 15px 0;
    grid-template-columns: 44px 1fr;
  }

  .fact-list dd {
    min-width: 0;
  }

  .fact-list dd strong {
    font-size: 21px;
  }

  .backstube__caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px 16px;
  }

  .assortment-list article {
    min-height: auto;
    padding: 24px 0;
    grid-template-columns: 40px 1fr;
    gap: 8px 12px;
  }

  .assortment-list article:hover {
    padding-left: 0;
    background: transparent;
  }

  .assortment-list article::after {
    display: none;
  }

  .assortment-list article h3 {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  .assortment-list article p {
    grid-column: 2;
    max-width: 300px;
    font-size: 12px;
    line-height: 1.55;
  }

  .reputation__score {
    min-height: 210px;
    padding: 30px;
  }

  .reputation__score > span {
    font-size: 96px;
  }

  .reputation__copy {
    order: -1;
  }

  .visit__grid {
    border-right: 0;
    border-left: 0;
  }

  .location-panel {
    min-height: auto;
  }

  .location-panel__content {
    min-height: 470px;
    padding: 46px 24px;
  }

  .location-panel__mark {
    width: 36px;
    height: 36px;
    margin-bottom: 36px;
  }

  .location-panel address {
    font-size: clamp(31px, 9vw, 38px);
  }

  .location-panel__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .location-panel__actions .button,
  .location-panel__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hours-panel {
    padding: 36px 20px;
  }

  .hours-list > div {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .hours-list dt,
  .hours-list dd {
    font-size: 12px;
  }

  .final-cta__inner > p {
    font-size: 15px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .final-cta__contact address {
    font-size: 21px;
  }

  .final-cta__actions {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-cta__actions .button,
  .final-cta__actions .text-link {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .site-footer {
    padding-block: 28px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--cherry);
    color: var(--flour);
    box-shadow: 0 -8px 25px rgba(35, 29, 26, 0.13);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
  }
}

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

  .hero__image,
  .hero__wash,
  .hero > .grain {
    transform: none !important;
    animation: none !important;
  }

  .hero__image {
    will-change: auto;
  }
}

@media (max-width: 340px) {
  .container,
  .site-header__inner {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 49px;
  }

  .hero__content {
    padding-bottom: 56px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero-proof {
    margin-top: 17px;
  }

  .editorial-grid {
    grid-template-rows: 370px 220px;
  }

  .reputation__score {
    padding: 28px;
  }

  .reputation__score > span {
    font-size: 94px;
  }

  .hours-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Controlled editorial redesign — all sections below the approved hero */

.proof-ledger {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--flour);
}

.proof-ledger__inner {
  display: grid;
  min-height: 154px;
  grid-template-columns: 1.2fr 1fr 1.6fr auto;
  align-items: stretch;
}

.proof-ledger__rating,
.proof-ledger__entry,
.proof-ledger__date {
  display: flex;
  margin: 0;
  padding: 28px clamp(24px, 3vw, 48px);
  align-items: center;
  border-right: 1px solid var(--line);
}

.proof-ledger__rating {
  padding-left: 0;
  gap: 22px;
}

.proof-ledger__rating strong {
  color: var(--cherry);
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: 0.8;
}

.proof-ledger__rating p,
.proof-ledger__entry p,
.proof-ledger__date {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.proof-ledger__rating .stars {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.proof-ledger__entry {
  gap: 18px;
}

.proof-ledger__entry > span {
  color: var(--cherry);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.proof-ledger__entry--place > span {
  font-size: clamp(27px, 2.5vw, 38px);
}

.proof-ledger__date {
  padding-right: 0;
  border-right: 0;
}

.photo-story {
  overflow: hidden;
  padding: clamp(118px, 11vw, 178px) 0 clamp(130px, 12vw, 190px);
  background: var(--flour);
}

.photo-story__inner {
  position: relative;
}

.photo-story__intro {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.photo-story__intro h2,
.family-story__copy h2,
.product-editorial__intro h2,
.konditorei-moment__copy h2,
.visit-editorial__intro h2,
.closing-composition h2 {
  letter-spacing: -0.055em;
}

.photo-story__intro h2 {
  max-width: 950px;
  font-size: clamp(60px, 7.2vw, 108px);
  line-height: 0.9;
}

.photo-story__intro > p {
  max-width: 390px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.photo-story__mosaic {
  position: relative;
  display: grid;
  height: clamp(670px, 58vw, 860px);
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.72fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.photo-story__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d7cab9;
}

.photo-story__image--bread {
  grid-row: 1 / 3;
}

.photo-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.photo-story__image--bread img {
  object-position: center 52%;
}

.photo-story__image--brezel img {
  object-position: center 43%;
}

.photo-story__image--praline img {
  object-position: center 48%;
}

.photo-story__image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--flour);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.photo-story__image figcaption span {
  color: #f2c77d;
}

.photo-story__aside {
  position: absolute;
  right: -6px;
  bottom: -76px;
  margin: 0;
  color: rgba(116, 38, 56, 0.18);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-align: right;
}

.family-story {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 11vw, 178px) 0;
  background: linear-gradient(118deg, #3b1119 0%, var(--cherry-dark) 46%, #651f31 100%);
  color: var(--flour);
}

.family-story::before {
  position: absolute;
  top: -0.25em;
  right: -0.05em;
  content: "B";
  color: rgba(255, 250, 241, 0.035);
  font-family: var(--font-display);
  font-size: min(70vw, 900px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.family-story > .grain {
  opacity: 0.26;
}

.family-story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(64px, 8vw, 130px);
}

.family-story__portrait {
  position: relative;
  height: clamp(620px, 60vw, 820px);
  margin: 0;
}

.family-story__portrait::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: 24px;
  bottom: 24px;
  left: -24px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  content: "";
}

.family-story__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.82) contrast(1.03);
}

.family-story__portrait figcaption {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;
  display: grid;
  min-width: 260px;
  padding: 18px 24px;
  background: var(--charcoal);
}

.family-story__portrait figcaption strong,
.family-story__name strong {
  font-family: var(--font-display);
  font-size: 23px;
}

.family-story__portrait figcaption span,
.family-story__name span {
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.family-story__copy {
  padding-top: 16px;
}

.family-story__copy h2 {
  max-width: 720px;
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: 0.91;
}

.family-story__lead {
  max-width: 660px;
  margin: 38px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.family-story__name {
  display: none;
}

.family-story__facts {
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 250, 241, 0.24);
}

.family-story__facts > div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 241, 0.19);
}

.family-story__facts dt {
  color: #d0a261;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.family-story__facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
}

.family-story .source-note {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.46);
}

.product-editorial {
  padding: clamp(126px, 12vw, 190px) 0;
  background: var(--cream);
}

.product-editorial__intro {
  display: grid;
  margin-bottom: clamp(56px, 7vw, 100px);
  grid-template-columns: 0.95fr 1.25fr 0.7fr;
  align-items: end;
  gap: 40px;
}

.product-editorial__intro .eyebrow {
  align-self: start;
}

.product-editorial__intro h2 {
  font-size: clamp(66px, 7vw, 106px);
  line-height: 0.9;
}

.product-editorial__intro > p:last-child {
  max-width: 330px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.product-collage {
  display: grid;
  min-height: 780px;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-template-rows: 360px 420px;
  gap: 14px;
}

.product-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-tile > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 34px 30px;
  color: var(--flour);
  background: linear-gradient(transparent, rgba(22, 14, 11, 0.88));
}

.product-tile span {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-tile h3 {
  margin: 0;
  font-size: clamp(35px, 3.5vw, 54px);
  line-height: 0.96;
}

.product-tile p {
  margin: 15px 0 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.product-tile--bread {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.product-tile--bread img {
  object-position: center 54%;
}

.product-tile--sweet {
  display: flex;
  padding: 54px 48px;
  grid-column: 9 / 15;
  grid-row: 1;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cherry);
  color: var(--flour);
}

.product-tile--sweet::before {
  position: absolute;
  top: 34px;
  right: 38px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 50%;
  content: "";
}

.product-tile--sweet h3 {
  font-size: clamp(46px, 4.2vw, 66px);
}

.product-tile--pralines {
  grid-column: 9 / 12;
  grid-row: 2;
}

.product-tile--pralines h3,
.product-tile--seasonal h3 {
  font-size: clamp(28px, 2.6vw, 40px);
}

.product-tile--seasonal {
  grid-column: 12 / 15;
  grid-row: 2;
}

.product-tile--seasonal img {
  object-position: center;
}

.konditorei-moment {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 11vw, 176px) 0;
  background: var(--charcoal);
  color: var(--flour);
}

.konditorei-moment__inner {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(360px, 0.74fr) minmax(600px, 1.26fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.konditorei-moment__copy h2 {
  color: var(--flour);
  font-size: clamp(78px, 8vw, 122px);
  line-height: 0.83;
}

.konditorei-moment__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 38px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.konditorei-moment__note {
  display: block;
  max-width: 390px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  color: rgba(255, 250, 241, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.konditorei-moment__gallery {
  position: relative;
  height: 760px;
}

.konditorei-moment__gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.konditorei-moment__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.konditorei-moment__main {
  top: 0;
  right: 0;
  width: 73%;
  height: 100%;
}

.konditorei-moment__detail {
  bottom: 54px;
  left: 0;
  width: 48%;
  height: 38%;
  border: 12px solid var(--charcoal);
}

.review-editorial {
  padding: clamp(116px, 10vw, 164px) 0;
  background: var(--flour);
}

.review-editorial__inner {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.82fr;
  align-items: end;
  gap: clamp(30px, 5vw, 80px);
}

.review-editorial__inner > .eyebrow {
  align-self: start;
}

.review-editorial__score {
  color: var(--cherry);
  font-family: var(--font-display);
  font-size: clamp(160px, 20vw, 304px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.68;
}

.review-editorial__copy .stars {
  display: block;
  margin-bottom: 22px;
  color: var(--brass);
  font-size: 19px;
  letter-spacing: 0.12em;
}

.review-editorial__copy h2 {
  font-size: clamp(45px, 4.8vw, 72px);
  line-height: 0.98;
}

.review-editorial__copy > p {
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.review-editorial__copy small {
  display: block;
  margin-top: 24px;
  color: #81746c;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.visit-editorial {
  padding: clamp(118px, 11vw, 176px) 0;
  background: var(--cream);
}

.visit-editorial__intro {
  display: grid;
  margin-bottom: clamp(54px, 6vw, 88px);
  grid-template-columns: 0.54fr 1.46fr;
  align-items: end;
}

.visit-editorial__intro h2 {
  font-size: clamp(70px, 8vw, 120px);
  line-height: 0.84;
}

.visit-editorial__grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.92fr 1.08fr;
}

.visit-editorial__address {
  display: flex;
  padding: clamp(52px, 6vw, 86px);
  flex-direction: column;
  justify-content: center;
  background: var(--cherry-dark);
  color: var(--flour);
}

.visit-editorial__address > p {
  margin: 0 0 48px;
  color: #d6ad6d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-editorial__address address {
  font-family: var(--font-display);
  font-size: clamp(45px, 5vw, 76px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.visit-editorial__address > a {
  width: fit-content;
  margin-top: 30px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.visit-editorial__actions {
  display: flex;
  margin-top: 50px;
  align-items: center;
  gap: 28px;
}

.visit-editorial__hours {
  display: flex;
  padding: clamp(52px, 6vw, 86px);
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--flour);
}

.visit-editorial__hours-head {
  display: flex;
  padding-bottom: 25px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.visit-editorial__hours-head span {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
}

.visit-editorial__hours-head small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-editorial__hours dl {
  margin: 0;
}

.visit-editorial__hours dl > div {
  display: grid;
  min-height: 76px;
  padding: 17px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}

.visit-editorial__hours dt,
.visit-editorial__hours dd {
  font-size: 13px;
  line-height: 1.55;
}

.visit-editorial__hours dt {
  font-weight: 800;
}

.visit-editorial__hours dd {
  margin: 0;
  text-align: right;
}

.visit-editorial__hours .is-uncertain dd {
  color: var(--cherry);
  font-weight: 800;
}

.visit-editorial__hours > p {
  margin: 28px 0 0;
  padding: 18px 20px;
  background: #f1e8da;
  color: #6e625a;
  font-size: 10px;
  line-height: 1.65;
}

.closing-composition {
  position: relative;
  overflow: hidden;
  padding: clamp(102px, 9vw, 142px) 0;
  background: linear-gradient(110deg, #651f31 0%, var(--cherry) 52%, #4e1722 100%);
  color: var(--flour);
}

.closing-composition > .grain {
  opacity: 0.25;
}

.closing-composition__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.closing-composition h2 {
  color: var(--flour);
  font-size: clamp(76px, 8.5vw, 128px);
  line-height: 0.84;
}

.closing-composition__contact {
  padding-bottom: 8px;
}

.closing-composition__contact address {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.22;
}

.closing-composition__contact > div {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 24px;
}

.site-footer--editorial {
  padding: 32px 0;
  background: #1d1815;
}

.site-footer--editorial .site-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  align-items: center;
  gap: 32px;
}

.site-footer--editorial .site-footer__brand {
  display: grid;
  gap: 4px;
}

.site-footer--editorial .site-footer__links {
  display: flex;
  gap: 24px;
}

.site-footer--editorial p {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer--editorial p small {
  color: rgba(255, 250, 241, 0.33);
  font-size: 8px;
  letter-spacing: 0.05em;
}

@media (hover: hover) and (pointer: fine) {
  .photo-story__image:hover img,
  .product-tile:hover img {
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .proof-ledger__inner {
    grid-template-columns: 1.05fr 0.85fr 1.35fr;
  }

  .proof-ledger__date {
    display: none;
  }

  .proof-ledger__entry--place {
    border-right: 0;
  }

  .family-story__inner {
    grid-template-columns: minmax(360px, 0.82fr) minmax(430px, 1.18fr);
    gap: 66px;
  }

  .product-collage {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .product-tile--bread {
    grid-column: 1 / 8;
  }

  .product-tile--sweet {
    grid-column: 8 / 13;
  }

  .product-tile--pralines {
    grid-column: 8 / 11;
  }

  .product-tile--seasonal {
    grid-column: 11 / 13;
  }

  .product-tile > div {
    padding-inline: 24px;
  }

  .konditorei-moment__inner {
    grid-template-columns: 0.74fr 1.26fr;
    gap: 48px;
  }

  .review-editorial__inner {
    grid-template-columns: 0.3fr 1fr 0.8fr;
  }
}

@media (max-width: 860px) {
  .photo-story__intro,
  .product-editorial__intro {
    grid-template-columns: 1fr;
  }

  .photo-story__intro > p,
  .product-editorial__intro > p:last-child {
    max-width: 560px;
  }

  .family-story__inner,
  .konditorei-moment__inner {
    grid-template-columns: 1fr;
  }

  .family-story__portrait {
    width: min(78vw, 620px);
  }

  .family-story__copy {
    max-width: 720px;
  }

  .konditorei-moment__gallery {
    width: min(100%, 720px);
  }

  .review-editorial__inner {
    grid-template-columns: 1fr 1fr;
  }

  .review-editorial__inner > .eyebrow {
    grid-column: 1 / 3;
  }

  .visit-editorial__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .visit-editorial__grid {
    grid-template-columns: 1fr;
  }

  .visit-editorial__hours {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .proof-ledger__inner {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .proof-ledger__rating,
  .proof-ledger__entry {
    min-height: 100px;
    padding: 20px 18px;
  }

  .proof-ledger__rating {
    gap: 12px;
  }

  .proof-ledger__rating strong {
    font-size: 47px;
  }

  .proof-ledger__rating p,
  .proof-ledger__entry p {
    font-size: 8px;
  }

  .proof-ledger__entry > span {
    font-size: 30px;
  }

  .proof-ledger__entry:nth-child(2) {
    border-right: 0;
  }

  .proof-ledger__entry--place {
    grid-column: 1 / 3;
    justify-content: center;
    border-top: 1px solid var(--line);
  }

  .proof-ledger__entry--place > span {
    font-size: 29px;
  }

  .photo-story {
    padding: 88px 0 106px;
  }

  .photo-story__intro {
    margin-bottom: 40px;
    gap: 22px;
  }

  .photo-story__intro h2 {
    font-size: clamp(47px, 13.8vw, 58px);
    line-height: 0.94;
  }

  .photo-story__intro > p {
    margin: 0;
    font-size: 16px;
  }

  .photo-story__mosaic {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 250px;
    gap: 8px;
  }

  .photo-story__image--bread {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .photo-story__image--brezel,
  .photo-story__image--praline {
    grid-row: 2;
  }

  .photo-story__image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .photo-story__aside {
    display: none;
  }

  .family-story {
    padding: 98px 0 94px;
  }

  .family-story__inner {
    gap: 60px;
  }

  .family-story__inner > *,
  .konditorei-moment__inner > * {
    min-width: 0;
  }

  .family-story__portrait {
    width: calc(100% - 18px);
    height: 520px;
    margin-left: 18px;
  }

  .family-story__portrait::before {
    top: -15px;
    right: 15px;
    bottom: 15px;
    left: -15px;
  }

  .family-story__portrait figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .family-story__copy h2 {
    font-size: clamp(44px, 12.4vw, 49px);
    line-height: 0.96;
  }

  .family-story__lead {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
  }

  .family-story__facts {
    margin-top: 38px;
  }

  .family-story__facts > div {
    min-height: 66px;
  }

  .family-story__facts dd {
    font-size: 22px;
  }

  .product-editorial {
    padding: 94px 0 104px;
  }

  .product-editorial__intro {
    margin-bottom: 42px;
    gap: 18px;
  }

  .product-editorial__intro h2 {
    font-size: clamp(49px, 14.4vw, 60px);
    line-height: 0.93;
  }

  .product-editorial__intro > p:last-child {
    font-size: 16px;
  }

  .product-collage {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 300px 300px 350px;
    gap: 8px;
  }

  .product-tile--bread {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .product-tile--sweet {
    padding: 36px 28px;
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .product-tile--sweet h3 {
    font-size: 48px;
  }

  .product-tile--pralines {
    grid-column: 1;
    grid-row: 3;
  }

  .product-tile--seasonal {
    grid-column: 2;
    grid-row: 3 / 5;
  }

  .product-tile--pralines h3,
  .product-tile--seasonal h3 {
    font-size: clamp(25px, 7.4vw, 31px);
  }

  .product-tile > div {
    padding: 54px 16px 18px;
  }

  .product-tile--bread > div {
    padding: 80px 24px 26px;
  }

  .product-tile p {
    font-size: 9px;
  }

  .konditorei-moment {
    padding: 94px 0 104px;
  }

  .konditorei-moment__inner {
    min-height: 0;
    gap: 52px;
  }

  .konditorei-moment__copy h2 {
    font-size: clamp(62px, 17vw, 68px);
    line-height: 0.86;
  }

  .konditorei-moment__copy > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 16px;
  }

  .konditorei-moment__note {
    margin-top: 28px;
  }

  .konditorei-moment__gallery {
    height: 590px;
  }

  .konditorei-moment__main {
    width: 88%;
    height: 520px;
  }

  .konditorei-moment__detail {
    bottom: 0;
    width: 68%;
    height: 210px;
    border-width: 8px;
  }

  .review-editorial {
    padding: 94px 0 102px;
  }

  .review-editorial__inner {
    display: block;
  }

  .review-editorial__score {
    margin: 52px 0 32px;
    font-size: clamp(146px, 47vw, 184px);
    line-height: 0.66;
  }

  .review-editorial__copy h2 {
    font-size: 46px;
  }

  .visit-editorial {
    padding: 94px 0 0;
  }

  .visit-editorial__intro {
    margin-bottom: 42px;
  }

  .visit-editorial__intro h2 {
    font-size: clamp(60px, 18vw, 74px);
    line-height: 0.9;
  }

  .visit-editorial__grid {
    width: calc(100% + 24px);
    min-height: 0;
    margin-left: -12px;
  }

  .visit-editorial__grid > * {
    min-width: 0;
  }

  .visit-editorial__address,
  .visit-editorial__hours {
    padding: 56px 28px;
  }

  .visit-editorial__address address {
    font-size: 45px;
  }

  .visit-editorial__actions {
    display: grid;
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visit-editorial__actions .button,
  .visit-editorial__actions .text-link {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .visit-editorial__hours-head span {
    font-size: 34px;
  }

  .visit-editorial__hours dl > div {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .visit-editorial__hours dt,
  .visit-editorial__hours dd {
    font-size: 12px;
  }

  .closing-composition {
    padding: 92px 0 86px;
  }

  .closing-composition__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .closing-composition h2 {
    font-size: clamp(64px, 19vw, 78px);
    line-height: 0.87;
  }

  .closing-composition__contact address {
    font-size: 25px;
  }

  .closing-composition__contact > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing-composition__contact .button,
  .closing-composition__contact .text-link {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .site-footer--editorial {
    padding: 30px 0;
  }

  .site-footer--editorial .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer--editorial .site-footer__links {
    gap: 20px;
  }

  .site-footer--editorial p {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer--editorial p small {
    width: 100%;
  }

  .mobile-cta {
    height: calc(56px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .proof-ledger__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .proof-ledger__rating,
  .proof-ledger__entry {
    min-width: 0;
    gap: 8px;
  }

  .proof-ledger__entry p {
    overflow-wrap: anywhere;
  }

  .proof-ledger__entry--place {
    width: 100%;
  }

  .photo-story__mosaic {
    grid-template-rows: 390px 220px;
  }

  .family-story__portrait {
    height: 475px;
  }

  .product-collage {
    grid-template-rows: 450px 285px 280px 330px;
  }

  .product-tile--sweet h3 {
    font-size: 43px;
  }

  .visit-editorial__address address {
    font-size: 36px;
  }

  .visit-editorial__hours-head small {
    display: none;
  }

  .visit-editorial__hours dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .visit-editorial__hours dd {
    text-align: left;
  }

  .closing-composition__inner > * {
    min-width: 0;
  }

  .closing-composition h2 {
    font-size: 56px;
  }

  .closing-composition__contact address {
    overflow-wrap: anywhere;
    font-size: 22px;
  }
}

/* Final anti-generic polish pass */

.proof-ledger {
  border-bottom: 1px solid var(--line);
}

.proof-ledger__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.proof-ledger__line,
.proof-ledger__date {
  margin: 0;
  padding: 0;
  border: 0;
}

.proof-ledger__line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.015em;
}

.proof-ledger__line a {
  color: var(--cherry);
  text-decoration-color: color-mix(in srgb, var(--cherry) 34%, transparent);
  text-underline-offset: 4px;
}

.proof-ledger__line > span[aria-hidden="true"] {
  color: var(--brass);
}

.proof-ledger__date {
  flex: 0 0 auto;
  color: #81746c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Three-level headline hierarchy: story moments stay dominant, content sections step back. */
.photo-story__intro h2 {
  font-size: clamp(58px, 5.9vw, 86px);
}

.product-editorial__intro h2,
.konditorei-moment__copy h2,
.visit-editorial__intro h2 {
  font-size: clamp(54px, 5vw, 72px);
  line-height: 0.94;
}

.review-editorial__copy h2 {
  font-size: clamp(48px, 4.4vw, 64px);
}

.product-editorial .eyebrow::before,
.review-editorial .eyebrow::before,
.visit-editorial .eyebrow::before {
  display: none;
}

.product-editorial .eyebrow,
.review-editorial .eyebrow,
.visit-editorial .eyebrow {
  color: var(--ink-soft);
  letter-spacing: 0.16em;
}

.product-tile--sweet::before {
  display: none;
}

.product-tile--bread .product-tile__detail-image {
  transform: scale(1.72);
  transform-origin: 46% 52%;
}

.product-tile--seasonal {
  background: var(--charcoal);
  color: var(--flour);
}

.product-tile--seasonal > div {
  top: 0;
  display: flex;
  padding: 30px 24px;
  flex-direction: column;
  justify-content: flex-end;
  background: none;
}

.photo-story,
.product-editorial,
.review-editorial,
.visit-editorial {
  border-top: 1px solid var(--line);
}

.mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  transition: opacity 180ms ease, transform 220ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .proof-ledger__inner {
    min-height: 78px;
    padding-block: 15px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }

  .proof-ledger__line {
    gap: 4px 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .proof-ledger__date {
    display: block;
    font-size: 7px;
  }

  .photo-story {
    padding: 72px 0 84px;
  }

  .photo-story__intro {
    margin-bottom: 32px;
    gap: 16px;
  }

  .photo-story__intro h2,
  .product-editorial__intro h2,
  .konditorei-moment__copy h2,
  .visit-editorial__intro h2 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.96;
  }

  .photo-story__mosaic {
    grid-template-rows: 340px 200px;
  }

  .family-story__copy h2 {
    font-size: clamp(52px, 13.8vw, 56px);
  }

  .product-editorial {
    padding: 72px 0 82px;
  }

  .product-editorial__intro {
    margin-bottom: 32px;
    gap: 14px;
  }

  .product-collage {
    grid-template-rows: 300px 220px 235px 260px;
  }

  .product-tile--sweet {
    padding: 30px 24px;
  }

  .product-tile--sweet h3 {
    font-size: 44px;
  }

  .product-tile--bread .product-tile__detail-image {
    transform: scale(1.92);
  }

  .product-tile--seasonal > div {
    padding: 28px 18px;
  }

  .konditorei-moment {
    padding: 76px 0 84px;
  }

  .konditorei-moment__inner {
    gap: 40px;
  }

  .konditorei-moment__copy > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .konditorei-moment__note {
    margin-top: 22px;
  }

  .konditorei-moment__gallery {
    height: 460px;
  }

  .konditorei-moment__main {
    height: 400px;
  }

  .konditorei-moment__detail {
    height: 170px;
  }

  .review-editorial {
    padding: 66px 0 74px;
  }

  .review-editorial__score {
    margin: 38px 0 25px;
    font-size: clamp(132px, 43vw, 168px);
  }

  .review-editorial__copy h2 {
    font-size: clamp(38px, 11vw, 44px);
  }

  .visit-editorial {
    padding-top: 72px;
  }

  .visit-editorial__intro {
    margin-bottom: 32px;
  }

  .visit-editorial__address,
  .visit-editorial__hours {
    padding: 44px 28px;
  }

  .closing-composition {
    padding: 80px 0 74px;
  }
}

@media (max-width: 360px) {
  .proof-ledger__line {
    font-size: 11px;
  }

  .photo-story__mosaic {
    grid-template-rows: 315px 190px;
  }

  .product-collage {
    grid-template-rows: 285px 210px 220px 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta {
    transition: none;
  }
}
