/* =============================================
   Alexandra's Zuckerboutique – Global Styles
   ============================================= */

@import url('fonts.css');

/* ── CSS Variables ── */
:root {
  --gold:          #B8882A;
  --gold-hover:    #9A7222;
  --gold-dark:     #7D5C1A;
  --gold-light:    rgba(184, 136, 42, 0.09);
  --gold-border:   rgba(184, 136, 42, 0.28);

  --cream:         #FFFFFF;
  --champagne:     #FAF8F4;
  --warm-white:    #F7F5F1;
  --bg-section:    #F3F1ED;

  --text-dark:     #2C2420;
  --text-medium:   #6B5D55;
  --text-light:    #9E9089;
  --text-gold:     #B8882A;

  --border-light:  #EDE8E1;
  --border-medium: #D9D1C8;

  --shadow-sm:     0 1px 8px rgba(44, 36, 32, 0.06);
  --shadow-md:     0 4px 24px rgba(44, 36, 32, 0.09);
  --shadow-lg:     0 12px 48px rgba(44, 36, 32, 0.12);

  --nav-height:    116px;
  --container:     1260px;
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;

  --ease-premium:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition:    0.4s var(--ease-premium);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section Layout ── */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--champagne);
}

.section--dark {
  background: var(--text-dark);
  color: var(--cream);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle--light {
  color: rgba(253, 250, 245, 0.75);
}

/* Gold divider */
.gold-line {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 24px;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.nav.is-transparent {
  background: #fff;
  box-shadow: 0 1px 0 var(--border-light);
}

.nav.is-sticky {
  background: #fff;
  box-shadow: 0 1px 0 var(--border-light);
  height: 96px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 100px;
  width: auto;
  transition: height var(--transition);
  object-fit: contain;
}

.nav.is-sticky .nav__logo img {
  height: 80px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav.is-sticky .nav__link {
  color: var(--text-dark);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-premium);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Nav CTA */
.nav__cta {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 40px;
  transition: background var(--transition), transform 0.2s ease, box-shadow var(--transition);
}

.nav__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 136, 42, 0.32);
  color: #fff;
}

/* Nav Social Icons */
.nav__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 116px;
  gap: 10px;
  margin-left: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--border-light);
}
a.nav__logo {
  width: 116px;
}

.nav__social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-medium);
  transition: all 0.3s ease;
}

.nav__social-link svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav__social-link:hover {
  color: var(--gold);
  background: var(--gold-light);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s var(--ease-premium);
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--text-dark);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav__mobile-close:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.nav__mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-cta {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 40px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav__mobile-cta:hover {
  background: var(--gold);
  color: #fff;
}

.nav__mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.nav__mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav__mobile-social a svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav__mobile-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────
   HERO  –  Full-bleed image, gradient bottom
───────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform-origin: center;
}

/* Gradient: transparent top → warm dark at bottom */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 8, 4, 0.88) 0%,
    rgba(15, 8, 4, 0.55) 45%,
    rgba(15, 8, 4, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Content sits at the bottom */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px 72px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  opacity: 0;
}

.hero__tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  max-width: 640px;
  margin-bottom: 18px;
  opacity: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #e8c97a;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.85);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  letter-spacing: 0.3px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 250, 245, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-premium);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 3px 14px rgba(184, 136, 42, 0.28);
}

.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 136, 42, 0.38);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(253, 250, 245, 0.6);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-medium);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 13px;
}

.btn svg, .btn .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg, .btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────
   ABOUT MINIMAL (Startseite)
───────────────────────────────────────────── */
.about-minimal__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.about-minimal__inner--no-photo {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.about-minimal__photo {
  position: relative;
}

.about-minimal__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-minimal__photo-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.about-minimal__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about-minimal__content .section-tag {
  text-align: left;
}

.about-minimal__text {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ─────────────────────────────────────────────
   FEATURED TORTEN (Startseite)
───────────────────────────────────────────── */
.torten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.torten-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.torten-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

/* Torte Card */
.torte-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--champagne);
}

.torte-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.torte-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.torte-card:hover .torte-card__img img {
  transform: scale(1.07);
}

.torte-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,31,23,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.torte-card:hover .torte-card__overlay {
  opacity: 1;
}

.torte-card__overlay-content {
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-premium);
}

.torte-card:hover .torte-card__overlay-content {
  transform: translateY(0);
}

