/* ── Reset & Tokens ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f5f0e8;
  --parchment:#ede5d0;
  --ink:      #1c1710;
  --ink-soft: #3a3228;
  --muted:    #6e6252;
  --red:      #8b2020;
  --green:    #3a5c3a;
  --gold:     #c4964a;
  --border:   rgba(28,23,16,.12);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-hand:  'Caveat', cursive;
  --ff-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }


body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(245,240,232,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--ink); text-decoration: none; letter-spacing: .03em;
}
.logo span { color: var(--red); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); background: var(--red);
  padding: .45rem 1.1rem; text-decoration: none;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.nav-cta i { margin-right: .3rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  overflow: hidden;
}
/* HERO LAYOUT */
#hero { display: flex; align-items: center; justify-content: center; }
#hero > .fa-watermark { display: none; }
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1060px;
  padding: 0 2rem;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: left;
  flex: 1 1 auto;
  max-width: 560px;
}
.hero-ctas { display: flex; align-items: center; gap: 1.6rem; }
.hero-link {
  color: var(--gold); text-decoration: none;
  font-size: .95rem; letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.hero-link:hover { border-color: var(--gold); }
.hero-link i { font-size: .8em; margin-left: .2em; }

/* Polaroid stack */
.hero-stack {
  position: relative;
  flex: 0 0 340px;
  height: 380px;
  z-index: 1;
}
.polaroid {
  position: absolute;
  background: #f6f1e7;
  padding: 10px 10px 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  width: 240px;
}
.polaroid .ph {
  width: 100%; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.polaroid figcaption {
  font-family: var(--ff-hand);
  font-size: 1.05rem; color: #4a4238;
  text-align: center; margin-top: 8px;
}
.polaroid.p1 { top: 10px;  left: 70px; transform: rotate(-5deg); z-index: 3; }
.polaroid.p2 { top: 70px;  left: 10px; transform: rotate(3deg);  z-index: 2; }
.polaroid.p3 { top: 130px; left: 90px; transform: rotate(-2deg); z-index: 1; }
.polaroid { transition: transform .3s ease, z-index 0s; }
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 5; }
@media (max-width: 860px) { .hero-stack { display: none; } .hero-content { text-align: center; margin: 0 auto; } .hero-ctas { justify-content: center; } }
.hero-since {
  font-family: var(--ff-hand); font-size: 1.55rem;
  color: var(--gold); margin-bottom: .8rem;
  animation: fadeDown .8s ease both;
}
#hero h1 {
  font-family: var(--ff-serif); font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 300; line-height: 1.1;
  color: var(--ink);
  animation: fadeUp 1s ease .2s both;
}
#hero h1 em {
  font-style: italic; color: var(--red);
}
.hero-sub {
  font-size: 1.05rem; color: var(--ink-soft);
  margin: 1.6rem 0 2.4rem;
  animation: fadeUp 1s ease .4s both;
}
.btn-primary {
  display: inline-block;
  padding: .8rem 2.2rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  transition: background .25s, transform .2s;
  animation: fadeUp 1s ease .6s both;
}
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }

/* ── FA watermark decorations ────────────────────────────────────────────── */
.fa-watermark {
  position: absolute;
  pointer-events: none;
  color: var(--ink);
  opacity: .045;
  line-height: 1;
  z-index: 0;
  font-size: var(--wm-size, 220px);
  transform: rotate(var(--wm-rot, -15deg));
  user-select: none;
}

/* ── Font Awesome Duotone theming ────────────────────────────────────────── */
.fa-duotone { --fa-primary-color: var(--gold); --fa-secondary-color: var(--red); --fa-secondary-opacity: .4; }
.card-icon .fa-duotone { --fa-primary-color: var(--red); --fa-secondary-color: var(--gold); --fa-secondary-opacity: .35; }
.info-block .fa-duotone { --fa-primary-color: var(--gold); --fa-secondary-color: var(--cream); --fa-secondary-opacity: .25; }
.footer-links .fa-duotone { --fa-primary-color: var(--cream); --fa-secondary-color: var(--gold); --fa-secondary-opacity: .5; }

/* ── Hero underlines ─────────────────────────────────────────────────────── */
.hero-underlines {
  display: block;
  width: clamp(280px, 60%, 440px);
  margin: -0.4rem auto 0;
  overflow: visible;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
}
.scroll-hint span { display: none; }

/* ── Section dividers ────────────────────────────────────────────────────── */
/* small centered ornament on each divider */

/* ── Container ───────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 760px; }

/* ── Section labels ──────────────────────────────────────────────────────── */
.label {
  font-family: var(--ff-hand); font-size: 1.5rem; color: var(--gold);
  display: block; margin-bottom: .4rem;
}
h2 {
  font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--ink);
  margin-bottom: 3rem;
}

/* ── Sortiment ───────────────────────────────────────────────────────────── */
#sortiment { background: var(--parchment); padding: 5rem 0 6rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  display: flex; flex-direction: column;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(28,23,16,.1); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 1.6rem; margin-bottom: 1.2rem;
  color: var(--red); opacity: .75;
  transition: opacity .3s, transform .3s;
}
.card:hover .card-icon { opacity: 1; transform: scale(1.1); }
.card h3 {
  font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 600;
  margin-bottom: .5rem; color: var(--ink); letter-spacing: .01em;
}
.card p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1rem; }
.brands {
  font-family: var(--ff-hand); font-size: 1.1rem; color: var(--gold);
  margin-top: auto; padding-top: .5rem;
  border-top: 1px solid var(--border);
}

