/* ==========================================================================
   WOHNDERBAR by Sabrina
   Modern, minimal, near-monochrome. Warmth comes from photography, not from
   a saturated color palette. Display font: Bodoni Moda, used for every headline
   (h1, h2, h3, blockquote) and the wordmark.
   ========================================================================== */

:root {
  --paper: #FAF8F4;
  --paper-alt: #F1EEE7;
  --ink: #201E1A;
  --ink-soft: #55524B;
  --ink-faint: #8B877E;
  --line: rgba(32, 30, 26, 0.14);
  --line-soft: rgba(32, 30, 26, 0.08);

  --dark-bg: #1B1916;
  --dark-paper: #F3EFE8;
  --dark-line: rgba(243, 239, 232, 0.16);

  --font-display: 'Bodoni Moda', Didot, Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1180px;
  --narrow: 660px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Typography ---- */

h1, h2, blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: -0.005em; margin: 0; }
blockquote { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

.brand-by {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
}
.wordmark .brand-by { font-size: 0.45em; margin-left: 0.4rem; color: var(--ink-faint); }
.hero h1 .brand-by { font-size: 0.22em; display: block; margin-top: 0.15em; color: var(--ink-soft); }

/* ---- Wortmarke: Bodoni, Haarlinie, gezeichnetes Herz ---- */

.wd-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.34em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.wd-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 1em;
  letter-spacing: 0.085em;
  text-indent: 0.085em;
  white-space: nowrap;
  text-align: center;
}
.wd-rule { display: flex; align-items: center; gap: 0.44em; }
.wd-seg { flex: 1 1 auto; height: max(1px, 0.013em); background: currentColor; }
.wd-orn {
  height: 0.345em; width: 0.319em; flex: none; display: block;
  fill: currentColor; overflow: visible;
}
.wd-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.145em;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 0.1em;
  line-height: 1.4;
}

.wd-logo-header { font-size: 1.4rem; margin-right: auto; }
.wd-logo-footer { font-size: 1.55rem; }
.hero .wd-logo { font-size: clamp(2.1rem, 5.6vw, 3.9rem); }

.hero-logo { margin: 0; font-size: inherit; letter-spacing: normal; }
.hero-by {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0.85rem 0 1.6rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}

.eyebrow-light { color: rgba(243, 239, 232, 0.55); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42em;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin-top: 2rem;
}

.section-head { max-width: 42em; margin-bottom: 3rem; }
.section-lede { color: var(--ink-soft); font-size: 1.05rem; margin-top: 0.75rem; }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { transform: translateY(-1px); background: #34312B; }

.btn-text {
  padding: 0.9rem 0.25rem;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}
.btn-text:hover { border-color: var(--ink); }

.btn-small {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--ink);
  font-size: 0.85rem;
}
.btn-small:hover { background: var(--ink); color: var(--paper); }

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ---- Header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  margin-right: auto;
}
.wordmark.small { font-size: 2rem; margin-bottom: 0.1rem; }

.nav-claim {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-faint);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .nav-claim { display: none; }
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
}
.main-nav a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.main-nav a:hover { color: var(--ink); }

.header-inner .btn-small { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  padding: 0.5rem var(--gutter) 1.5rem;
}
.mobile-nav a {
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
}
.mobile-nav .btn { margin-top: 1.25rem; align-self: flex-start; }

.site-header.nav-open .mobile-nav { display: flex; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero ---- */

.hero { padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

/* ---- Für wen / Pain points ---- */

.painpoints { padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(2rem, 5vw, 3rem); }

.quote-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  max-width: 40em;
}
.quote-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
}
.quote-list li:last-child { border-bottom: 1px solid var(--line-soft); }

.painpoints-note { color: var(--ink-soft); font-size: 1.05rem; max-width: 38em; }

/* ---- Philosophy ---- */

.philosophy {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--paper-alt);
}

.philosophy-inner { max-width: 46em; text-align: left; }

.philosophy h2 { margin: 0 0 1.75rem; }

.philosophy blockquote {
  margin: 0 0 1.75rem;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 40em;
}
.philosophy-body strong { color: var(--ink); font-weight: 600; }
.philosophy-body em { color: var(--ink); font-style: italic; }

.philosophy-close {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 2rem;
  color: var(--ink);
}

.philosophy-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 40em; }

/* ---- Services ---- */

.services { padding: clamp(5rem, 10vw, 8rem) 0; }

.service-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 8vw, 5.5rem);
}

.service-media {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.service-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-card h3 { margin-bottom: 1.1rem; }

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.service-card li:last-child { border-bottom: 1px solid var(--line-soft); }

/* ---- Gallery strip ---- */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.strip-img { overflow: hidden; }
.strip-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.strip-img:hover img { transform: scale(1.04); }

/* ---- Occasions ---- */

.occasions { padding: clamp(5rem, 10vw, 8rem) 0; }

.occasion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.occasion-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.occasion-list li:hover { border-color: var(--ink); color: var(--ink); }

/* ---- Process (dark) ---- */

.process {
  background: var(--dark-bg);
  color: var(--dark-paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.process h2 { color: var(--dark-paper); }

.process-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-list li {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--dark-line);
  padding: 2rem 0;
}
.process-list li:last-child { border-bottom: 1px solid var(--dark-line); }
.process-list .process-num { margin-bottom: 0; flex-shrink: 0; }
.process-num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(243, 239, 232, 0.45);
  margin-bottom: 1rem;
}
.process-list h3 { color: var(--dark-paper); margin-bottom: 0.6rem; }
.process-list p { color: rgba(243, 239, 232, 0.7); margin: 0; }

/* ---- Pricing ---- */

.pricing { padding: clamp(5rem, 10vw, 8rem) 0; }

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 2.75rem);
}
.price-card-main { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.price-card-main .price-label,
.price-card-main .price-desc { color: rgba(250, 248, 244, 0.72); }

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin: 0 0 0.75rem;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 0 0 1.1rem;
}
.price-amount span { font-family: var(--font-sans); font-size: 1rem; font-weight: 400; color: var(--ink-faint); }
.price-card-main .price-amount span { color: rgba(250, 248, 244, 0.6); }
.price-desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.price-note {
  margin: 0.9rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.price-card-main .price-note { border-top-color: rgba(250, 248, 244, 0.18); color: rgba(250, 248, 244, 0.6); }

.pricing-cta { margin-top: 2.5rem; }

/* ---- About / Über mich ---- */

.about {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--paper-alt);
}

.about-inner { max-width: 46em; text-align: left; }
.about-inner h2 { margin: 0 0 1.75rem; }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 40em;
}
.about-body strong { color: var(--ink); font-weight: 600; }

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}

/* ---- Contact ---- */

.contact { padding: clamp(5rem, 10vw, 8rem) 0 clamp(6rem, 10vw, 9rem); }

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.contact-copy .btn { margin-top: 1.75rem; }

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-claim { font-family: var(--font-sans); font-style: italic; font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; font-size: 0.9rem; }
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { width: 100%; font-size: 0.8rem; color: var(--ink-faint); margin: 1.5rem 0 0; }

/* ---- Reveal on scroll ---- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-inner .btn-small { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 11; }

  .process-list li { gap: 1rem; }
}

@media (max-width: 560px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-list li { flex-direction: column; gap: 0.5rem; }
}