.torte-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(253,250,245,0.5);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.torte-card__overlay-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.torte-card__body {
  padding: 20px 22px;
}

.torte-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.torte-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.torte-card__gold-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 10px;
  transition: width 0.4s ease;
}

.torte-card:hover .torte-card__gold-line {
  width: 48px;
}

/* Section actions */
.section-actions {
  text-align: center;
  margin-top: 56px;
}

/* ─────────────────────────────────────────────
   DEKORATIONEN PREVIEW (Startseite)
───────────────────────────────────────────── */
.dekor-section {
  background: var(--champagne);
  overflow: hidden;
}

.dekor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.dekor-layout__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.dekor-layout__img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.dekor-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-premium);
}

.dekor-layout__img:hover img {
  transform: scale(1.05);
}

.dekor-layout__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}

.dekor-layout__content .section-tag {
  text-align: left;
}

.dekor-layout__content .section-title {
  text-align: left;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.dekor-layout__text {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 40px;
}

.dekor-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}

.dekor-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(253, 250, 245, 0.85);
}

.dekor-feature {
  color: var(--text-medium);
}

.dekor-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   CTA BANNER (Startseite)
───────────────────────────────────────────── */
.cta-banner {
  background: var(--champagne);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: clip;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 154, 39, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: var(--text-medium);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   ÜBER MICH PAGE
───────────────────────────────────────────── */
.page-hero {
  background: var(--champagne);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

/* Background image variant */
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 4, 0.50);
}
.page-hero--img {
  background: #1a1008;
  border-bottom-color: transparent;
}
.page-hero--img .page-hero__tag {
  color: rgba(201, 169, 110, 0.9);
}
.page-hero--img .page-hero__title {
  color: white;
}
.page-hero--img .page-hero__title em {
  color: var(--gold);
}
.page-hero--img .gold-line {
  opacity: 0.55;
}

.page-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.ueber-mich-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.ueber-mich__portrait {
  position: sticky;
  top: 100px;
}

.ueber-mich__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.ueber-mich__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-mich__signature {
  text-align: center;
  margin-top: 28px;
}

.ueber-mich__signature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
}

.ueber-mich__signature-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.ueber-mich__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.ueber-mich__content h2:first-child {
  margin-top: 0;
}

.ueber-mich__content p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 20px;
}

.ueber-mich__content .gold-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 36px 0;
}

.ueber-mich__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.ueber-mich__value {
  background: var(--champagne);
  border-radius: var(--radius-sm);
  padding: 24px;
  border-left: 3px solid var(--gold);
}

.ueber-mich__value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.ueber-mich__value-text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   TORTEN / GALERIE PAGE
───────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border-medium);
  background: transparent;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}

.gallery-item:hover .gallery-item__img img {
  transform: scale(1.06);
}

.gallery-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42,31,23,0.85) 0%, transparent 100%);
  padding: 40px 20px 20px;
  transform: translateY(8px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-item__info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.gallery-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox__caption {
  color: var(--cream);
  text-align: center;
  margin-top: 20px;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 24px;
  transition: color 0.3s ease;
  z-index: 2001;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253,250,245,0.12);
  border: 1px solid rgba(253,250,245,0.25);
  color: var(--cream);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 2001;
}

.lightbox__nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ─────────────────────────────────────────────
   DEKORATIONEN PAGE
───────────────────────────────────────────── */
.dekor-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.dekor-intro__text .section-tag { text-align: left; }
.dekor-intro__text .section-title { text-align: left; margin-bottom: 24px; }

.dekor-intro__text p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 20px;
}

.dekor-intro__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.dekor-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dekor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dekor-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
  cursor: pointer;
}

.dekor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.dekor-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dekor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}

.dekor-card:hover .dekor-card__img img {
  transform: scale(1.06);
}

.dekor-card__body {
  padding: 24px;
}

.dekor-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dekor-card__text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dekor-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   KONTAKT PAGE
───────────────────────────────────────────── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.kontakt-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.kontakt-info__text {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 36px;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.kontakt-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.kontakt-detail__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.kontakt-detail__value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.kontakt-detail__value a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.kontakt-detail__value a:hover {
  color: var(--gold);
}

.kontakt-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.kontakt-social__link {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-medium);
}

.kontakt-social__link svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
}

.kontakt-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

/* Contact Form */
.kontakt-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* ── Anfrage-Typ Tabs ── */
.anfrage-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.anfrage-tab {
  flex: 1;
  padding: 13px 10px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--text-medium);
  border-right: 1px solid var(--border-light);
  transition: background 0.2s, color 0.2s;
}

