/* Papierkamer — recipe L16 H13 Y08 C20 S20 F08 N09 T16 A03 M23 K20 CB08 */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --pk-stone-50: #f4f5f6;
  --pk-stone-100: #e6e8ea;
  --pk-stone-200: #cfd3d7;
  --pk-stone-400: #8a9199;
  --pk-stone-600: #5a6169;
  --pk-stone-800: #2e3338;
  --pk-stone-900: #1c2024;
  --pk-copper: #b06a3a;
  --pk-copper-deep: #8c4f28;
  --pk-copper-soft: #d4a07a;
  --pk-measure: 52ch;
  --pk-pad: clamp(1.25rem, 4vw, 3rem);
  --pk-font-display: "Fraunces", "Times New Roman", serif;
  --pk-font-body: "Outfit", "Segoe UI", sans-serif;
  --pk-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pk-font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--pk-stone-800);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(176, 106, 58, 0.07), transparent 55%),
    linear-gradient(180deg, var(--pk-stone-50) 0%, #eef0f2 45%, var(--pk-stone-100) 100%);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pk-copper-deep); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--pk-copper); }
h1, h2, h3 {
  font-family: var(--pk-font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pk-stone-900);
  letter-spacing: -0.02em;
}
p { max-width: var(--pk-measure); }
.pk-measure { max-width: var(--pk-measure); }
.pk-wrap {
  width: min(1120px, 100% - 2 * var(--pk-pad));
  margin-inline: auto;
}

/* L16 daypart ribbon */
.pk-hours-ribbon {
  background: var(--pk-stone-800);
  color: var(--pk-stone-100);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem var(--pk-pad);
  text-align: center;
}
.pk-hours-ribbon strong { color: var(--pk-copper-soft); font-weight: 500; }

/* H13 split header */
.pk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pk-pad);
  border-bottom: 1px solid var(--pk-stone-200);
  background: rgba(244, 245, 246, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}
.pk-brand {
  font-family: var(--pk-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--pk-stone-900);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.pk-brand:hover { color: var(--pk-copper); }
.pk-header-address {
  display: none;
  font-size: 0.82rem;
  color: var(--pk-stone-600);
  text-align: right;
  line-height: 1.35;
  max-width: 14rem;
}
@media (min-width: 720px) {
  .pk-header-address { display: block; }
}
.pk-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
/* N09 priority + More */
.pk-priority {
  display: none;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pk-priority a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pk-stone-800);
  text-decoration: none;
}
.pk-priority a:hover,
.pk-priority a[aria-current="page"] { color: var(--pk-copper); }
@media (min-width: 900px) {
  .pk-priority { display: flex; }
}
.pk-more-wrap { position: relative; display: none; }
@media (min-width: 900px) {
  .pk-more-wrap { display: block; }
}
.pk-more-btn,
.pk-menu-toggle {
  font-family: var(--pk-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--pk-stone-400);
  color: var(--pk-stone-800);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  border-radius: 2px;
}
.pk-more-btn:hover,
.pk-menu-toggle:hover {
  border-color: var(--pk-copper);
  color: var(--pk-copper-deep);
}
.pk-more-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 10rem;
  background: var(--pk-stone-50);
  border: 1px solid var(--pk-stone-200);
  box-shadow: 0 10px 28px rgba(28, 32, 36, 0.12);
  padding: 0.5rem 0;
  z-index: 45;
}
.pk-more-wrap.is-open .pk-more-panel { display: block; }
.pk-more-panel a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--pk-stone-800);
  text-decoration: none;
  font-size: 0.9rem;
}
.pk-more-panel a:hover { color: var(--pk-copper); background: rgba(176, 106, 58, 0.06); }
.pk-menu-toggle { display: inline-flex; }
@media (min-width: 900px) {
  .pk-menu-toggle { display: none; }
}
.pk-contact-layout {
  display: grid;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pk-pad) 3rem;
}
@media (min-width: 800px) {
  .pk-contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.pk-contact-phone {
  font-family: var(--pk-font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--pk-stone-900);
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}
.pk-contact-phone:hover { color: var(--pk-copper); }

/* Drawer */
.pk-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--pk-stone-50);
  border-left: 1px solid var(--pk-stone-200);
  box-shadow: -12px 0 40px rgba(30, 35, 40, 0.12);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--pk-ease);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pk-drawer.is-open { transform: translateX(0); }
