/* ============================================================
   Bacino — bespoke Design (elegante Boutique · Mode & Schuhe)
   Eigenständig pro Firma. Kein geteiltes Pack-Template.
   Richtung: editorial, warm-neutral, viel Luft, feine Linien.
   ============================================================ */
:root {
  --ink: #2a2521; /* warmes Anthrazit */
  --ink-soft: #6a6157;
  --cream: #f7f1e8; /* heller Creme-Grund */
  --cream-2: #efe6d8; /* etwas tiefer */
  --sand: #e4d7c4; /* sandiges Taupe */
  --taupe: #b7a890;
  --camel: #b07a45; /* edler Akzent (Camel) */
  --camel-deep: #97632f;
  --berry: #6e2a3c; /* zweiter, sparsamer Akzent (tiefes Beere) */
  --paper: #fffdf9;
  --line: rgba(42, 37, 33, 0.14);
  --line-soft: rgba(42, 37, 33, 0.08);
  --line-light: rgba(247, 241, 232, 0.22);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step-hero: clamp(3rem, 1.2rem + 7vw, 7rem);
  --step-h2: clamp(2.1rem, 1.3rem + 2.9vw, 3.6rem);
  --step-h3: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --step-lead: clamp(1.05rem, 0.98rem + 0.45vw, 1.28rem);

  --space: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius: 3px;
  --shadow: 0 32px 70px -34px rgba(42, 37, 33, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.shell {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--camel);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

.display {
  font-family: var(--serif);
  font-size: var(--step-h2);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.display em {
  font-style: italic;
  color: var(--camel);
}
.display--ink {
  color: var(--ink);
}
.display--light {
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--accent {
  color: var(--camel-deep);
}
.eyebrow--light {
  color: var(--sand);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}
.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn--accent {
  background: var(--camel);
  color: #fff;
}
.btn--accent:hover {
  background: var(--camel-deep);
  transform: translateY(-2px);
}
.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover {
  background: #1a1613;
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent;
  border-color: rgba(247, 241, 232, 0.55);
  color: var(--cream);
}
.btn--ghost-light:hover {
  background: rgba(247, 241, 232, 0.12);
  transform: translateY(-2px);
}
.btn--ghost-ink {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost-ink:hover {
  border-color: var(--camel);
  color: var(--camel-deep);
  transform: translateY(-2px);
}

/* ---------- Masthead ---------- */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.2rem 0;
  transition:
    background 0.3s var(--ease),
    padding 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    color 0.3s var(--ease);
  color: var(--cream);
}
.masthead.is-scrolled {
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 12px 30px -22px rgba(42, 37, 33, 0.4);
  color: var(--ink);
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.wordmark__name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.wordmark__sub {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}
.mainnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.mainnav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.88;
  padding: 0.3rem 0;
  position: relative;
  transition: opacity 0.2s var(--ease);
}
.mainnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--camel);
  transition: width 0.25s var(--ease);
}
.mainnav a:hover {
  opacity: 1;
}
.mainnav a:hover::after {
  width: 100%;
}
.masthead__cta {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}
.navtoggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.85;
}
.navtoggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 8rem 4.5rem;
  overflow: hidden;
  background: var(--cream-2);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s var(--ease) both;
}
@keyframes kenburns {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      88deg,
      rgba(34, 28, 22, 0.62) 0%,
      rgba(34, 28, 22, 0.32) 48%,
      rgba(34, 28, 22, 0.05) 100%
    ),
    linear-gradient(0deg, rgba(28, 23, 18, 0.55), transparent 42%);
}
.hero__inner {
  position: relative;
  max-width: 720px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  color: #fff;
  font-size: var(--step-hero);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 1.6rem;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--sand);
}
.hero__lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-lead);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__trust li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--camel);
}

/* ---------- Intro / Haltung ---------- */
.intro {
  padding-block: var(--space);
  background: var(--cream);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.intro__copy .display {
  max-width: 16ch;
}
.intro__lead p {
  color: var(--ink-soft);
  font-size: var(--step-lead);
  max-width: 48ch;
}
.intro__lead {
  position: relative;
  padding-top: 1.4rem;
}
.intro__lead::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--camel);
  margin-bottom: 1.6rem;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 620px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-head__lead {
  margin-top: 1rem;
  font-size: var(--step-lead);
  color: var(--ink-soft);
}