.anfrage-tab:last-child { border-right: none; }

.anfrage-tab:hover { background: var(--cream); color: var(--text-dark); }

.anfrage-tab.is-active {
  background: var(--gold);
  color: #fff;
}

/* ── Anfrage Sektionen ── */
.anfrage-sektion { display: none; }
.anfrage-sektion.is-active { display: block; }

/* ── Form label hint ── */
.form-label-hint {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0;
  text-transform: none;
}

.form-label-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin: -4px 0 12px;
  line-height: 1.5;
}

/* ── Dekor-Wahl Karten ── */
.dekor-wahl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.dekor-wahl-karte {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-light);
  transition: border-color 0.2s;
  display: block;
}

.dekor-wahl-karte input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dekor-wahl-karte__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.dekor-wahl-karte__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}

.dekor-wahl-karte:hover .dekor-wahl-karte__img img { transform: scale(1.05); }

.dekor-wahl-karte__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.dekor-wahl-karte input:checked ~ .dekor-wahl-karte__check {
  opacity: 1;
  transform: scale(1);
}

.dekor-wahl-karte:has(input:checked) {
  border-color: var(--gold);
}

.dekor-wahl-karte__title {
  display: block;
  padding: 6px 6px 7px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  background: #fff;
  line-height: 1.3;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-medium);
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 39, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C7E76' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

/* Radio and Checkbox groups */
.form-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-option input[type="radio"],
.form-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.form-option-label {
  font-size: 0.92rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: color 0.2s ease;
}

.form-option:hover .form-option-label {
  color: var(--text-dark);
}

/* File upload */
.form-file-area {
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--cream);
  position: relative;
}

.form-file-area:hover,
.form-file-area.drag-over {
  border-color: var(--gold);
  background: var(--gold-light);
}

.form-file-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-file-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.form-file-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}

.form-file-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.form-file-hint {
  font-size: 0.78rem;
  color: var(--text-light);
}

.form-file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.form-file-preview img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1.5px solid var(--border-light);
}

