@import url('/assets/fonts/fonts.css');

:root {
  --sky: oklch(0.91 0.035 175);
  --sky-soft: oklch(0.955 0.022 175);
  --sky-deep: oklch(0.52 0.08 175);
  --ink-blue: oklch(0.35 0.055 175);
  --paper: oklch(0.985 0.004 175);
  --paper-warm: oklch(0.955 0.018 80);
  --ink: oklch(0.22 0.03 175);
  --ink-soft: oklch(0.44 0.035 175);
  --rule: oklch(0.78 0.018 175);
  --rule-sky: oklch(0.74 0.04 175);
  --brass: oklch(0.66 0.155 60);
  --brass-deep: oklch(0.48 0.14 55);

  --shadow-photo:
    0 18px 36px -14px color-mix(in oklab, var(--ink-blue) 32%, transparent),
    0 6px 12px -6px color-mix(in oklab, var(--ink-blue) 22%, transparent);
  --shadow-card:
    0 12px 28px -12px color-mix(in oklab, var(--ink-blue) 28%, transparent),
    0 3px 8px -4px color-mix(in oklab, var(--ink-blue) 18%, transparent);

  --t-hero: clamp(3.4rem, 9vw + 1rem, 8.8rem);
  --t-display: clamp(2.3rem, 5vw + 0.5rem, 4.2rem);
  --t-h2: clamp(1.75rem, 2.4vw + 0.8rem, 2.5rem);
  --t-h3: clamp(1.25rem, 1vw + 0.9rem, 1.5rem);
  --t-body: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: clamp(5rem, 10vh, 9rem);

  --nav-height: 74px;

  --ease-quart: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", "Segoe UI", sans-serif;
  font-size: var(--t-body);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 0.85rem;
  background: var(--ink-blue);
  color: var(--paper);
  z-index: 2000;
}

.skip-link:focus {
  top: 0.8rem;
}

.container {
  width: min(1320px, 100% - clamp(2rem, 6vw, 6rem));
  margin-inline: auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in oklab, var(--paper) 88%, transparent);
}

.nav-shell {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

/* The wrapper around primary-nav + lang-toggle.
   Desktop: display:contents so the children sit directly inside the grid.
   Mobile (below 900px): becomes an absolutely-positioned dropdown panel. */
.nav-collapse {
  display: contents;
}

/* Hamburger button — hidden on desktop, visible below 900px */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--ink-blue) 35%, transparent);
  border-radius: 6px;
  color: var(--ink-blue);
  cursor: pointer;
  transition: border-color 160ms var(--ease-quart), background-color 160ms var(--ease-quart);
}

.nav-toggle:hover {
  background: color-mix(in oklab, var(--sky-soft) 60%, transparent);
  border-color: var(--ink-blue);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms var(--ease-quart), opacity 160ms var(--ease-quart);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top:  6px; }

/* Morph to X when open */
.site-header.is-open .nav-toggle-bars            { background: transparent; }
.site-header.is-open .nav-toggle-bars::before    { top: 0; transform: rotate(45deg); }
.site-header.is-open .nav-toggle-bars::after     { top: 0; transform: rotate(-45deg); }

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink-blue);
}

.wordmark-icon {
  width: clamp(33px, 3vw, 43px);
  height: clamp(33px, 3vw, 43px);
  flex-shrink: 0;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--paper);
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.75rem);
}

.primary-nav a {
  color: var(--ink-blue);
  font-size: 0.98rem;
  font-weight: 460;
  transition: color 120ms var(--ease-quart);
}

