@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --paper: #f5f0df;
  --paper-light: #fbf8eb;
  --ink: #132039;
  --muted: #5f665f;
  --blue: #159bc6;
  --green: #6ab36d;
  --red: #e84125;
  --yellow: #efbb38;
  --lilac: #a99bd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(239, 187, 56, 0.16), transparent 25rem),
    radial-gradient(circle at 90% 26%, rgba(106, 179, 109, 0.14), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-family: "Figtree", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.hero,
.flyer-section,
.about-section,
.proposal-section,
.site-footer {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(19, 32, 57, 0.16);
  animation: fade-down 0.7s ease-out both;
}

.site-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.header-logo:hover img,
.header-logo:focus-visible img {
  transform: translateY(-2px) rotate(-1deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 8vw;
  padding: 64px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: rise-in 0.75s 0.1s ease-out both;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.7rem, 7.7vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-wrap: balance;
  animation: rise-in 0.85s 0.18s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.intro {
  max-width: 440px;
  margin: 34px 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  animation: rise-in 0.8s 0.28s ease-out both;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding: 7px 0;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  animation: rise-in 0.8s 0.36s ease-out both;
  transition: gap 180ms ease, color 180ms ease, border-color 180ms ease;
}

.jump-link:hover {
  gap: 1.5rem;
  border-color: var(--red);
  color: var(--red);
}

.preview-stack {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  width: min(100%, 560px);
  justify-self: end;
  perspective: 1200px;
  animation: stack-in 1.1s 0.15s cubic-bezier(0.2, 0.85, 0.15, 1) both;
}

.preview-card {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(19, 32, 57, 0.12);
  border-radius: 8px;
  background: var(--paper-light);
  box-shadow: 0 28px 70px rgba(57, 55, 39, 0.16);
}

.preview-card-back {
  transform: translate(8%, -3%) rotate(6deg);
  background:
    linear-gradient(135deg, rgba(169, 155, 212, 0.7), transparent 45%),
    var(--paper-light);
}

.preview-card-front {
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotate(-2deg);
  animation: float-card 6s 1.4s ease-in-out infinite;
}

.preview-card-front::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 48%, transparent 62%);
  content: "";
  transform: translateX(-120%);
  animation: sheen 6.5s 1.8s ease-in-out infinite;
  pointer-events: none;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambient {
  position: absolute;
  z-index: 0;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(19, 32, 57, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.ambient::before,
.ambient::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.ambient::before {
  inset: 22%;
  border: 1px solid rgba(19, 32, 57, 0.09);
}

.ambient::after {
  inset: 46%;
  background: currentColor;
}

.ambient-one {
  top: 460px;
  left: -150px;
  color: var(--blue);
}

.ambient-two {
  top: 80px;
  right: -165px;
  color: var(--red);
  transform: scale(0.75);
}

.flyer-section {
  position: relative;
  z-index: 1;
  padding: 110px 0 120px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
}

.section-heading {
  margin-bottom: 46px;
}

.heading-with-illustration {
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2.6vw, 34px);
}

.heading-illustration {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  transform-origin: 50% 100%;
  animation: illustration-float 6s ease-in-out infinite;
}

.heading-illustration-green {
  width: clamp(68px, 8.5vw, 108px);
  height: auto;
  transform: rotate(-2deg);
}

.heading-illustration-lilac {
  width: clamp(62px, 7.8vw, 96px);
  height: auto;
  animation-delay: -2.2s;
}

.section-kicker {
  grid-column: 1 / -1;
  margin: 0;
  animation: none;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 52px);
}

.flyer-card {
  position: relative;
  margin: 0;
  border: 1px solid rgba(19, 32, 57, 0.14);
  border-radius: 12px;
  padding: 16px;
  background: rgba(251, 248, 235, 0.7);
  box-shadow: 0 20px 50px rgba(44, 46, 38, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.flyer-card-1 { transform: rotate(-1.2deg); }
.flyer-card-2 { transform: translateY(34px) rotate(1.2deg); }

.flyer-card:hover,
.flyer-card:focus-within {
  z-index: 2;
  transform: translateY(-8px) rotate(0);
  box-shadow: 0 34px 70px rgba(44, 46, 38, 0.16);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding: 2px 4px 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zoom-button {
  display: grid;
  width: 28px;
  height: 28px;
  margin-top: -5px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: zoom-in;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.flyer-card-1 .zoom-button { color: var(--blue); }
.flyer-card-2 .zoom-button { color: var(--red); }

.zoom-button:hover,
.zoom-button:focus-visible {
  background: var(--ink);
  color: var(--paper-light);
  transform: rotate(8deg);
}

.zoom-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.zoom-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  border-top: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.zoom-icon i::before,
.zoom-icon i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.zoom-icon i::before {
  width: 6px;
  height: 1px;
}

.zoom-icon i::after {
  width: 1px;
  height: 6px;
}

.image-stage {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  outline-offset: 5px;
}

.image-stage.is-zoomable {
  cursor: zoom-in;
}

.image-stage.is-zoomable:focus-visible {
  outline: 3px solid var(--blue);
}

.image-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(19, 32, 57, 0.08);
  content: "";
  pointer-events: none;
}

.flyer-image {
  display: block;
  width: 100%;
  height: auto;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  overflow: auto;
  border: 0;
  padding: clamp(14px, 3vw, 34px);
  background: transparent;
  color: var(--ink);
}

.image-lightbox[open] {
  display: grid;
  place-items: start center;
  animation: lightbox-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.image-lightbox::backdrop {
  background: rgba(19, 32, 57, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: max-content;
  max-width: 100%;
  justify-items: center;
  border: 1px solid rgba(19, 32, 57, 0.16);
  border-radius: 12px;
  padding: clamp(10px, 2vw, 22px);
  background: var(--paper-light);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.34);
}

.lightbox-image {
  display: block;
  width: min(86vw, 1120px);
  height: auto;
  max-height: calc(100dvh - 130px);
  object-fit: contain;
}

.lightbox-shell > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-links-panel {
  width: min(86vw, 1120px);
  margin-top: 24px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
  padding-top: 24px;
  text-align: left;
}

.lightbox-links-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.lightbox-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lightbox-shop-entry {
  display: grid;
  min-width: 0;
  gap: 8px;
  border: 1px solid rgba(19, 32, 57, 0.11);
  padding: 11px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
}

.lightbox-shop-primary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.lightbox-shop-primary > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
}

.lightbox-shop-primary strong {
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.lightbox-shop-primary:hover strong,
.lightbox-shop-primary:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lightbox-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 11px;
  padding-left: 30px;
}

.lightbox-shop-actions a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(19, 32, 57, 0.25);
  text-underline-offset: 3px;
}

.lightbox-shop-actions a:hover,
.lightbox-shop-actions a:focus-visible {
  color: var(--red);
  text-decoration-color: currentColor;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-light);
  font: inherit;
  font-size: 1.45rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(19, 32, 57, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--red);
  transform: rotate(8deg);
}

.click-hint {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 4;
  border: 1px solid rgba(19, 32, 57, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(251, 248, 235, 0.92);
  box-shadow: 0 6px 16px rgba(19, 32, 57, 0.1);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.name-hotspot {
  position: absolute;
  right: 0.4%;
  z-index: 3;
  width: 41.2%;
  height: 2.64%;
  border: 1px solid transparent;
  border-radius: 3px;
  outline-offset: 1px;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease;
}

.name-hotspot:hover,
.name-hotspot:focus-visible {
  border-color: rgba(19, 32, 57, 0.22);
  background: rgba(239, 187, 56, 0.26);
}

.name-hotspot::after {
  position: absolute;
  right: 2px;
  bottom: calc(100% + 4px);
  z-index: 5;
  width: max-content;
  max-width: 210px;
  border-radius: 5px;
  padding: 6px 8px;
  background: var(--ink);
  color: var(--paper-light);
  content: attr(data-label) " öffnen ↗";
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.name-hotspot:hover::after,
.name-hotspot:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.directory-section {
  margin-top: 120px;
  padding-top: 88px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
}

.directory-heading {
  margin-bottom: 38px;
}

.directory-heading h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-entry {
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(19, 32, 57, 0.12);
  border-radius: 9px;
  padding: 16px;
  background: rgba(251, 248, 235, 0.58);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-entry:hover,
.shop-entry:focus-within {
  border-color: rgba(19, 32, 57, 0.24);
  background: rgba(251, 248, 235, 0.96);
  transform: translateY(-3px);
}

.shop-name {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
}

.shop-name > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-light);
  font-size: 0.65rem;
  font-weight: 900;
}

.shop-entry:nth-child(-n+4) .shop-name > span,
.shop-entry:nth-child(n+30) .shop-name > span { background: var(--blue); }
.shop-entry:nth-child(5) .shop-name > span { background: var(--green); }
.shop-entry:nth-child(6) .shop-name > span { background: var(--yellow); color: var(--ink); }
.shop-entry:nth-child(n+7):nth-child(-n+10) .shop-name > span { background: var(--red); }
.shop-entry:nth-child(n+12):nth-child(-n+22) .shop-name > span { background: var(--lilac); }
.shop-entry:nth-child(n+23):nth-child(-n+27) .shop-name > span { background: #f05227; }
.shop-entry:nth-child(n+28):nth-child(-n+29) .shop-name > span { background: #ef96c5; }

.shop-name h4 {
  min-width: 0;
  margin: 2px 0 0;
  font-size: 0.92rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.shop-address {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.shop-links {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-links a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  padding: 5px 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.shop-links a:hover,
.shop-links a:focus-visible {
  color: var(--ink);
  background: rgba(19, 32, 57, 0.07);
}

.link-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  color: currentColor;
}

.link-icon-web {
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.link-icon-web::before,
.link-icon-web::after {
  position: absolute;
  content: "";
}

.link-icon-web::before {
  top: 1px;
  bottom: 1px;
  left: 4px;
  width: 3px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}

.link-icon-web::after {
  top: 5px;
  left: 1px;
  width: 9px;
  border-top: 1px solid currentColor;
}

.link-icon-instagram {
  border: 1.3px solid currentColor;
  border-radius: 4px;
}

.link-icon-instagram::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.link-icon-instagram::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.link-icon-maps {
  width: 10px;
  height: 10px;
  margin: 0 1px 3px 2px;
  border: 1.3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.link-icon-maps::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.about-section {
  display: grid;
  width: min(1020px, calc(100% - 64px));
  grid-template-columns: minmax(300px, 1fr) minmax(0, 430px);
  gap: clamp(54px, 9vw, 130px);
  padding: 112px 0 118px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
}

.about-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 3vw, 36px);
}

.about-illustration {
  display: block;
  width: clamp(66px, 8vw, 92px);
  height: auto;
  flex: 0 0 auto;
  transform-origin: 50% 100%;
  animation: illustration-float 7s -1.5s ease-in-out infinite;
}

.about-title h2 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.about-copy {
  align-self: end;
  max-width: 430px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.68;
}

.about-copy p + p {
  margin-top: 23px;
}

.about-copy .initiative-note {
  margin-top: 30px;
  border-left: 3px solid var(--red);
  padding: 2px 0 2px 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.initiative-note strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 900;
}

.about-copy p:last-child {
  color: var(--ink);
  font-weight: 700;
}

.about-meta {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
  padding-top: 18px;
}

.about-meta span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-meta p,
.about-copy .about-meta p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
}

.proposal-section {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
  border: 1px solid rgba(19, 32, 57, 0.16);
  border-radius: 0;
  padding: clamp(38px, 6vw, 76px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(19, 32, 57, 0.1);
}

.proposal-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.proposal-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.proposal-copy p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.12rem);
  line-height: 1.6;
}

.proposal-button,
.form-submit {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  padding: 0 23px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.proposal-button {
  border-radius: 0;
}

.form-submit {
  border-radius: 999px;
}

.proposal-button:hover,
.proposal-button:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--paper-light);
  transform: translateY(-3px);
}

.proposal-dialog {
  position: fixed;
  inset: 0;
  width: min(620px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  overflow: auto;
  border: 0;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.proposal-dialog[open] {
  animation: dialog-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.proposal-dialog::backdrop {
  background: rgba(19, 32, 57, 0.62);
  backdrop-filter: blur(8px);
}

.dialog-panel {
  border: 1px solid rgba(19, 32, 57, 0.15);
  border-radius: 14px;
  padding: clamp(25px, 5vw, 48px);
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 187, 56, 0.18), transparent 11rem),
    var(--paper-light);
  box-shadow: 0 35px 100px rgba(19, 32, 57, 0.28);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.dialog-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(19, 32, 57, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--ink);
  color: var(--paper-light);
  transform: rotate(8deg);
}

.proposal-form {
  display: grid;
  gap: 18px;
}

.proposal-form label {
  display: grid;
  gap: 8px;
}

.proposal-form label > span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proposal-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(19, 32, 57, 0.18);
  border-radius: 7px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.proposal-form input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21, 155, 198, 0.14);
}

.proposal-form input::placeholder {
  color: rgba(95, 102, 95, 0.72);
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.5em;
  margin: -4px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status-success {
  color: #18714c;
}

.form-status-error {
  color: var(--red);
}

.form-submit {
  min-height: 56px;
  margin-top: 4px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.form-submit:hover,
.form-submit:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.form-submit:disabled {
  border-color: rgba(19, 32, 57, 0.3);
  background: rgba(19, 32, 57, 0.3);
  cursor: wait;
  transform: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(19, 32, 57, 0.16);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-credit > span {
  padding-left: 18px;
  border-left: 1px solid rgba(19, 32, 57, 0.2);
}

.footer-credit a {
  text-decoration: none;
}

.footer-credit > span a:hover,
.footer-credit > span a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-wordmark {
  font-size: 0.72rem;
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stack-in {
  from { opacity: 0; transform: translate(60px, 40px) rotate(3deg) scale(0.92); }
  to { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(-1.2deg); }
}

@keyframes illustration-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes sheen {
  0%, 62% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.965); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.92fr;
    gap: 5vw;
  }

  h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .flyer-section,
  .about-section,
  .proposal-section,
  .site-footer {
    width: min(100% - 32px, 540px);
  }

  .site-header {
    padding-top: 14px;
  }

  .header-logo img {
    width: 72px;
    height: 72px;
  }

  .site-header p {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 70px 0 82px;
  }

  h1 {
    font-size: clamp(3.75rem, 19vw, 6rem);
  }

  .intro {
    margin-top: 28px;
  }

  .preview-stack {
    width: min(94%, 480px);
    justify-self: center;
  }

  .flyer-section {
    padding: 82px 0 88px;
  }

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

  .section-heading h2 {
    margin: 0 0 8px;
  }

  .flyer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flyer-card-1,
  .flyer-card-2 {
    transform: none;
  }

  .flyer-card-2 {
    margin-top: 0;
  }

  .directory-section {
    margin-top: 72px;
    padding-top: 68px;
  }

  .directory-heading {
    margin-bottom: 28px;
  }

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

  .shop-entry {
    min-height: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 82px 0 88px;
  }

  .about-title h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .about-illustration {
    width: clamp(52px, 14vw, 68px);
  }

  .proposal-section {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .site-footer,
  .footer-credit {
    align-items: flex-start;
  }

  .footer-credit {
    flex-direction: column;
    gap: 8px;
  }

  .footer-credit > span {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .wordmark {
    letter-spacing: 0.09em;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .flyer-card {
    padding: 11px;
  }

  .card-topline {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .lightbox-image {
    width: calc(100vw - 48px);
    max-height: calc(100dvh - 100px);
  }

  .lightbox-links-panel {
    width: calc(100vw - 48px);
  }

  .lightbox-shop-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .shop-links a {
    max-width: 100%;
  }

  .proposal-button,
  .form-submit {
    width: 100%;
  }

}

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