:root {
  --peach:      #EECBAB;
  --peach-light:#F5D0AE;
  --peach-pale: #FCF6EF;
  --accent:     #C08651;
  --accent-deep:#A06E3D;
  --dark:       #1A1210;
  --ink:        #2A211C;
  --text:       #3A322C;
  --text-light: #7A6E64;
  --white:      #FFFFFF;
  --line:       rgba(26,18,16,0.08);
  --radius:     20px;
  --radius-sm:  14px;
  --grad:       linear-gradient(120deg, #C08651 0%, #E0A86E 50%, #EECBAB 100%);
  --shadow:     0 18px 50px -20px rgba(160,110,61,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--peach-light); color: var(--ink); }

/* soft grain overlay for warmth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== SCROLL PROGRESS ===== */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ===== HEADER (immer in Markenfarbe) ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 48px);
  background: var(--peach);
  transition: box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px -12px rgba(160,110,61,0.45);
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.4s, height 0.4s;
}
.site-header.scrolled .brand-logo { width: 42px; height: 42px; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name {
  font-family: 'Rouge Script', cursive;
  font-size: 26px;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  position: relative;
  padding: 9px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--accent-deep); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 10px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 210px;
  border: 1px solid var(--line);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text) !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--peach-pale); color: var(--accent-deep) !important; }

.nav-cta {
  margin-left: 10px;
  padding: 10px 22px !important;
  background: var(--grad);
  color: #fff !important;
  box-shadow: var(--shadow);
}
.nav-cta:hover { color: #fff !important; transform: translateY(-1px); }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: rgba(26,18,16,0.06);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 32px;
    background: var(--peach-pale);
    box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: var(--ink) !important; font-size: 20px; padding: 14px 16px; }
  .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none;
    background: transparent; border: none; padding: 0 0 0 14px; min-width: 0;
    display: block;
  }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu a { font-size: 16px; }
  .nav-cta { margin: 14px 0 0; text-align: center; }
}

/* ===== HERO (ganzes Bild sichtbar: scharf "contain" auf unscharfer Füllung) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
/* scharfes Vollbild (rausgezoomt) */
.hero-photo {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
/* unscharfe, vergrößerte Version füllt die Ränder */
.hero::before,
.hero-mini::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5) saturate(1.05);
  transform: scale(1.2);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(120% 70% at 20% 115%, rgba(192,134,81,0.32), transparent 60%),
    linear-gradient(transparent 52%, rgba(26,18,16,0.6));
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 7vw, 90px) clamp(24px, 6vw, 80px) clamp(70px, 9vw, 110px);
}
.hero-overlay h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 8.5vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.hero-overlay h1 .script {
  font-family: 'Rouge Script', cursive;
  font-weight: 400;
  font-size: 1.15em;
  background: linear-gradient(100deg, #F5D0AE, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.1em;
}
.hero-sub {
  margin-top: 20px;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.hero-cues {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(rgba(255,255,255,0.7), transparent);
  animation: cuemove 1.8s ease-in-out infinite;
}
@keyframes cuemove { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ===== MINI HERO (Unterseiten) ===== */
.hero-mini {
  position: relative;
  margin-top: 0;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-mini::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(transparent 42%, rgba(26,18,16,0.72));
}
.hero-mini .mini-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 40px) clamp(40px, 6vw, 64px);
  color: #fff;
}
.hero-mini .mini-tag {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--peach-light);
  margin-bottom: 12px;
}
.hero-mini h1 {
  font-family: 'Rouge Script', cursive;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-mini p {
  margin-top: 14px;
  max-width: 540px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

/* ===== BUTTONS ===== */
.btn-cta, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.25s, background 0.25s;
}
.btn-cta {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
  background-size: 160% 160%;
}
.btn-cta:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 22px 55px -18px rgba(160,110,61,0.6); }
.btn-cta .arrow { transition: transform 0.25s; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700; font-size: 15.5px;
  transition: transform 0.18s, background 0.25s;
}
.btn-dark:hover { transform: translateY(-2px); background: #000; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--ink);
  color: var(--peach-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: scrollx 32s linear infinite;
  padding-left: 28px;
}
.marquee span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee span::after { content: "📷"; font-size: 16px; filter: grayscale(0.1); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ===== SECTION SHELL ===== */
.section { max-width: 1180px; margin: 0 auto; padding: clamp(70px, 10vw, 120px) clamp(22px, 5vw, 40px); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ===== INTRO (zwei Spalten: Bild + Text) ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 880px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.intro-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.intro-portrait .floaty {
  position: absolute;
  left: 18px; bottom: 18px;
  padding: 8px 16px;
  background: rgba(252,246,239,0.88);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: 'Rouge Script', cursive;
  font-size: 24px;
  color: var(--accent-deep);
  line-height: 1;
}

/* editoriales Akzentbild im Fließtext */
.prose-figure { margin: 38px auto; max-width: 340px; text-align: center; }
.prose-figure .frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  background: var(--peach-pale);
}
.prose-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prose-figure figcaption {
  margin-top: 12px;
  font-family: 'Rouge Script', cursive;
  font-size: 22px;
  color: var(--accent);
}

/* ===== INTRO ===== */
.intro-single { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-single .eyebrow { justify-content: center; }
.intro-single .intro-actions { justify-content: center; }
.intro h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.08;
}
.intro h2 em {
  font-family: 'Rouge Script', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25em;
}
.intro p { color: var(--text-light); margin-bottom: 16px; font-size: 16.5px; line-height: 1.8; }
.intro .tagline {
  font-family: 'Rouge Script', cursive;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--accent);
  margin: 0 0 22px;
  line-height: 1.25;
}
.intro-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* value boxes (vormals stats) */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px auto 0;
  max-width: 640px;
}
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }
.stat { padding: 22px 18px; background: var(--peach-pale); border-radius: var(--radius-sm); text-align: center; }
.stat .num { font-size: 18px; font-weight: 800; color: var(--accent-deep); letter-spacing: -0.01em; line-height: 1.2; }
.stat .lbl { font-size: 13px; font-weight: 500; color: var(--text-light); margin-top: 7px; letter-spacing: 0.01em; }

