@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Lora-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Lora-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/SourceSans3-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/SourceSans3-SemiBold.woff2) format("woff2");
}
:root {
  --cream: #F6EFE7;
  --cream-2: #ECE0CD;
  --paper: #FFFBF5;
  --cream-line: rgba(120, 78, 47, .20);
  --cream-line-soft: rgba(120, 78, 47, .11);
  --brand: #AD5730;
  --brand-soft: color-mix(in srgb, var(--brand) 16%, transparent);
  --brand-line: color-mix(in srgb, var(--brand) 42%, transparent);
  --brand-ring: color-mix(in srgb, var(--brand) 26%, transparent);
  --terracotta-ink: #7A3B1E;
  --terracotta-ink-dark: #E7A87B;
  --sage: #7C8F6E;
  --sage-deep: #3A4630;
  --sage-deep-2: #4A583D;
  --sage-soft: #DCE3D0;
  --sage-ink: #4E5E42;
  --ink: #2B2318;
  --muted: #5C4C3B;
  --subtle: #6f6153;
  --cream-ink: #F7F0E4;
  --muted-on-dark: #D3CABB;
  --font-display:
    "Lora",
    Georgia,
    serif;
  --font-body:
    "Source Sans 3",
    "Segoe UI",
    system-ui,
    sans-serif;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: clamp(2.75rem, 2.2rem + 2.6vw, 3.75rem);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4.5rem, 4rem + 5.5vw, 8.5rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur: 240ms;
  --shadow-sm: 0 1px 2px hsl(20 35% 18% / .12), 0 3px 8px hsl(20 35% 18% / .07);
  --shadow-md: 0 8px 22px hsl(20 35% 18% / .14), 0 2px 8px hsl(20 35% 18% / .08);
  --shadow-lg: 0 22px 46px hsl(20 35% 16% / .18), 0 6px 18px hsl(20 35% 16% / .10);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.68;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
canvas {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  margin: 0 0 var(--space-4);
  font-weight: 600;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: 0.002em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 {
  font-size: var(--text-3xl);
}
h2 {
  font-size: var(--text-2xl);
}
h3 {
  font-size: var(--text-xl);
}
p {
  margin: 0 0 var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--terracotta-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--terracotta-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection {
  background: var(--brand-soft);
  color: var(--ink);
}
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.prose {
  max-width: 62ch;
  font-size: var(--text-base);
}
.prose p {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  background: var(--brand);
  color: var(--paper);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus {
  top: 0;
}
.eyebrow {
  display: block;
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta-ink);
}
.blk-deep .eyebrow {
  color: var(--terracotta-ink-dark);
}
.orn-rule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-6) 0;
  color: var(--brand);
}
.orn-rule::before,
.orn-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cream-line);
}
.blk-deep .orn-rule::before,
.blk-deep .orn-rule::after {
  background: rgba(247, 240, 228, .16);
}
.orn-rule svg {
  flex: none;
}
.orn-rule--tight {
  max-width: 200px;
}
.orn-rule--center {
  margin-inline: auto;
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head .orn-rule {
  max-width: 220px;
  margin-inline: auto;
}
.section-head p {
  color: var(--muted);
  font-size: var(--text-lg);
}
.blk-deep .section-head p {
  color: var(--muted-on-dark);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 4.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.brand:hover {
  color: var(--terracotta-ink);
}
.brand-mark {
  flex: none;
  display: grid;
  place-items: center;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
.site-nav a:hover,
.site-nav a[aria-current=page] {
  color: var(--ink);
}
.site-nav a[aria-current=page] {
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}
@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-line);
    padding: var(--space-6) clamp(1.25rem, 4vw, 2.5rem) var(--space-8);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .site-nav a {
    font-size: 1.1rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 16px 32px 14px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  border-color: var(--sage-ink);
  color: var(--sage-ink);
}
.btn-ghost:hover {
  background: var(--sage-soft);
  color: var(--ink);
  border-color: var(--ink);
}
.blk-deep .btn-ghost {
  border-color: rgba(247, 240, 228, .32);
  color: var(--cream-ink);
}
.blk-deep .btn-ghost:hover {
  background: var(--sage-deep-2);
  border-color: var(--muted-on-dark);
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  margin: 0 0 var(--space-6);
  border: 1px solid var(--cream-line);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  background: var(--paper);
}
.hours-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--subtle);
  flex-shrink: 0;
}
.hours-pill[data-status=open] {
  border-color: var(--brand-line);
  color: var(--terracotta-ink);
}
.hours-pill[data-status=open] .dot {
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
}
.hours-pill[data-status=before] .dot {
  background: var(--sage-ink);
}
.hours-pill[data-status=closed] .dot {
  background: var(--subtle);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 560px at 18% -12%,
      color-mix(in srgb, var(--brand) 9%, transparent),
      transparent 60%),
    var(--cream);
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 4rem + 6vw, 8.5rem) clamp(3.5rem, 3rem + 4vw, 6rem);
  max-width: 880px;
}
.hero h1 {
  margin-bottom: var(--space-6);
}
.hero-sub {
  max-width: 52ch;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.rhythm-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-line);
}
.rhythm-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      color-mix(in srgb, var(--sage) 22%, transparent) 0%,
      color-mix(in srgb, var(--brand) 26%, transparent) 35%,
      color-mix(in srgb, var(--brand) 26%, transparent) 65%,
      color-mix(in srgb, var(--sage) 22%, transparent) 100%);
  background-size: 220% 100%;
  mix-blend-mode: soft-light;
  animation: rhythm-drift 22s ease-in-out infinite;
}
@keyframes rhythm-drift {
  0%, 100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rhythm-bar::before {
    animation: none;
    background-position: 45% 0;
  }
}
.rhythm-seg {
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
  text-align: left;
  background: var(--paper);
}
.rhythm-seg--morgen {
  background: color-mix(in srgb, var(--sage) 12%, var(--paper));
}
.rhythm-seg--mittag {
  background: color-mix(in srgb, var(--brand) 12%, var(--paper));
}
.rhythm-seg--nachmittag {
  background: color-mix(in srgb, var(--brand) 18%, var(--paper));
}
.rhythm-seg--abend {
  background: color-mix(in srgb, var(--sage-deep) 14%, var(--paper));
}
.rhythm-time {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--terracotta-ink);
  margin-bottom: 0.2rem;
}
.rhythm-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: var(--space-2);
}
.rhythm-note {
  display: block;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 780px) {
  .rhythm-bar {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .rhythm-bar {
    grid-template-columns: 1fr;
  }
}
main > section {
  padding-block: var(--section);
}
.blk-tint {
  background: var(--cream-2);
}
.blk-deep {
  background:
    linear-gradient(
      180deg,
      var(--sage-deep),
      var(--sage-deep-2));
  color: var(--cream-ink);
}
.blk-deep h2,
.blk-deep h3 {
  color: var(--cream-ink);
}
.blk-deep p {
  color: var(--muted-on-dark);
}
.usp-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (max-width: 780px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}
.usp-item .orn-rule {
  max-width: 56px;
  margin-inline: auto;
}
.usp-item h3 {
  margin-bottom: var(--space-2);
}
.usp-item p {
  color: var(--muted);
}
.story-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.story-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.story-no {
  display: block;
  margin-bottom: var(--space-3);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta-ink);
}
.story-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.story-card p {
  color: var(--muted);
  flex: 1;
}
.story-link {
  display: inline-block;
  margin-top: var(--space-6);
  color: var(--terracotta-ink);
  font-weight: 600;
  text-decoration-color: var(--brand-line);
}
.story-link:hover {
  color: var(--ink);
}
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .split > .split-media {
    order: 1;
  }
  .split > .split-text {
    order: 2;
  }
}
.split-media {
  position: relative;
}
.media-reveal {
  overflow: hidden;
}
.js-on:not(.rm) .media-reveal {
  clip-path: inset(0 0 100% 0);
}
.plaque {
  position: relative;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(
      560px 300px at 30% 0%,
      color-mix(in srgb, var(--brand) 8%, transparent),
      transparent 70%),
    var(--paper);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin: 0;
}
.plaque .big-mark {
  width: clamp(4.5rem, 8vw, 6rem);
  height: auto;
}
.plaque figcaption {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--ink);
}
.keyfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--cream-line);
}
.keyfacts dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--terracotta-ink);
}
.keyfacts dd {
  margin: var(--space-2) 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}
