/* Albini Blumen - Redesign Studie / digital M. GmbH
   Palette: Warm Ivory, Deep Botanical Green, Blush Rose, Terracotta, Ink
   Typografie: Gilda Display + Manrope
*/

:root {
  --ivory: #F5EFE4;
  --ivory-soft: #FBF7EF;
  --green: #1F3A2E;
  --green-deep: #152720;
  --green-soft: #3A5A49;
  --blush: #E8C9C1;
  --blush-soft: #F2DFD9;
  --terracotta: #B4553A;
  --ink: #1C1C1C;
  --ink-soft: #454545;
  --line: #D9CFBD;
  --line-soft: #ECE3D1;

  --font-serif: "Gilda Display", "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--green);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.2; }
h4 { font-size: 1.15rem; line-height: 1.3; }
p  { margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  vertical-align: middle;
  margin-right: 0.8rem;
}

/* ============ DEMO BANNER ============ */
.demo-banner {
  background: var(--green-deep);
  color: var(--ivory);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.demo-banner a { color: var(--blush); border-bottom: 1px solid var(--blush); }

/* ============ HEADER ============ */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 239, 228, 0.94);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 4px;
  font-weight: 600;
}
.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav a {
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--terracotta); }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
}
.header-cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  transition: all 0.25s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--green); color: var(--ivory); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 1.5rem var(--gutter);
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-text h1 span {
  display: block;
  font-style: italic;
  color: var(--terracotta);
}
.hero-text .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 2rem 0 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta div small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
  font-weight: 600;
}
.hero-meta div strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green);
  font-weight: 400;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--blush);
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::before {
  content: "seit 1951";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ivory);
  font-size: 1.25rem;
  background: rgba(31, 58, 46, 0.82);
  padding: 0.5rem 1.1rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 3 / 4; max-height: 70vh; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--green);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green);
  color: var(--ivory);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ SECTIONS ============ */
section { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-head p { margin-left: auto; margin-right: auto; }

/* ============ STATEMENT / INTRO ============ */
.statement {
  background: var(--ivory-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.statement-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.statement h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--green);
}
.statement h2 em {
  color: var(--terracotta);
  font-style: italic;
}
.statement .signature {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 2rem;
  font-size: 1rem;
}

/* ============ GENERATIONEN TIMELINE ============ */
.generationen {
  background: var(--ivory);
}
.gen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
}
.gen-card {
  padding: 2.5rem 2rem;
  background: var(--ivory-soft);
  border: 1px solid var(--line-soft);
  position: relative;
}
.gen-card .year {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1rem;
}
.gen-card h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
}
.gen-card p { font-size: 0.95rem; }
@media (max-width: 800px) { .gen-grid { grid-template-columns: 1fr; } }

/* ============ SORTIMENT / KATEGORIEN ============ */
.kategorien-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.kat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blush);
}
.kat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.kat-card:hover img { transform: scale(1.05); }
.kat-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(21, 39, 32, 0.92), rgba(21, 39, 32, 0) 100%);
  color: var(--ivory);
}
.kat-card .label h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.kat-card .label small {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
}
.kat-card.k-large { grid-column: span 6; aspect-ratio: 4/4; }
.kat-card.k-small { grid-column: span 3; }
.kat-card.k-mid { grid-column: span 4; }
.kat-card.k-wide { grid-column: span 8; aspect-ratio: 16/9; }
@media (max-width: 900px) {
  .kategorien-grid { grid-template-columns: repeat(2, 1fr); }
  .kat-card, .kat-card.k-large, .kat-card.k-small, .kat-card.k-mid, .kat-card.k-wide {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
}

/* ============ TEXT + BILD MODULE ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse .split-img { order: 2; }
.split-text .eyebrow { margin-bottom: 1rem; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blush);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
}

/* ============ LISTE / BULLETS ============ */
.plain-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.plain-list li {
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 1rem;
  color: var(--ink-soft);
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 14px;
  height: 1px;
  background: var(--terracotta);
}
.plain-list li strong {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.2rem;
}

/* ============ KONTAKT BLOCK ============ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
}
.info-card {
  background: var(--green);
  color: var(--ivory);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.info-card h2, .info-card h3 { color: var(--ivory); }
.info-card p { color: rgba(245, 239, 228, 0.85); }
.info-card .info-row {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245, 239, 228, 0.18);
}
.info-card .info-row:last-child { border-bottom: none; }
.info-card .info-row small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 6px;
  font-weight: 600;
}
.info-card .info-row strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
}
.oeffnungszeiten {
  background: var(--ivory-soft);
  border: 1px solid var(--line-soft);
  padding: clamp(2rem, 4vw, 3rem);
}
.oeffnungszeiten h3 { margin-bottom: 1.5rem; }
.oeffnungszeiten ul { list-style: none; }
.oeffnungszeiten li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.oeffnungszeiten li:last-child { border-bottom: none; }
.oeffnungszeiten li span:first-child {
  font-weight: 600;
  color: var(--green);
}
.oeffnungszeiten li span:last-child { color: var(--ink-soft); }
.oeffnungszeiten li.closed span:last-child { color: var(--terracotta); font-style: italic; }
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq summary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 0.8;
  transition: transform 0.3s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 1rem; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--green-deep);
  color: var(--ivory);
  text-align: center;
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
}
.cta-band h2 { color: var(--ivory); font-style: italic; max-width: 20ch; margin: 0 auto 1.5rem; }
.cta-band p { color: rgba(245, 239, 228, 0.78); max-width: 56ch; margin: 0 auto 2.5rem; }
.cta-band .btn-primary {
  background: var(--blush);
  color: var(--green-deep);
}
.cta-band .btn-primary:hover { background: var(--ivory); }
.cta-band .btn-outline { border-color: var(--ivory); color: var(--ivory); }
.cta-band .btn-outline:hover { background: var(--ivory); color: var(--green-deep); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ivory-soft);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-grid a:hover { color: var(--terracotta); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; max-width: 38ch; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ PAGE HEADER (Unterseiten) ============ */
.page-header {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.page-header .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.page-header h1 { margin-bottom: 0; }
.page-header .lede { font-size: 1.05rem; max-width: 44ch; }
@media (max-width: 800px) { .page-header .container { grid-template-columns: 1fr; } }

/* ============ GALERIE / PRODUKT GRID ============ */
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.produkt-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.produkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 58, 46, 0.08);
}
.produkt-card .img {
  aspect-ratio: 4/4;
  background: var(--blush);
  overflow: hidden;
}
.produkt-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.produkt-card:hover .img img { transform: scale(1.05); }
.produkt-card .body { padding: 1.5rem; }
.produkt-card h3 { margin-bottom: 0.4rem; font-size: 1.3rem; }
.produkt-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.produkt-card .price {
  font-family: var(--font-serif);
  color: var(--terracotta);
  font-size: 1.1rem;
  font-style: italic;
}

/* ============ FIELDS / FORM ============ */
.form-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea { resize: vertical; min-height: 140px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

/* ============ QUOTE / EDITORIAL ============ */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--green);
  max-width: none;
  margin-bottom: 1.5rem;
}
.quote cite {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-style: normal;
  font-weight: 600;
}

/* ============ UTILS ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
hr.sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}