.primary-nav a:hover {
  color: var(--ink);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.lang-toggle a {
  color: var(--ink-soft);
  padding: 0.2rem 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 120ms var(--ease-quart), border-color 120ms var(--ease-quart);
}

.lang-toggle a:hover {
  color: var(--ink-blue);
}

.lang-toggle a[aria-current="page"] {
  color: var(--ink-blue);
  border-bottom-color: var(--brass);
}

main {
  overflow: clip;
}

.section {
  padding-block: var(--space-2xl);
}

.section-sky {
  background: var(--sky);
}

.section-paper {
  background: var(--paper);
}

.section-warm {
  background: var(--paper-warm);
}

.hero {
  min-height: calc(92vh - var(--nav-height));
  border-bottom: 1px solid var(--rule-sky);
  padding-block-start: clamp(1.25rem, 3vh, 2.25rem);
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  grid-column: 1 / span 7;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 520;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0;
  color: var(--ink-blue);
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: var(--t-hero);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.6rem 0 1.2rem;
  max-width: 40ch;
  color: var(--ink-blue);
  font-size: clamp(1.12rem, 0.8vw + 0.95rem, 1.4rem);
}

.hero-meta {
  margin-bottom: 2.1rem;
  color: color-mix(in oklab, var(--ink-blue) 88%, black);
}

.hero-meta p {
  margin: 0.35rem 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--brass);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brass) 20%, transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.1rem;
  font-weight: 620;
  font-size: 0.98rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition:
    color 160ms var(--ease-quart),
    background-color 160ms var(--ease-quart),
    border-color 160ms var(--ease-quart),
    transform 220ms var(--ease-quart);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--brass {
  background: var(--brass);
  color: var(--paper);
}

.btn--brass:hover {
  background: var(--brass-deep);
}

.btn--ghost {
  border-color: var(--ink-blue);
  color: var(--ink-blue);
}

.btn--ghost:hover {
  background: color-mix(in oklab, var(--sky-soft) 55%, white);
}

.icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-photo {
  grid-column: 8 / -1;
  position: relative;
  margin: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -0.85rem 0.85rem 0.85rem -0.85rem;
  border: 1px solid var(--rule-sky);
  pointer-events: none;
  z-index: 0;
}

.hero-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--rule-sky);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-photo);
}

.section-title {
  margin: 0;
  color: var(--ink-blue);
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: var(--t-display);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.section-subtitle {
  margin: 1rem 0 0;
  max-width: 64ch;
  color: var(--ink-soft);
}

.services-intro {
  grid-column: 1 / span 8;
  margin-bottom: 0.6rem;
}

.services-grid {
  grid-column: 1 / -1;
  columns: 3 240px;
  column-gap: clamp(2.4rem, 5vw, 4rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.service-group {
  min-width: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 clamp(1.8rem, 3vw, 2.6rem);
}

.service-group-title {
  margin: 0 0 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid color-mix(in oklab, var(--ink-blue) 22%, transparent);
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.express-callout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1rem, 3vw, 2.6rem);
  align-items: end;
  padding: 1.6rem 0 1.8rem;
  margin-top: 1.6rem;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--rule);
}

.express-eyebrow {
  margin: 0;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.express-display {
  margin: 0.4rem 0 0;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: clamp(1.9rem, 2.5vw + 1rem, 3.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink-blue);
}

.express-copy {
  margin: 0;
  max-width: 44ch;
  color: var(--ink-soft);
}

.express-copy strong {
  color: var(--ink-blue);
  font-weight: 600;
}

.price-list {
  margin: 0;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.7rem 0;
}

.price-service {
  color: var(--ink);
  font-weight: 450;
  font-size: 1rem;
  line-height: 1.35;
}

.price-value {
  color: var(--ink-blue);
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
  letter-spacing: 0.005em;
}

.services-note {
  grid-column: 1 / -1;
  margin: clamp(0.2rem, 1.2vw, 0.8rem) 0 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.shop-story {
  grid-column: 1 / span 5;
}

.shop-story p {
  max-width: 38ch;
}

.shop-gallery {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.9rem;
}

.shop-image {
  margin: 0;
  border: 1px solid color-mix(in oklab, var(--rule) 75%, white);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.shop-image img {
  height: 100%;
  object-fit: cover;
}

.shop-image--tall {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  min-height: 440px;
}

.shop-image--wide {
  grid-column: 4 / -1;
  min-height: 210px;
}

.shop-image--square {
  grid-column: 4 / span 3;
  min-height: 210px;
}

/* Reviews section
 ------------------------------------------------------------------ */

.reviews-intro {
  grid-column: 1 / span 6;
}

.reviews-grid {
  grid-column: 1 / -1;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem) clamp(1rem, 2vw, 2rem);
}

.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.6rem 1.4rem;
  background: color-mix(in oklab, var(--paper) 92%, var(--sky));
  border: 1px solid color-mix(in oklab, var(--rule) 80%, var(--paper));
  box-shadow: var(--shadow-card);
  position: relative;
}

.review::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-family: "Bricolage Grotesque", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.35;
  pointer-events: none;
}

.review--a { grid-column: 1 / span 7; min-height: 12rem; }
.review--b { grid-column: 8 / span 5; }
.review--c { grid-column: 1 / span 5; }
.review--d { grid-column: 6 / span 7; }

.review-stars {
  display: inline-flex;
  gap: 0.18rem;
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.18rem);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.review-meta {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.reviews-footer {
  grid-column: 1 / -1;
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reviews-footer a {
  color: var(--ink-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.6px;
  text-decoration-color: color-mix(in oklab, var(--ink-blue) 35%, transparent);
  transition: text-decoration-color 160ms var(--ease-quart), color 160ms var(--ease-quart);
}

.reviews-footer a:hover {
  color: var(--brass-deep);
  text-decoration-color: var(--brass);
}

/* Hours + address + map
 ------------------------------------------------------------------ */

.hours-layout {
  align-items: start;
}

.hours-block {
  grid-column: 1 / -1;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  color: var(--ink-blue);
}

.hours-table th,
.hours-table td {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--rule-sky);
  text-align: left;
}

.hours-table th {
  font-weight: 500;
}

.hours-table td:last-child,
.hours-table th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums lining-nums;
}

.hours-table tr.is-today td {
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hours-info {
  grid-column: span 6;
  color: var(--ink-blue);
}

.hours-info address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.map-wrap {
  margin: 1.4rem 0 1.6rem;
  border: 1px solid color-mix(in oklab, var(--rule-sky) 80%, var(--paper));
  background: color-mix(in oklab, var(--sky) 80%, var(--paper));
  aspect-ratio: 16 / 11;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}

.review-note {
  margin: 1rem 0 1.4rem;
  color: color-mix(in oklab, var(--ink-blue) 85%, black);
}

.review-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.6px;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in oklab, var(--ink-blue) 40%, transparent);
  transition: text-decoration-color 150ms ease, color 150ms ease;
}

.review-link:hover {
  color: color-mix(in oklab, var(--ink-blue) 82%, black);
  text-decoration-color: var(--brass);
}

/* Footer
 ------------------------------------------------------------------ */

.site-footer {
  background: var(--ink-blue);
  color: var(--paper);
  padding: 3.2rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.6rem;
  align-items: start;
}

.footer-title {
  margin: 0;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: clamp(1.45rem, 1.4vw, 1.9rem);
  font-weight: 620;
}

.footer-contact {
  margin: 0;
  line-height: 1.75;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-copy {
  margin: 0;
  color: color-mix(in oklab, var(--paper) 78%, var(--sky));
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--paper) 76%, var(--sky));
}