/* ---------- Sortiment / Stil (Split) ---------- */
.stil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-2);
}
.stil__media {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.stil__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.stil__media:hover img {
  transform: scale(1.04);
}
.stil__tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(28, 23, 18, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stil__panel {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
}
.stil__panel-inner {
  max-width: 38rem;
}
.stil__intro {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: var(--step-lead);
  max-width: 46ch;
}
.stil__list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.stil__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
}
.stil__list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.stil__no {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--camel);
  line-height: 1.4;
}
.stil__list h3 {
  font-size: var(--step-h3);
  margin-bottom: 0.3rem;
}
.stil__list p {
  color: var(--ink-soft);
  max-width: 52ch;
  font-size: 0.98rem;
}

/* ---------- Marken ---------- */
.marken {
  padding-block: var(--space);
  background: var(--cream);
}
.marken__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.marken__item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.2rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.marken__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: var(--camel);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.marken__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.marken__item:hover::before {
  opacity: 1;
}
.marken__name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
}
.marken__note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.marken__item--more {
  background: var(--cream-2);
}
.marken__item--more .marken__name {
  color: var(--camel-deep);
}

/* ---------- Besuch (Öffnungszeiten + Lage) ---------- */
.besuch {
  padding-block: var(--space);
  background: var(--ink);
  color: var(--cream);
}
.besuch__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.hours {
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-light);
}
.hours__row:last-child {
  border-bottom: 1px solid var(--line-light);
}
.hours__row dt {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hours__row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--sand);
}
.hours__row--muted dt,
.hours__row--muted dd {
  color: rgba(247, 241, 232, 0.5);
}
.besuch__hint {
  margin-top: 1.6rem;
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.95rem;
  max-width: 42ch;
}
.besuch__place {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(247, 241, 232, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}
.besuch__address {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.besuch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.besuch__actions .btn--ghost-ink {
  border-color: rgba(247, 241, 232, 0.4);
  color: var(--cream);
}
.besuch__actions .btn--ghost-ink:hover {
  border-color: var(--sand);
  color: var(--sand);
}
.besuch__note {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: rgba(247, 241, 232, 0.6);
  max-width: 40ch;
}

/* ---------- Kontakt ---------- */
.kontakt {
  padding-block: var(--space);
  background: var(--cream);
}
.kontakt__inner {
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}
.kontakt__lead {
  margin: 1.1rem auto 0;
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: var(--step-lead);
}
.contact-list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
}
.contact-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--camel);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s var(--ease);
}
.contact-list a:hover {
  border-color: var(--camel);
}
.kontakt__owner {
  margin-top: 2rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.sitefoot {
  background: var(--cream-2);
  color: var(--ink);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-soft);
}
.sitefoot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: space-between;
  align-items: center;
}
.wordmark--foot .wordmark__name {
  color: var(--ink);
}
.wordmark--foot .wordmark__sub {
  color: var(--ink-soft);
  opacity: 1;
}
.sitefoot__brand p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 38ch;
}
.sitefoot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
.sitefoot__links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.82;
  font-size: 0.92rem;
  transition:
    opacity 0.2s var(--ease),
    color 0.2s var(--ease);
}
.sitefoot__links a:hover {
  opacity: 1;
  color: var(--camel-deep);
}
.sitefoot__demo {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease) var(--d, 0ms),
    transform 0.7s var(--ease) var(--d, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mainnav,
  .masthead__cta {
    display: none;
  }
  .navtoggle {
    display: flex;
    margin-left: auto;
  }
  .masthead.nav-open {
    background: rgba(247, 241, 232, 0.97);
    color: var(--ink);
  }
  .masthead.nav-open .mainnav {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 100% 0 auto 0;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -22px rgba(42, 37, 33, 0.3);
  }
  .masthead.nav-open .mainnav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
    opacity: 0.9;
  }
  .intro__grid,
  .besuch__grid {
    grid-template-columns: 1fr;
  }
  .stil {
    grid-template-columns: 1fr;
  }
  .stil__media {
    min-height: 46vh;
  }
  .marken__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wordmark__name {
    font-size: 1.6rem;
  }
  .stil__list li {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.9rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .hours__row dd {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Schwarzwald-Agent Powered-by-Footer (pbStrip) – kanonisch ---------- */
.pbStrip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 26px 16px 22px;
  text-align: center;
  background: #fefdf9;
  border-top: 1px solid #e8e0d5;
}
.pbStrip .pbLink {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  opacity: 0.75;
  transition: opacity 0.18s ease;
  text-decoration: none;
}
.pbStrip .pbLink:hover {
  opacity: 1;
  text-decoration: none;
}
.pbStrip .pbLabel {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #8b7355;
}
.pbStrip .pbIcon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
}
.pbStrip .pbName {
  font-family:
    "Plus Jakarta Sans",
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d4a3c;
}