/* Datenschutz */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--champagne);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid var(--border-light);
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox-group a {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit {
  margin-top: 28px;
  text-align: center;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.form-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success__text {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ─────────────────────────────────────────────
   IMPRESSUM PAGE
───────────────────────────────────────────── */
.impressum-content {
  max-width: 760px;
  margin: 0 auto;
}

.impressum-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.impressum-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.impressum-content p {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 12px;
}

.impressum-content a {
  color: var(--gold);
}

.impressum-content ul {
  margin: 12px 0 16px 20px;
  padding: 0;
  list-style: disc;
}

.impressum-content ul li {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 8px;
  padding-left: 6px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.footer__brand-logo {
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(253,250,245,0.6);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 154, 39, 0.12);
}

.footer__social-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-col-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(253,250,245,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: 'Lato', sans-serif;
  transition: color 0.3s ease;
}

.footer__social-col-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__social-col-link:hover {
  color: var(--gold);
}

.footer__col-title {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.6);
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer__link:hover {
  color: var(--cream);
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(253, 250, 245, 0.4);
}

.footer__bottom a {
  color: rgba(253, 250, 245, 0.4);
  transition: color 0.3s ease;
}

.footer__bottom a:hover {
  color: var(--gold);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

/* ─────────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--gold-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
}

.process-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS / QUOTE
───────────────────────────────────────────── */
.quote-section {
  text-align: center;
  padding: 100px 0;
  background: var(--champagne);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }

/* Hidden for gallery filter */
.gallery-item.hidden {
  display: none;
}

/* Reveal animations (GSAP will handle) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 30px; }
  .torten-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dekor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .ueber-mich-layout { gap: 52px; }
  .dekor-intro { gap: 52px; }
  .kontakt-layout { gap: 52px; }
  .about-minimal__inner { grid-template-columns: 340px 1fr; gap: 48px; }
}

@media (max-width: 1100px) {
  :root { --nav-height: 96px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__social { display: none; }
  .nav__logo img { height: 80px; }
  .nav.is-sticky { height: 96px; }
  .nav.is-sticky .nav__logo img { height: 80px; }
}

@media (max-width: 900px) {

  .hero { margin-top: 0; height: auto; min-height: 100svh; }
  .hero__content { padding: calc(var(--nav-height) + 32px) 32px 56px; }
  .hero__title { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .about-minimal__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-minimal__photo { max-width: 400px; margin: 0 auto; }
  .about-minimal__photo-frame { display: none; }
  .about-minimal__content { align-items: center; text-align: center; }
  .about-minimal__content .section-tag { text-align: center; }


  .dekor-layout {
    grid-template-columns: 1fr;
  }
  .dekor-layout__images {
    height: 280px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .dekor-layout__content {
    padding: 60px 40px;
  }

  .ueber-mich-layout {
    grid-template-columns: 1fr;
  }
  .ueber-mich__portrait {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
  }
  .kontakt-form { padding: 36px 28px; }

  .dekor-intro {
    grid-template-columns: 1fr;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 876px) and (max-width: 900px) {
  .hero__title { font-size: clamp(2rem, 3.8vw, 2.8rem); }
}

@media (min-width: 641px) and (max-width: 875px) {
  .hero {
    margin-top: 0;
    height: auto;
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero__content {
    padding: calc(var(--nav-height) + 24px) 32px 52px;
  }
  .hero__title { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin-bottom: 12px; }
  .hero__subtitle { font-size: 0.92rem; margin-bottom: 28px; }
  .hero__actions { gap: 10px; }
}

@media (max-width: 640px) {
  :root { --nav-height: 96px; }

  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  .hero {
    margin-top: 0;
    height: auto;
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero__content {
    padding: calc(var(--nav-height) + 24px) 20px 52px;
  }
  .hero__title br { display: none; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 12px; }
  .hero__subtitle { margin-bottom: 28px; font-size: 0.92rem; }
  /* Global: all buttons full width on mobile */
  .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  /* Exclude nav buttons */
  .nav__cta,
  .nav__mobile-cta { display: inline-flex; width: auto; }

  /* Stack button containers vertically */
  .hero__actions,
  .cta-banner__actions,
  .btn-group,
  .section-actions { flex-direction: column; gap: 10px; }

  .hero__actions .btn--lg { padding: 14px 32px; }

  .torten-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dekor-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .ueber-mich__values { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .kontakt-form { padding: 28px 20px; }
  .anfrage-tab { font-size: 9px; padding: 11px 6px; letter-spacing: 0.8px; }
  .dekor-wahl-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nav__inner { padding: 0 20px; }
  .dekor-layout__content { padding: 48px 24px; }
}

/* ── Tall viewport fix (iPad portrait, tall monitors) ── */
@media (min-height: 900px) and (min-width: 901px) {
  .hero {
    height: 880px;
    min-height: 880px;
    max-height: 880px;
    align-items: center;
  }
  .hero__content {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/* ── Short viewport fix (wide desktop, landscape short) ── */
@media (max-height: 700px) and (min-width: 901px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--nav-height));
    align-items: flex-end;
  }
  .hero__content {
    padding-top: 40px;
    padding-bottom: 48px;
  }
}

/* ── Scroll Reveal — initial state (GSAP takes over on window.load) ── */
.rv, .rv-sm, .rvl, .rvr, .gallery-item, .editorial-item, .page-hero > .container { opacity: 0; }

/* ── Editorial Gallery Grid ── */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.editorial-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
}
.editorial-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}
.editorial-item:hover img { transform: scale(1.06); }
.editorial-item__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,20,12,0.95) 0%, rgba(30,20,12,0.5) 65%, transparent 100%);
  padding: 56px 18px 18px;
  transform: translateY(8px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.editorial-item:hover .editorial-item__info { transform: translateY(0); opacity: 1; }
.editorial-item__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.editorial-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.editorial-item--featured { grid-column: span 2; grid-row: span 2; }
.editorial-item--featured .editorial-item__title { font-size: 1.5rem; }

@media (max-width: 960px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 540px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .editorial-item--featured { grid-column: span 2; grid-row: span 1; }
}

/* ── Flatpickr — site renkleriyle uyumlu ── */
.flatpickr-calendar { font-family: Arial, sans-serif; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid #E8DDD5; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: #B8882A; border-color: #B8882A; }
.flatpickr-day:hover { background: #F5F0EA; border-color: #F5F0EA; }
.flatpickr-day.today { border-color: #B8882A; }
.flatpickr-day.today:hover { background: #F5F0EA; }
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays, span.flatpickr-weekday { background: #2A1F17; color: #fff; fill: #fff; }
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #B8882A; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: #fff; }