.footer-legal a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in oklab, var(--paper) 35%, transparent);
  transition: text-decoration-color 150ms var(--ease-quart), color 150ms var(--ease-quart);
}

.footer-legal a:hover {
  text-decoration-color: var(--brass);
  color: color-mix(in oklab, var(--paper) 96%, var(--brass));
}

.footer-social {
  margin-top: 0.9rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--paper) 76%, var(--sky));
  text-decoration: none;
  transition: color 150ms var(--ease-quart);
}

.footer-social a:hover {
  color: var(--paper);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid color-mix(in oklab, var(--paper) 22%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: color-mix(in oklab, var(--paper) 76%, var(--sky));
  font-size: 0.85rem;
}

/* Footer language picker — visible and tactile on dark blue */
.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-lang-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 70%, var(--sky));
}

.footer-lang-options {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid color-mix(in oklab, var(--paper) 30%, transparent);
  border-radius: 999px;
  padding: 0.18rem;
  background: color-mix(in oklab, var(--paper) 6%, transparent);
}

.footer-lang-options a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--paper) 78%, var(--sky));
  border-radius: 999px;
  transition: background-color 160ms var(--ease-quart), color 160ms var(--ease-quart);
}

.footer-lang-options a:hover {
  color: var(--paper);
  background: color-mix(in oklab, var(--paper) 10%, transparent);
}

.footer-lang-options a[aria-current="page"] {
  background: var(--brass);
  color: var(--paper);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--brass-deep) 60%, transparent);
}

.mobile-cta {
  display: none;
}

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

