:root {
  --ink: #211610;
  --paper: #f4ead8;
  --paper-deep: #dfcdb3;
  --green: #4a281d;
  --green-soft: #6b3d2c;
  --yellow: #f5d20b;
  --red: #a33a2b;
  --white: #fffdf7;
  --line: rgba(22, 23, 19, .22);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000;
  padding: 10px 16px; color: var(--ink); background: var(--yellow);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

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

.utility-bar { color: var(--white); background: var(--green); font-size: 13px; }
.utility-bar__inner {
  min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.utility-bar p { margin: 0; }
.utility-bar__inner > div { display: flex; gap: 22px; }
.utility-bar a { text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; }
.status-dot {
  display: inline-block; width: 8px; height: 8px; margin-right: 8px;
  border-radius: 50%; background: #85c780;
}
.status-dot.is-closed { background: #e89983; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(244, 238, 223, .95);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(12px);
}
.header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 186px; background: #050505; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a, .saved-link {
  position: relative; padding: 9px 0; border: 0; background: transparent;
  font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px;
  background: var(--red); transition: right .2s ease;
}
.site-nav a:hover::after { right: 0; }
.saved-link {
  display: flex; align-items: center; gap: 8px; padding-inline: 12px; border: 1px solid var(--ink);
}
.saved-link span {
  min-width: 20px; height: 20px; display: grid; place-items: center;
  color: var(--ink); background: var(--yellow); font-size: 12px;
}
.menu-toggle { display: none; }

.hero { position: relative; min-height: 710px; isolation: isolate; background: #9c4a2f; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(45, 24, 16, .32), rgba(45, 24, 16, 0) 60%);
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/winkel-panorama.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero__content { min-height: 710px; display: flex; align-items: center; padding-block: 60px; }
.hero__paper {
  width: min(650px, 67vw); padding: 55px 58px 45px;
  background: var(--paper); box-shadow: 18px 18px 0 rgba(74, 40, 29, .92);
  clip-path: polygon(0 0, 98% 0, 100% 94%, 4% 100%, 0 97%);
}
.overline {
  margin: 0 0 17px; color: var(--red); font-size: 12px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { max-width: 600px; margin: 0; font-size: clamp(53px, 6.1vw, 90px); letter-spacing: -.045em; }
.hero__lead { max-width: 550px; margin: 27px 0 0; font-size: 18px; line-height: 1.55; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 20px; border: 1px solid transparent; text-decoration: none; font-weight: 700;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button--primary { color: var(--white); background: var(--green); }
.button--dark { color: var(--white); background: var(--ink); }
.button--yellow { color: var(--ink); background: var(--yellow); }
.text-link {
  display: inline-flex; gap: 12px; align-items: center; font-weight: 700;
  text-underline-offset: 5px; text-decoration-thickness: 1px;
}
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translate(3px, 2px); }
.hero__facts {
  margin: 44px 0 0; padding-top: 25px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.hero__facts div { display: grid; }
.hero__facts dt { font-family: var(--serif); font-size: 30px; line-height: 1; }
.hero__facts dd { margin: 6px 0 0; color: #57564e; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }

.intro-strip { background: var(--yellow); border-block: 1px solid var(--ink); }
.intro-strip__grid { min-height: 105px; display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); }
.intro-strip p, .intro-strip a {
  margin: 0; padding: 23px 24px; display: flex; align-items: center; border-right: 1px solid var(--ink);
}
.intro-strip p { padding-left: 0; font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.intro-strip a { justify-content: space-between; gap: 16px; font-size: 14px; font-weight: 700; text-decoration: none; }
.intro-strip a:last-child { border-right: 0; }
.intro-strip a:hover { color: var(--white); background: var(--green); }
.intro-strip span { font-family: var(--serif); font-size: 18px; }

.section-heading { max-width: 780px; margin-bottom: 55px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); gap: 70px; align-items: end; }
.section-heading h2, .guide__intro h2, .story__copy h2, .visit h2, .review-story h2 {
  margin: 0; font-size: clamp(48px, 6vw, 78px); letter-spacing: -.04em;
}
.section-heading > p:last-child { margin: 0 0 5px; color: #5e5b51; }

.catalog { background: var(--paper); }
.catalog-tools {
  padding: 20px; display: grid; grid-template-columns: 1fr 280px auto; gap: 14px;
  color: var(--white); background: var(--green); box-shadow: 9px 9px 0 var(--yellow);
}
.catalog-tools label { display: grid; gap: 5px; }
.catalog-tools label span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-tools input, .catalog-tools select {
  width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.35);
  border-radius: 0; color: var(--white); background: rgba(255,255,255,.06); outline: none;
}
.catalog-tools input::placeholder { color: rgba(255,255,255,.62); }
.catalog-tools option { color: var(--ink); background: var(--paper); }
.catalog-tools input:focus, .catalog-tools select:focus { border-color: var(--yellow); }
.tool-button { align-self: end; min-height: 50px; padding: 10px 18px; border: 1px solid var(--white); color: var(--white); background: transparent; cursor: pointer; font-weight: 700; }
.tool-button:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.category-index { margin: 44px 0 24px; display: flex; gap: 0; overflow-x: auto; border-block: 1px solid var(--line); scrollbar-width: thin; }
.category-index button {
  flex: 0 0 auto; padding: 15px 16px; border: 0; border-right: 1px solid var(--line);
  background: transparent; cursor: pointer; font-size: 13px; font-weight: 600;
}
.category-index button:hover, .category-index button.is-active { color: var(--white); background: var(--red); }
.catalog-status { margin: 0 0 15px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.result-count { margin: 0; color: #625449; font-size: 13px; }
.catalog-nav { display: flex; align-items: center; gap: 8px; }
.catalog-nav span { margin-right: 7px; color: #625449; font-size: 12px; }
.catalog-nav button {
  width: 44px; height: 44px; border: 1px solid var(--ink); background: transparent;
  cursor: pointer; font-size: 21px; transition: .18s ease;
}
.catalog-nav button:hover:not(:disabled) { color: var(--white); background: var(--green); }
.catalog-nav button:disabled { opacity: .28; cursor: default; }
.product-list {
  height: 458px; display: grid; grid-auto-flow: column; grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: minmax(285px, 31%); gap: 1px; overflow-x: auto; overflow-y: hidden;
  border: 1px solid var(--ink); background: var(--ink); scroll-snap-type: x mandatory;
  scrollbar-color: var(--green) var(--paper-deep); scrollbar-width: thin; overscroll-behavior-inline: contain;
}
.product-row {
  position: relative; min-width: 0; padding: 25px 24px 22px; display: flex; flex-direction: column;
  background: var(--paper); scroll-snap-align: start; transition: background .18s ease;
}
.product-row:hover { background: #fff7e8; }
.product-row__index { color: #8b796c; font-family: var(--serif); font-size: 18px; }
.product-row__name {
  margin: 17px 45px 10px 0; border: 0; padding: 0; background: transparent; text-align: left;
  cursor: pointer; font-family: var(--serif); font-size: 27px; line-height: 1.02;
}
.product-row__name:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.product-row__desc { margin: 0; color: #66594f; font-size: 13px; }
.product-row__category { margin-top: auto; padding-top: 15px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.save-product {
  position: absolute; top: 19px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 50%; background: transparent; cursor: pointer; font-size: 20px; line-height: 1;
}
.save-product:hover, .save-product.is-saved { color: var(--white); background: var(--green); border-color: var(--green); }
.empty-state { padding: 70px 20px; border-bottom: 1px solid var(--ink); text-align: center; }
.empty-state h3 { margin: 0; font-size: 42px; }

.cheese-guide { color: var(--white); background: var(--red); position: relative; overflow: hidden; }
.cheese-guide::before {
  content: ""; position: absolute; inset: 0; opacity: .1;
  background-image: repeating-linear-gradient(105deg, transparent 0 32px, #fff 33px 34px);
  pointer-events: none;
}
.guide__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.guide__intro .overline { color: var(--yellow); }
.guide__intro p:not(.overline) { max-width: 500px; }
.guide__stamp {
  width: 135px; height: 135px; margin: 50px 0 0 auto; display: grid; place-items: center;
  border: 3px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-family: var(--serif);
  font-size: 23px; line-height: .85; text-align: center; transform: rotate(9deg);
}
.guide-form { padding: 36px; color: var(--ink); background: var(--paper); box-shadow: 12px 12px 0 var(--ink); }
.guide-form fieldset { margin: 0 0 30px; padding: 0 0 25px; border: 0; border-bottom: 1px solid var(--line); }
.guide-form legend { margin-bottom: 12px; font-weight: 700; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-row button {
  min-height: 42px; padding: 8px 15px; border: 1px solid var(--ink); background: transparent; cursor: pointer;
}
.choice-row button:hover, .choice-row button.is-selected { color: var(--white); background: var(--green); }
.guide-result { margin-top: 24px; padding-top: 22px; border-top: 3px solid var(--yellow); }
.guide-result h3 { margin: 0 0 12px; font-size: 34px; }
.guide-result ol { margin: 0; padding-left: 22px; }
.guide-result button { border: 0; padding: 2px; background: transparent; cursor: pointer; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.board-builder { color: var(--white); background: var(--green); }
.section-heading--light .overline { color: var(--yellow); }
.section-heading--light > p:last-child { color: rgba(255,255,255,.73); }
.builder { display: grid; grid-template-columns: 1.35fr .72fr; gap: 42px; align-items: start; }
.builder > *, .builder__controls, .builder fieldset { min-width: 0; }
.builder__controls { display: grid; gap: 35px; }
.builder fieldset { margin: 0; padding: 0; border: 0; }
.builder legend, .date-field { margin-bottom: 14px; font-family: var(--serif); font-size: 26px; }
.option-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.45); }
.option-grid button {
  min-height: 73px; padding: 12px; border: 0; border-right: 1px solid rgba(255,255,255,.45);
  color: var(--white); background: transparent; cursor: pointer; font-weight: 600;
}
.option-grid button:last-child { border-right: 0; }
.option-grid button:hover, .option-grid button.is-selected { color: var(--ink); background: var(--yellow); }
.people-control > div { display: grid; grid-template-columns: 52px 1fr 52px; max-width: 430px; border: 1px solid rgba(255,255,255,.45); }
.people-control button { border: 0; color: var(--white); background: transparent; font-size: 26px; cursor: pointer; }
.people-control button:hover { color: var(--ink); background: var(--yellow); }
.people-control output { min-height: 58px; display: grid; place-items: center; border-inline: 1px solid rgba(255,255,255,.45); font-family: var(--serif); font-size: 25px; }
.people-control input { width: 430px; max-width: 100%; margin-top: 13px; accent-color: var(--yellow); }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.45); }
.check-grid label {
  min-height: 60px; padding: 14px; display: flex; align-items: center; gap: 10px;
  border-right: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); cursor: pointer;
}
.check-grid label:has(input:checked) { color: var(--ink); background: var(--yellow); }
.check-grid input { accent-color: var(--green); }
.date-field { display: grid; max-width: 430px; gap: 10px; }
.date-field input { min-height: 52px; padding: 10px; border: 1px solid rgba(255,255,255,.45); color: var(--white); background: transparent; color-scheme: dark; }
.builder__summary { position: sticky; top: 105px; padding: 32px; color: var(--ink); background: var(--paper); box-shadow: 10px 10px 0 var(--yellow); }
.summary-number { margin: 0 0 18px; display: flex; justify-content: space-between; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.builder__summary h3 { margin: 0 0 25px; font-size: 39px; }
.builder__summary dl { margin: 0 0 20px; border-top: 1px solid var(--line); }
.builder__summary dl div { padding: 10px 0; display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid var(--line); font-size: 13px; }
.builder__summary dt { color: #6e6a60; }
.builder__summary dd { margin: 0; font-weight: 600; }
.summary-note { font-size: 12px; color: #5d5a52; }
.builder__summary label { margin-top: 14px; display: grid; gap: 5px; font-size: 12px; font-weight: 700; }
.builder__summary input, .builder__summary textarea { width: 100%; padding: 11px; border: 1px solid var(--line); border-radius: 0; background: var(--white); }
.builder__summary .button { width: 100%; margin-top: 18px; }
.copy-button { width: 100%; margin-top: 8px; padding: 10px; border: 0; background: transparent; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }

.review-story { background: var(--yellow); border-block: 1px solid var(--ink); }
.review-story__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; }
.review-story__quote h2 { font-size: clamp(46px, 5.6vw, 75px); }
.review-story__quote > p:not(.overline) { max-width: 680px; font-size: 18px; }
.review-themes { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.review-themes li { padding: 24px 0; display: grid; grid-template-columns: 42px 1fr; border-bottom: 1px solid var(--ink); }
.review-themes span { grid-row: span 2; font-family: var(--serif); font-size: 20px; }
.review-themes strong { font-family: var(--serif); font-size: 29px; font-weight: 500; }
.review-themes small { font-size: 13px; }

.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.story__photo { margin: 0; position: relative; }
.story__photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: 0; background: var(--yellow); }
.story__photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.83) contrast(1.04); }
.story__photo figcaption { position: relative; z-index: 2; margin-top: 10px; font-size: 12px; }
.story__copy > p:not(.overline) { font-size: 18px; }
.story__copy blockquote { margin: 30px 0; padding: 20px 0 20px 27px; border-left: 5px solid var(--red); font-family: var(--serif); font-size: 27px; line-height: 1.18; }

.services { background: var(--paper-deep); }
.service-layout { display: grid; grid-template-columns: 1.25fr .75fr .5fr; grid-template-rows: auto auto; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service { min-width: 0; min-height: 260px; padding: 32px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); overflow-wrap: anywhere; }
.service--large { grid-row: span 2; min-height: 540px; display: flex; flex-direction: column; }
.service--image { padding: 0; }
.service--image img { width: 100%; height: 100%; object-fit: cover; }
.service--dark { grid-column: 2 / 4; min-height: 220px; color: var(--white); background: var(--green); }
.service__number { font-family: var(--serif); font-size: 20px; }
.service h3 { margin: 38px 0 16px; font-size: 43px; }
.service--large h3 { font-size: 60px; }
.service ul { margin: 15px 0 25px; padding-left: 20px; }
.service-action, .service--dark a { margin-top: auto; align-self: flex-start; padding: 10px 0; border: 0; border-bottom: 2px solid currentColor; background: transparent; font-weight: 700; cursor: pointer; text-decoration: none; }
.service small { margin-top: 15px; color: #656157; }

.visit { color: var(--white); background: var(--red); }
.visit__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.visit .overline { color: var(--yellow); }
.visit__main > p:not(.overline) { max-width: 610px; font-size: 18px; }
.visit__actions { margin-top: 30px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link--light { color: var(--white); }
.hours-card { padding: 34px; color: var(--ink); background: var(--paper); box-shadow: 12px 12px 0 var(--yellow); }
.hours-card__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.hours-card h3 { margin: 0; font-size: 38px; }
.hours-card__head span { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hours-card dl { margin: 0; }
.hours-card dl div { padding: 10px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.hours-card dl div.is-today { padding-inline: 8px; background: var(--yellow); font-weight: 700; }
.hours-card dd { margin: 0; }
.hours-card > p { margin-bottom: 0; color: #615e55; font-size: 12px; }

.site-footer { padding: 70px 0 25px; color: var(--white); background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1.2fr; gap: 55px; }
.brand--footer { width: 190px; align-self: start; }
.site-footer h2 { margin: 0 0 17px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a:not(.brand) { display: block; margin: 6px 0; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer__note { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.62); font-size: 12px; }
.footer__bottom { margin-top: 55px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.18); font-size: 12px; }
.footer__bottom p { margin: 0; }
.mobile-bar { display: none; }

.product-dialog { width: min(620px, calc(100vw - 30px)); padding: 45px; border: 0; border-radius: 0; color: var(--ink); background: var(--paper); box-shadow: 14px 14px 0 var(--yellow); }
.product-dialog::backdrop { background: rgba(9, 16, 13, .72); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; top: 12px; right: 15px; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; font-size: 32px; }
.product-dialog h2 { margin: 0 0 20px; font-size: 54px; }
.product-dialog > p:not(.overline) { font-size: 18px; }
.product-dialog dl { margin: 25px 0; border-top: 1px solid var(--line); }
.product-dialog dl div { padding: 10px 0; display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--line); }
.product-dialog dt { color: #68655c; }
.product-dialog dd { margin: 0; }
.dialog-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 100; transform: translate(-50%, 25px);
  max-width: min(440px, calc(100vw - 30px)); padding: 13px 18px; color: var(--white); background: var(--ink);
  box-shadow: 5px 5px 0 var(--yellow); opacity: 0; visibility: hidden; transition: .22s ease;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 32px, 880px); }
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .hero__paper { width: min(690px, 88vw); }
  .intro-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .intro-strip p { grid-column: 1 / -1; min-height: 70px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .guide__grid, .story__grid, .visit__grid { gap: 50px; }
  .builder { grid-template-columns: 1fr; }
  .builder__summary { position: static; }
  .service-layout { grid-template-columns: 1fr 1fr; }
  .service--image { display: none; }
  .service--dark { grid-column: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .utility-bar__inner > div a:first-child { display: none; }
  .header__inner { min-height: 68px; }
  .brand { width: 160px; }
  .menu-toggle {
    width: 46px; height: 42px; display: grid; align-content: center; gap: 5px; padding: 9px;
    border: 1px solid var(--ink); background: transparent; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 68px 0 auto; max-height: calc(100vh - 68px); padding: 22px 20px 35px;
    display: grid; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--ink);
    transform: translateY(-130%); visibility: hidden; transition: .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a, .saved-link { padding: 15px 3px; border-bottom: 1px solid var(--line); font-size: 17px; text-align: left; }
  .saved-link { border: 0; border-bottom: 1px solid var(--line); }
  .hero, .hero__content { min-height: 650px; }
  .hero__content { align-items: flex-end; padding-block: 40px; }
  .hero__paper { width: calc(100% - 12px); padding: 35px 30px; box-shadow: 12px 12px 0 rgba(74, 40, 29, .92); }
  .hero__lead { font-size: 16px; }
  .section { padding: 78px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .catalog-tools { grid-template-columns: 1fr; }
  .product-list { grid-auto-columns: minmax(270px, 48%); }
  .guide__grid, .story__grid, .visit__grid, .review-story__grid { grid-template-columns: 1fr; gap: 50px; }
  .guide__stamp { display: none; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .option-grid button { border-bottom: 1px solid rgba(255,255,255,.45); }
  .review-story__grid { gap: 55px; }
  .story__photo { order: 2; }
  .story__copy { order: 1; }
  .service-layout { grid-template-columns: minmax(0, 1fr); }
  .service--large, .service--dark { grid-column: 1; grid-row: auto; min-height: 0; }
  .visit__main { padding-right: 15px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 26px); }
  body { padding-bottom: 58px; }
  .utility-bar { font-size: 11px; }
  h1 { font-size: 50px; }
  .hero, .hero__content { min-height: 690px; }
  .hero__photo { background-position: 52% center; transform: none; }
  .hero__paper { padding: 30px 22px 27px; }
  .hero__facts { gap: 8px; }
  .hero__facts dt { font-size: 25px; }
  .hero__facts dd { font-size: 9px; }
  .intro-strip__grid { grid-template-columns: 1fr; }
  .intro-strip p, .intro-strip a { min-height: 65px; padding: 17px 10px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .section-heading h2, .guide__intro h2, .story__copy h2, .visit h2, .review-story h2 { font-size: 45px; }
  .catalog-status { align-items: center; }
  .catalog-nav span { display: none; }
  .product-list { height: 430px; grid-auto-columns: 82%; }
  .product-row { padding: 21px 19px; }
  .product-row__name { font-size: 24px; }
  .guide-form, .builder__summary, .hours-card { padding: 24px 20px; box-shadow: 7px 7px 0 var(--yellow); }
  .choice-row button { flex: 1 1 calc(50% - 8px); }
  .option-grid { grid-template-columns: 1fr; }
  .option-grid button { border-right: 0; }
  .check-grid { grid-template-columns: 1fr; }
  .option-grid, .check-grid, .people-control > div, .people-control input, .date-field, .builder__summary { width: 100%; max-width: 100%; }
  .story__photo::before { inset: 10px -8px -10px 10px; }
  .service { padding: 25px 22px; }
  .service--large h3, .service h3 { font-size: 43px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__note { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; height: 58px;
    display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink);
  }
  .mobile-bar a { display: grid; place-items: center; padding: 8px; text-align: center; text-decoration: none; font-size: 13px; font-weight: 700; }
  .mobile-bar a:first-child { color: var(--white); background: var(--green); }
  .mobile-bar a:last-child { color: var(--ink); background: var(--yellow); }
  .product-dialog { padding: 42px 23px 28px; }
  .product-dialog h2 { font-size: 43px; }
  .toast { bottom: 75px; }
}

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

/* ==========================================================================
   Kaas & Meer Codex Visual CMS Styles
   ========================================================================== */
body.codex-cms-active-body {
  padding-top: 52px !important;
}

body.codex-cms-active-body [contenteditable="true"].codex-cms-editable,
body.codex-cms-active-body dt[contenteditable="true"],
body.codex-cms-active-body dd[contenteditable="true"],
body.codex-cms-active-body span[contenteditable="true"],
body.codex-cms-active-body #hours-badge[contenteditable="true"] {
  outline: 2px dashed #38bdf8 !important;
  outline-offset: 3px;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.18) !important;
  transition: outline 0.15s ease, background 0.15s ease;
  cursor: text !important;
  display: inline-block;
  min-width: 15px;
}

body.codex-cms-active-body [contenteditable="true"].codex-cms-editable:hover,
body.codex-cms-active-body dt[contenteditable="true"]:hover,
body.codex-cms-active-body dd[contenteditable="true"]:hover,
body.codex-cms-active-body span[contenteditable="true"]:hover,
body.codex-cms-active-body #hours-badge[contenteditable="true"]:hover {
  outline: 2px solid #0284c7 !important;
  background: rgba(56, 189, 248, 0.32) !important;
}

body.codex-cms-active-body [contenteditable="true"].codex-cms-editable:focus,
body.codex-cms-active-body dt[contenteditable="true"]:focus,
body.codex-cms-active-body dd[contenteditable="true"]:focus,
body.codex-cms-active-body span[contenteditable="true"]:focus,
body.codex-cms-active-body #hours-badge[contenteditable="true"]:focus {
  outline: 2px solid #2563eb !important;
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}