/* ===== PROSE (Unterseiten-Text) ===== */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--text-light); font-size: 17px; line-height: 1.85; margin-bottom: 18px; }
.prose .tagline {
  font-family: 'Rouge Script', cursive;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--accent);
  margin: 0 0 22px; line-height: 1.25;
}
.prose .placeholder {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--peach-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-light);
  font-size: 14.5px;
}
.prose .placeholder strong { color: var(--accent-deep); }

/* ===== SERVICES ===== */
.services-head { text-align: center; margin-bottom: 44px; }
.services-head h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.services-head p { color: var(--text-light); max-width: 560px; margin: 12px auto 0; }
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  color: #fff;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.service-card:hover { transform: translateY(-6px); }
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.72);
}
.service-card:hover img { transform: scale(1.08); }
.service-card .service-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 26px;
  background: linear-gradient(transparent 38%, rgba(26,18,16,0.85));
}
.service-tag {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 6px 14px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.service-label h3 {
  font-family: 'Rouge Script', cursive;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.service-label p { font-size: 14px; opacity: 0.92; line-height: 1.55; }
.service-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 13px; font-weight: 700;
  color: var(--peach-light);
}
.service-arrow .a { transition: transform 0.25s; }
.service-card:hover .service-arrow .a { transform: translateX(5px); }

/* ===== PROCESS ===== */
.process { background: var(--peach-pale); }
.process-wrap { max-width: 1180px; margin: 0 auto; padding: clamp(70px, 10vw, 110px) clamp(22px, 5vw, 40px); }
.process-head { text-align: center; margin-bottom: 48px; }
.process-head h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800; font-size: 20px;
  margin-bottom: 18px;
}
.step h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 15.5px; line-height: 1.7; }

/* ===== PAKETE / PREISE ===== */
.packages-section { background: var(--peach-pale); }
.packages-wrap { max-width: 1180px; margin: 0 auto; padding: clamp(70px, 10vw, 110px) clamp(22px, 5vw, 40px); }
.packages-head { text-align: center; margin-bottom: 44px; }
.packages-head h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.packages { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
@media (min-width: 680px) { .packages { grid-template-columns: 1fr 1fr; } }
.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-card.featured { background: var(--ink); border-color: var(--ink); color: #fff; }
.pkg-name { font-family: 'Rouge Script', cursive; font-size: 36px; color: var(--accent); margin-bottom: 8px; line-height: 1; }
.package-card.featured .pkg-name { color: var(--peach-light); }
.pkg-price { font-size: 50px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-bottom: 24px; }
.package-card.featured .pkg-price { color: #fff; }
.pkg-price span { font-size: 22px; font-weight: 600; vertical-align: super; margin-left: 3px; }
.pkg-price.small { font-size: 28px; font-weight: 700; }
.pkg-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 0; }
.pkg-list li { font-size: 15px; color: var(--text-light); padding: 12px 0; border-bottom: 1px solid var(--line); }
.package-card.featured .pkg-list li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.12); }
.pkg-list li:first-child { padding-top: 0; }
.pkg-list li:last-child { border-bottom: none; padding-bottom: 0; }
.package-card .btn-dark, .package-card .btn-cta { margin-top: auto; align-self: center; }
.package-card.featured .btn-dark { background: var(--grad); }
.pkg-note { text-align: center; max-width: 640px; margin: 30px auto 0; font-size: 12.5px; color: var(--text-light); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-head { text-align: center; margin-bottom: 30px; }
.gallery-head h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.pill {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  color: var(--text);
}
.pill:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }
.pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill .count { font-size: 11px; opacity: 0.55; margin-left: 4px; }
.pill.active .count { opacity: 0.7; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-auto-flow: dense;
}
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--peach-pale);
  text-decoration: none;
  color: #fff;
  display: block;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}