.pk-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 32, 36, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.pk-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.pk-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--pk-stone-600);
  line-height: 1;
}
.pk-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}
.pk-drawer a {
  font-family: var(--pk-font-display);
  font-size: 1.35rem;
  color: var(--pk-stone-900);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--pk-stone-100);
}
.pk-drawer a:hover { color: var(--pk-copper); }
.pk-drawer-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--pk-stone-600);
}

/* Y08 60/40 reverse split — soft hero */
.pk-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: min(72vh, 640px);
  align-items: stretch;
}
@media (min-width: 880px) {
  .pk-hero {
    grid-template-columns: 3fr 2fr;
  }
}
.pk-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) var(--pk-pad);
  background: linear-gradient(165deg, var(--pk-stone-50), var(--pk-stone-100));
}
.pk-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 0.75rem;
  max-width: 12ch;
}
.pk-hero-brand {
  font-family: var(--pk-font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--pk-copper);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.pk-hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--pk-stone-600);
  font-size: 1.05rem;
}
.pk-hero-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.pk-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.pk-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--pk-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--pk-copper);
  color: #fff;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.pk-cta:hover { background: var(--pk-copper-deep); color: #fff; }
.pk-cta-ghost {
  background: transparent;
  color: var(--pk-stone-800);
  border: 1px solid var(--pk-stone-400);
  margin-left: 0.5rem;
}
.pk-cta-ghost:hover {
  border-color: var(--pk-copper);
  color: var(--pk-copper-deep);
  background: transparent;
}

/* S20 continuous — type weight only */
.pk-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pk-pad);
}
.pk-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 1rem;
}
.pk-section--tight { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.pk-lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--pk-stone-600);
  max-width: var(--pk-measure);
}

/* C20 inline figure + sidenote */
.pk-figure-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 800px) {
  .pk-figure-note {
    grid-template-columns: 1.4fr 0.7fr;
    gap: 2.5rem;
  }
}
.pk-figure-note figure { margin: 0; }
.pk-figure-note img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.pk-figure-note figcaption {
  font-size: 0.8rem;
  color: var(--pk-stone-400);
  margin-top: 0.5rem;
  font-style: italic;
}
.pk-sidenote {
  font-size: 0.92rem;
  color: var(--pk-stone-600);
  border-left: 2px solid var(--pk-copper);
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.pk-sidenote strong {
  display: block;
  font-family: var(--pk-font-display);
  color: var(--pk-stone-900);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* FAQ L16 */
.pk-faq {
  max-width: 640px;
  margin: 0 auto;
}
.pk-faq details {
  border-bottom: 1px solid var(--pk-stone-200);
  padding: 1rem 0;
}
.pk-faq summary {
  font-family: var(--pk-font-display);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pk-stone-900);
}
.pk-faq summary::-webkit-details-marker { display: none; }
.pk-faq summary::after {
  content: "+";
  color: var(--pk-copper);
  font-weight: 400;
  font-size: 1.25rem;
}
.pk-faq details[open] summary::after { content: "–"; }
.pk-faq details p {
  margin: 0.75rem 0 0;
  color: var(--pk-stone-600);
  font-size: 0.98rem;
}

/* M23 photo grid shuffle-in */
.pk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .pk-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.pk-grid figure {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}
.pk-grid figure.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--pk-ease), transform 0.55s var(--pk-ease);
}
.pk-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.pk-grid figcaption {
  font-size: 0.75rem;
  color: var(--pk-stone-400);
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* K20 phone hero contact */
.pk-visit {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--pk-pad);
  background: linear-gradient(180deg, transparent, rgba(176, 106, 58, 0.08));
}
.pk-visit-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pk-stone-400);
  margin: 0 0 0.75rem;
}
.pk-phone-hero {
  font-family: var(--pk-font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--pk-stone-900);
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.pk-phone-hero:hover { color: var(--pk-copper); }
.pk-visit-addr {
  color: var(--pk-stone-600);
  margin: 0 auto 1.5rem;
  max-width: 28ch;
}

/* Catalog lists */
.pk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}
.pk-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--pk-stone-200);
  display: grid;
  gap: 0.25rem;
}
.pk-list strong {
  font-family: var(--pk-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pk-stone-900);
}
.pk-list span { color: var(--pk-stone-600); font-size: 0.95rem; }