@media (max-width: 560px) {
  .keyfacts {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 5.5rem;
  width: 2px;
  background: var(--cream-line);
}
.blk-tint .timeline::before {
  background: var(--cream-line);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: var(--space-4);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  opacity: 1;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-time {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--terracotta-ink);
  padding-top: 0.1rem;
}
.timeline-time::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  right: -1.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--cream);
}
.blk-tint .timeline-time::after {
  border-color: var(--cream-2);
}
.timeline-card {
  background: var(--paper);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.timeline-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.timeline-card p {
  color: var(--muted);
}
.timeline-note {
  margin-top: var(--space-8);
  text-align: center;
  font-style: italic;
  color: var(--subtle);
  font-size: var(--text-sm);
}
@media (max-width: 560px) {
  .timeline::before {
    left: 3.6rem;
  }
  .timeline-item {
    grid-template-columns: 3.6rem 1fr;
  }
  .timeline-time {
    font-size: 1.0625rem;
  }
  .timeline-time::after {
    right: -1.2rem;
    width: 10px;
    height: 10px;
  }
}
@supports (animation-timeline: view()) {
  html:not(.gsap-timeline-active) .timeline-item {
    animation-name: timeline-reveal;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    animation-fill-mode: both;
    animation-timing-function: var(--ease);
  }
}
@keyframes timeline-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.steps-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 780px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.step-no {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 3vw, 3.25rem);
  color: var(--terracotta-ink);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step h3 {
  margin-bottom: var(--space-2);
}
.step p {
  color: var(--muted);
}
.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offer-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--cream-line);
}
.offer-list li:last-child {
  border-bottom: none;
}
.offer-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-line);
  transform: translateY(-4px);
}
.offer-name {
  font-size: var(--text-lg);
}
.offer-name em {
  color: var(--muted);
  font-size: var(--text-base);
  font-style: italic;
}
.offer-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--terracotta-ink);
  white-space: nowrap;
}
.offer-note {
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--subtle);
}
.tick-list {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}
.tick-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  color: var(--muted);
}
.tick-mark {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-2px);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  max-width: 640px;
  margin-inline: auto;
}
.trust-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--cream-line);
}
.trust-list .dot-mark {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-2px);
}
.trust-list span:last-child {
  color: var(--muted);
}
.hours-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hours-card h2 {
  color: var(--ink);
}
.hours-list {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px dotted var(--cream-line);
  font-size: var(--text-base);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list .day {
  font-weight: 600;
}
.hours-list .dots {
  display: none;
}
.hours-list .time {
  color: var(--muted);
}
.hours-list .time.closed {
  font-style: italic;
}
.hours-list li.is-today .day,
.hours-list li.is-today .time {
  color: var(--terracotta-ink);
  font-weight: 700;
}
.hours-note {
  margin-top: var(--space-4);
  font-style: italic;
  color: var(--subtle);
  font-size: var(--text-sm);
}
.quote {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: 1.45;
  color: var(--cream-ink);
}
.quote cite {
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--terracotta-ink-dark);
}
.faq {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--cream-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--cream-line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 52px;
}
.faq-q:hover {
  color: var(--terracotta-ink);
}
.faq-q .faq-icon {
  flex: none;
  color: var(--brand);
  font-size: 1.5rem;
  transition: transform var(--dur) var(--ease);
}
.faq-q[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 var(--space-6);
  color: var(--muted);
  max-width: 60ch;
}
.faq-a[hidden] {
  display: none;
}
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 240, 228, .18);
  background:
    radial-gradient(
      700px 300px at 50% 0%,
      color-mix(in srgb, var(--brand) 12%, transparent),
      transparent 70%),
    var(--sage-deep);
}
.cta-band h2 {
  color: var(--cream-ink);
}
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted-on-dark);
  font-size: var(--text-lg);
}
.cta-band .hero-actions {
  margin-top: var(--space-8);
  justify-content: center;
}
.seo-text {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--subtle);
  font-size: var(--text-sm);
  text-align: center;
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--cream-line);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list .k {
  flex: none;
  width: 7.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--muted);
  padding-top: 0.2rem;
}
.contact-list span:last-child {
  color: var(--ink);
}
.form-field {
  margin-bottom: var(--space-6);
}
.form-field label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--space-3) var(--space-4);
  background: var(--paper);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: var(--text-base);
}
.form-field textarea {
  min-height: 9rem;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--terracotta-ink);
  outline-offset: 1px;
  border-color: var(--brand);
}
.form-hint {
  font-size: var(--text-sm);
  color: var(--subtle);
  margin-top: var(--space-2);
}
.page-hero {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 7rem);
  background:
    radial-gradient(
      900px 380px at 50% -20%,
      color-mix(in srgb, var(--brand) 8%, transparent),
      transparent 65%),
    var(--cream-2);
  border-bottom: 1px solid var(--cream-line);
}
.page-hero .eyebrow {
  margin-bottom: var(--space-4);
}
.page-hero p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: var(--text-lg);
}
.site-footer {
  background: var(--sage-deep);
  color: var(--muted-on-dark);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-base);
}
.site-footer .brand {
  color: var(--cream-ink);
}
.site-footer .brand:hover {
  color: var(--terracotta-ink-dark);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-bottom: var(--space-12);
}
.footer-brand p {
  color: var(--muted-on-dark);
  font-size: var(--text-base);
  max-width: 30ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-ink-dark);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li {
  margin-bottom: var(--space-3);
}
.footer-col a {
  color: var(--muted-on-dark);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--cream-ink);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(247, 240, 228, .14);
  color: var(--muted-on-dark);
  font-size: var(--text-sm);
}
.footer-bottom a {
  color: var(--muted-on-dark);
}
.footer-bottom a:hover {
  color: var(--cream-ink);
}
.legal {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal h1 {
  margin-bottom: var(--space-6);
}
.legal h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li,
.legal address {
  color: var(--muted);
}
.legal a {
  text-decoration: underline;
}
.error-404 {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.error-404 .code {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--brand);
  line-height: 1;
}
.js-on:not(.rm) [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js-on:not(.rm) [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(16px);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .story-card,
  .faq-q .faq-icon {
    transition: none;
  }
  .btn-brand:hover,
  .story-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions {
    display: none;
  }
}
.sk-shot {
  overflow: hidden;
  border-radius: var(--radius,12px);
  margin-bottom: 1.5rem;
}
.sk-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.sk-shot--portrait img {
  aspect-ratio: 4/5;
}
.sk-shot--breit img {
  aspect-ratio: 4/3;
}