.hero-title {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-enter 360ms var(--ease-quart) 80ms forwards;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal — IntersectionObserver toggles .is-revealed */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 540ms var(--ease-quart),
    transform 540ms var(--ease-quart);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages (Impressum, AGB) — narrow column, typographic */

.legal-page {
  background: var(--paper);
  padding-block: clamp(3rem, 8vh, 5.5rem) clamp(3rem, 8vh, 5rem);
}

.legal-page .container {
  width: min(820px, 100% - clamp(2rem, 6vw, 6rem));
}

.legal-page h1 {
  margin: 0 0 0.4rem;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: clamp(2.4rem, 4vw + 0.6rem, 3.6rem);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink-blue);
}

.legal-page .lede {
  margin: 0 0 2.4rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.legal-page h2 {
  margin: 2.4rem 0 0.6rem;
  font-family: "Bricolage Grotesque", "Avenir Next", sans-serif;
  font-size: clamp(1.3rem, 1vw + 0.95rem, 1.6rem);
  color: var(--ink-blue);
  letter-spacing: -0.01em;
}

.legal-page p,
.legal-page li {
  max-width: 70ch;
}

.legal-page ul {
  padding-left: 1.1rem;
}

.legal-page .placeholder {
  background: color-mix(in oklab, var(--brass) 22%, transparent);
  border-bottom: 1px solid var(--brass);
  padding: 0 0.25rem;
  font-style: italic;
  color: color-mix(in oklab, var(--ink) 92%, black);
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.6rem;
  color: var(--ink-blue);
  font-weight: 540;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in oklab, var(--ink-blue) 30%, transparent);
  transition: text-decoration-color 150ms var(--ease-quart);
}

.legal-page .back-link:hover {
  text-decoration-color: var(--brass);
}

/* Hamburger menu kicks in below 900px */
@media (max-width: 899px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  /* Shrink wordmark text so it stays on one line — keeps icon centered with type */
  .wordmark {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .wordmark-icon {
    align-self: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.9rem clamp(1.25rem, 5vw, 2rem) 1.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 32px -16px color-mix(in oklab, var(--ink-blue) 35%, transparent);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 200ms var(--ease-quart), transform 240ms var(--ease-quart);
    z-index: 5;
  }

  .site-header.is-open .nav-collapse {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0 0.9rem;
    border-bottom: 1px solid var(--rule);
  }

  .primary-nav li {
    border-top: 1px solid color-mix(in oklab, var(--rule) 55%, var(--paper));
  }

  .primary-nav li:first-child {
    border-top: none;
  }

  .primary-nav a {
    display: block;
    padding: 0.9rem 0.2rem;
    font-size: 1.05rem;
    font-weight: 520;
  }

  .lang-toggle {
    justify-self: stretch;
    justify-content: flex-start;
    gap: 0.6rem;
    padding-top: 1rem;
    font-size: 1rem;
  }

  .lang-toggle a {
    padding: 0.45rem 0.7rem;
    border: 1px solid color-mix(in oklab, var(--ink-blue) 25%, transparent);
    border-radius: 999px;
    border-bottom-width: 1px;
  }

  .lang-toggle a[aria-current="page"] {
    background: var(--brass);
    color: var(--paper);
    border-color: var(--brass);
  }

  .lang-toggle span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-copy,
  .hero-photo,
  .services-intro,
  .shop-story,
  .shop-gallery,
  .hours-block,
  .hours-info,
  .reviews-intro {
    grid-column: 1 / -1 !important;
  }

  .hero-photo {
    margin-top: 1.4rem;
    max-width: min(560px, 100%);
  }

  .shop-gallery {
    margin-top: 0.6rem;
  }

  .shop-image--tall {
    min-height: 320px;
  }

  .express-callout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .review--a,
  .review--b,
  .review--c,
  .review--d {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .hero-title {
    max-width: 8ch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .price-row {
    gap: 0.9rem;
    padding: 0.95rem 0;
  }

  .shop-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-image--tall,
  .shop-image--wide,
  .shop-image--square {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }

  .map-wrap {
    aspect-ratio: 4 / 3;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    inset: auto 0 0;
    z-index: 120;
    background: var(--ink-blue);
    border-top: 1px solid color-mix(in oklab, var(--paper) 28%, transparent);
  }

  .mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 62px;
    color: var(--paper);
    font-weight: 590;
  }

  .mobile-cta a + a {
    border-left: 1px solid color-mix(in oklab, var(--paper) 28%, transparent);
  }
}

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

  .hero-title,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  * {
    transition: none !important;
  }
}
