:root {
  --olive: #3d3912;
  --olive-soft: #5d5823;
  --brown: #b39170;
  --cream: #f2eee6;
  --paper: #fffdf8;
  --sand: #e2d3bd;
  --ink: #29261b;
  --muted: #665f51;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.7 Arial, Helvetica, sans-serif;
}

a {
  color: var(--olive);
}

a:hover {
  color: var(--olive-soft);
}

.wood {
  background-color: #c6aa86;
  background-image: linear-gradient(90deg, rgba(104, 67, 37, .14) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .22), rgba(120, 79, 45, .09));
  background-size: 68px 100%, 100% 100%;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(20px, 6vw, 90px);
  border-bottom: 1px solid rgba(61, 57, 18, .25);
}

.logo {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--olive);
  text-decoration: none;
  font: bold 1.7rem Georgia, "Times New Roman", serif;
}

.logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.primary-nav a {
  padding: 8px 5px;
  color: var(--olive);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--brown);
  outline: 0;
}

.menu-toggle {
  display: none;
}

.location-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 10vw, 124px) clamp(24px, 10vw, 150px);
  background: var(--sand);
}

.location-hero::after {
  content: "";
  position: absolute;
  top: 7%;
  right: 7%;
  width: min(27vw, 19rem);
  height: min(45vw, 29rem);
  background: url("pusteblume.png") center / contain no-repeat;
  opacity: .38;
}

.location-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow {
  color: #745b40;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 880px;
  margin: 10px 0 20px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 400;
  line-height: .99;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.quick-actions,
.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--olive);
  background: var(--olive);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.cp-button:hover,
.cp-button:focus-visible {
  background: var(--olive-soft);
  border-color: var(--olive-soft);
  color: #fff;
  outline: 3px solid rgba(179, 145, 112, .5);
  outline-offset: 2px;
}

.cp-button--light {
  background: var(--paper);
  color: var(--olive);
}

.content-section {
  padding: clamp(58px, 8vw, 96px) clamp(24px, 10vw, 150px);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .75fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.prose {
  max-width: 820px;
}

.prose p:first-of-type {
  font-size: 1.08rem;
}

.visit-card {
  padding: 28px;
  background: var(--olive);
  color: #fff;
  border-left: 8px solid var(--brown);
  box-shadow: 12px 12px 0 rgba(179, 145, 112, .42);
  overflow-wrap: anywhere;
}

.visit-card h2,
.visit-card a {
  color: #fff;
}

.visit-card h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
}

.visit-card address {
  margin: 15px 0;
  font-style: normal;
}

.visit-card dl {
  margin: 22px 0 0;
}

.visit-card dt {
  margin-top: 12px;
  color: #e8d7bd;
  font-weight: 800;
}

.visit-card dd {
  margin: 0;
}

.local-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.local-card,
.offer-card {
  min-width: 0;
  padding: 27px;
  background: var(--paper);
  border-left: 6px solid var(--brown);
  box-shadow: 0 6px 18px rgba(60, 46, 23, .09);
}

.local-card p:last-child,
.offer-card p:last-child {
  margin-bottom: 0;
}

.route-panel {
  padding: clamp(30px, 5vw, 52px);
  background: var(--olive);
  color: #fff;
  box-shadow: 16px 16px 0 rgba(179, 145, 112, .62);
}

.route-panel h2,
.route-panel h3,
.route-panel a:not(.cp-button) {
  color: #fff;
}

.route-panel p {
  max-width: 880px;
}

.source-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(179, 145, 112, .55);
  color: var(--muted);
  font-size: .93rem;
}

.area-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.area-switcher a {
  display: block;
  padding: 10px 14px;
  border: 1px solid rgba(61, 57, 18, .32);
  background: var(--paper);
  text-decoration: none;
  font-weight: 800;
}

.area-switcher a:hover,
.area-switcher a:focus-visible,
.area-switcher a[aria-current="page"] {
  background: var(--olive);
  color: #fff;
  outline: 0;
}

.small-print {
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 920px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .visit-card {
    max-width: 620px;
  }

  .local-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .local-card:last-child,
  .offer-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    min-height: 0;
    padding: 12px 14px;
  }

  .logo {
    gap: 8px;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(61, 57, 18, .3);
    background: var(--paper);
    color: var(--olive);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .2s ease, opacity .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);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    padding: 12px 14px 16px;
    background: var(--cream);
    box-shadow: 0 8px 18px rgba(42, 33, 14, .16);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    min-height: 46px;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(179, 145, 112, .52);
    font-size: 1rem;
  }

  .location-hero {
    padding: 58px 22px;
  }

  .location-hero::after {
    right: -4%;
    width: 45vw;
    opacity: .18;
  }

  .content-section {
    padding: 52px 22px;
  }

  .local-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .local-card:last-child,
  .offer-card:last-child {
    grid-column: auto;
  }

  .route-panel {
    box-shadow: 8px 8px 0 rgba(179, 145, 112, .55);
  }
}

@media (max-width: 520px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .quick-actions,
  .route-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cp-button {
    width: 100%;
  }

  .visit-card,
  .local-card,
  .offer-card,
  .route-panel {
    overflow-wrap: anywhere;
  }
}