.photo.shown { opacity: 1; transform: none; }
.photo.feature { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
@media (max-width: 639px) { .photo.feature { grid-column: span 2; grid-row: auto; aspect-ratio: 3/4; } }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s; }
.photo:hover img { transform: scale(1.06); filter: brightness(0.9); }
.photo.hidden { display: none; }
.photo .photo-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(26,18,16,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.photo:hover .photo-label { opacity: 1; transform: none; }
.photo .photo-view {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s, transform 0.25s;
}
.photo:hover .photo-view { opacity: 1; transform: none; }

/* ===== CONTACT ===== */
.contact-section { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.contact-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 80% 0%, rgba(192,134,81,0.4), transparent 60%);
}
.contact-wrap {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(70px, 10vw, 110px) clamp(22px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}
@media (min-width: 880px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; } }
.contact-intro .eyebrow { color: var(--peach-light); }
.contact-intro .eyebrow::before { background: var(--peach-light); }
.contact-intro h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.contact-intro h2 em { font-family: 'Rouge Script', cursive; font-style: normal; font-weight: 400; color: var(--peach-light); font-size: 1.2em; }
.contact-intro p { color: rgba(255,255,255,0.7); margin-top: 16px; max-width: 420px; }
.contact-meta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-meta a {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; text-decoration: none;
  font-size: 15.5px; font-weight: 500;
  transition: color 0.2s;
}
.contact-meta a:hover { color: var(--peach-light); }
.contact-meta .ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
@media (min-width: 560px) { .form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } }
.field { position: relative; margin-top: 18px; }
.field:first-child, .form-grid2 .field:first-child { margin-top: 0; }
.field label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select { color: rgba(255,255,255,0.85); }
.contact-form select option { color: #1a1210; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--peach-light);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(245,208,174,0.12);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.consent-line {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 18px;
  font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.55;
}
.consent-line input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.consent-line a { color: var(--peach-light); }
.contact-form button { margin-top: 22px; width: 100%; justify-content: center; }
#formStatus { margin-top: 14px; font-size: 13.5px; text-align: center; min-height: 18px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--peach-pale); padding: 56px clamp(22px, 5vw, 40px) 36px; border-top: 1px solid var(--line); }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand .fb-name { font-family: 'Rouge Script', cursive; font-size: 30px; color: var(--ink); line-height: 1; }
.footer-brand .fb-sub { font-size: 13px; color: var(--text-light); }
.footer-contact { font-size: 14.5px; color: var(--text-light); line-height: 1.8; }
.footer-contact strong { color: var(--ink); }
.footer-contact a { color: var(--accent-deep); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-legal { font-size: 14px; color: var(--text-light); display: flex; flex-direction: column; gap: 8px; align-items: center; }
@media (min-width: 768px) { .footer-legal { align-items: flex-end; } }
.footer-legal a { color: var(--accent-deep); text-decoration: none; margin: 0 6px; }
.footer-legal a:hover { text-decoration: underline; }
.footer-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--ink); color: #fff !important;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  transition: transform 0.2s;
}
.footer-instagram:hover { transform: translateY(-2px); text-decoration: none !important; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,14,12,0.97);
  backdrop-filter: blur(8px);
  z-index: 300;
  align-items: center; justify-content: center; flex-direction: column;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 64vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 301;
  transition: background 0.2s, transform 0.2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-close { top: 22px; right: 22px; width: 44px; height: 44px; font-size: 22px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 22px; }
.lightbox .lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }
.lb-caption { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.lb-haiku {
  color: rgba(255,255,255,0.92);
  font-family: 'Rouge Script', cursive;
  font-size: clamp(22px, 3.5vw, 30px);
  margin-top: 6px; text-align: center;
  white-space: pre-line; max-width: 520px; line-height: 1.45;
}
.lb-spotify {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 22px; padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; color: #fff; text-decoration: none;
  font-size: 13px; transition: background 0.2s;
}
.lb-spotify:hover { background: rgba(255,255,255,0.14); }
.lb-spotify .spot-icon {
  width: 30px; height: 30px; background: #1DB954; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 15px; flex-shrink: 0;
}
.lb-spotify .spot-label { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.5; margin-bottom: 2px; }