/* ── Philosophie ─────────────────────────────────────────────────────────── */
#philosophie { background: var(--cream); padding: 6rem 0; }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  background: var(--parchment);
  position: relative;
  box-shadow: 4px 8px 32px rgba(28,23,16,.06);
}
blockquote::before {
  content: '\201C';
  font-family: var(--ff-serif); font-size: 8rem; color: var(--gold);
  opacity: .2; line-height: 0;
  position: absolute; top: 2rem; left: 1rem;
  pointer-events: none;
}
blockquote p {
  font-family: var(--ff-serif); font-size: 1.2rem; font-style: italic;
  line-height: 1.8; color: var(--ink-soft);
  margin-bottom: 1rem;
}
blockquote p:last-of-type { margin-bottom: 1.5rem; }
blockquote footer {
  font-size: .95rem; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
  font-family: var(--ff-sans); font-style: normal;
}

/* ── Map embed ───────────────────────────────────────────────────────────── */
.map-embed {
  position: relative;
  border: 1px solid rgba(196,150,74,.2);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.4), 0 0 0 4px rgba(196,150,74,.06);
}
.map-embed iframe {
  display: block;
  width: 480px; height: 420px;
  border: none;
  filter: sepia(.25) contrast(1.05);
}
.map-fullscreen {
  display: flex; align-items: center; gap: .5rem;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(28,23,16,.85);
  backdrop-filter: blur(4px);
  color: var(--gold); text-decoration: none;
  font-size: .85rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .7rem 1rem;
  transition: background .2s;
}
.map-fullscreen:hover { background: rgba(139,32,32,.9); color: var(--cream); }

/* ── Besuch ──────────────────────────────────────────────────────────────── */
#besuch { background: var(--ink); padding: 5rem 0 6rem; }
#besuch .label { color: var(--gold); }
#besuch h2 { color: var(--cream); }

.besuch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.besuch-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block h4 {
  font-family: var(--ff-hand); font-size: 1.4rem; color: var(--gold);
  margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem;
}
.info-block h4 i { font-size: .85em; opacity: .8; }
.info-block p { color: rgba(245,240,232,.8); font-size: 1.05rem; line-height: 1.8; }
.info-block em { font-style: italic; font-size: .95rem; opacity: .7; }
.info-block a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.info-block a:hover { color: var(--gold); }

.map-link {
  display: inline-block; margin-top: .6rem;
  font-size: .85rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(196,150,74,.4);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.map-link:hover { border-color: var(--gold); }

.hours { border-collapse: collapse; font-size: 1rem; width: 100%; }
.hours td { padding: .4rem 1.5rem .4rem 0; color: rgba(245,240,232,.8); }
.hours td:last-child { text-align: right; padding-right: 0; font-variant-numeric: tabular-nums; }
.hours tr:not(.closed):first-child td { color: var(--cream); font-weight: 500; }
.hours tr.closed td { color: rgba(245,240,232,.3); font-style: italic; }



/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink); border-top: 1px solid rgba(196,150,74,.15);
  padding: 3rem 0; text-align: center;
}
.footer-logo {
  font-family: var(--ff-serif); font-size: 1.5rem; color: var(--cream);
  margin-bottom: .2rem;
}
.footer-logo span { color: var(--red); }
.footer-links {
  display: flex; justify-content: center; gap: 1.4rem;
  margin: .8rem 0 1rem;
}
.footer-links a {
  color: rgba(245,240,232,.35);
  font-size: 1.1rem;
  transition: color .2s, transform .2s;
}
.footer-links a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-imp {
  font-size: .75rem; color: rgba(245,240,232,.3);
  line-height: 1.8;
}

/* ── Reveal animations ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .besuch-grid { grid-template-columns: 1fr; }
  .map-embed iframe { width: 100%; height: 300px; }
  .map-embed { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* GALERIE */
.gal-img { width:100%;height:auto;display:block;margin-bottom:1rem;break-inside:avoid;cursor:zoom-in;border-radius:2px;transition:opacity .2s; }
.gal-img:hover { opacity:.85; }

/* hand-drawn underline */
.hand-underline { position: relative; display: inline-block; }
.hand-underline svg { position: absolute; left: 0; bottom: -.12em; width: 100%; height: .18em; }

/* ── Classic-modern polish ── */
section { padding: 6.5rem 0; }
section#hero { padding: 2rem 0; }
.section-title, h2 { letter-spacing: -.01em; }

/* thin double rule between sections, like fine book layout */
section + section { border-top: 1px solid var(--border); }

/* eyebrow labels */
.section-label, .eyebrow {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}

/* cards: flat, bordered, generous whitespace */
.card, .sortiment-card {
  background: #faf7f0;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 2.2rem;
  box-shadow: none;
  transition: border-color .25s, transform .25s;
}
.card:hover, .sortiment-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* quote block: classic centered with big serif */
blockquote {
  max-width: 720px; margin: 0 auto;
  font-family: var(--ff-serif);
  font-size: 1.5rem; line-height: 1.55;
  font-style: italic; color: var(--ink-soft);
  text-align: center;
}

/* buttons: sharp, uppercase, confident */
.btn-primary {
  border-radius: 0;
  letter-spacing: .12em;
}

/* gallery images: consistent frame */
.gal-img {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 6px;
  background: #faf7f0;
}

/* footer */
footer { border-top: 1px solid var(--border); padding: 3rem 0; }

/* 3+2 layout: each card spans 2 of 6 cols, last two centered */
.card { grid-column: span 2; }
.card:nth-child(4) { grid-column: 2 / span 2; }
.card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .card, .card:nth-child(4), .card:nth-child(5) { grid-column: auto; }
}