/* Page intro */
.pk-page-intro {
  padding: clamp(2rem, 5vw, 3.5rem) var(--pk-pad) 1rem;
}
.pk-page-intro h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
}
.pk-crumb {
  font-size: 0.8rem;
  color: var(--pk-stone-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Form */
.pk-form {
  max-width: 420px;
  display: grid;
  gap: 1rem;
}
.pk-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--pk-stone-600);
}
.pk-form input,
.pk-form textarea {
  font-family: var(--pk-font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--pk-stone-200);
  background: #fff;
  color: var(--pk-stone-900);
  border-radius: 2px;
}
.pk-form input:focus,
.pk-form textarea:focus {
  outline: 2px solid var(--pk-copper-soft);
  border-color: var(--pk-copper);
}
.pk-form-success {
  display: none;
  padding: 1rem;
  background: rgba(176, 106, 58, 0.12);
  border-left: 3px solid var(--pk-copper);
  color: var(--pk-stone-800);
  max-width: 420px;
}
.pk-form-success.is-visible { display: block; }

.pk-prose {
  max-width: var(--pk-measure);
  margin: 0 auto;
  padding: 0 var(--pk-pad) clamp(3rem, 6vw, 4rem);
}
.pk-prose h2 { margin-top: 2rem; font-size: 1.35rem; }
.pk-prose ul { padding-left: 1.2rem; }
.pk-prose li { margin-bottom: 0.4rem; }

.pk-about-split {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pk-pad) 3rem;
}
@media (min-width: 800px) {
  .pk-about-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.pk-about-split img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* F08 footer */
.pk-footer {
  background: var(--pk-stone-900);
  color: var(--pk-stone-200);
  padding: 2.5rem var(--pk-pad) 1.5rem;
}
.pk-footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.pk-footer-stack a { color: var(--pk-copper-soft); text-decoration: none; }
.pk-footer-stack a:hover { color: #fff; }
.pk-footer-brand {
  font-family: var(--pk-font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pk-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  margin: 0;
  padding-left: 0;
  justify-content: space-between;
}
.pk-footer-links a {
  color: var(--pk-stone-200);
  text-decoration: none;
  font-size: 0.85rem;
}
.pk-footer-links a:hover { color: var(--pk-copper-soft); }
.pk-footer-copy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--pk-stone-400);
}

/* CB08 corner note stacked buttons */
.pk-cookie {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: min(280px, calc(100vw - 2rem));
  background: var(--pk-stone-50);
  border: 1px solid var(--pk-stone-200);
  box-shadow: 0 8px 32px rgba(28, 32, 36, 0.18);
  padding: 1.1rem;
  z-index: 80;
  display: none;
  border-radius: 2px;
}
.pk-cookie.is-visible { display: block; }
.pk-cookie p {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--pk-stone-600);
  max-width: none;
}
.pk-cookie a { font-size: inherit; }
.pk-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pk-cookie-actions button {
  font-family: var(--pk-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid var(--pk-stone-300, var(--pk-stone-200));
  background: #fff;
  color: var(--pk-stone-800);
}
.pk-cookie-actions .pk-cookie-accept {
  background: var(--pk-copper);
  border-color: var(--pk-copper);
  color: #fff;
}
.pk-cookie-actions .pk-cookie-accept:hover { background: var(--pk-copper-deep); }
.pk-cookie-settings-panel {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--pk-stone-200);
  font-size: 0.8rem;
}
.pk-cookie-settings-panel.is-open { display: block; }
.pk-cookie-settings-panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--pk-stone-600);
}

body.pk-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pk-drawer,
  .pk-drawer-backdrop,
  .pk-grid figure,
  .pk-cta {
    transition: none !important;
  }
  .pk-grid figure {
    opacity: 1;
    transform: none;
  }
}
