/* ============================================
   0711beautique – Custom Design System
   Farben: Creme / Roségold / Tief-Dunkel
   ============================================ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #c4965a;
  --gold-light:#e8c99a;
  --gold-dark: #a3793d;
  --cream:     #faf7f4;
  --cream-2:   #f3ede6;
  --dark:      #1a1614;
  --dark-2:    #2d2520;
  --mid:       #6b5d54;
  --light-text:#9e8e84;
  --white:     #ffffff;
  --border:    #e8ddd5;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:  4px;
  --radius-lg: 8px;
  --shadow:  0 4px 24px rgba(26,22,20,0.08);
  --shadow-lg: 0 12px 48px rgba(26,22,20,0.14);

  --nav-h: 72px;
  --section-py: 88px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ── Google Fonts Fallback ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Skip Link ─────────────────────────────── */
.skip-link {
  position: fixed; top: 0; left: -100%; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: 10px 20px; font-size: 14px; border-radius: 0 0 var(--radius) 0;
  transition: left .2s;
}
.skip-link:focus { left: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.b-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(26,22,20,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,150,90,0.15);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.b-nav.scrolled {
  background: rgba(250,247,244,0.97);
  box-shadow: 0 1px 20px rgba(26,22,20,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.b-nav__inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.b-nav__logo img {
  height: 56px; width: auto;
  /* Logo auf dunklem Hintergrund: weiß + Gold-Schimmer */
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(196,150,90,0.5));
  transition: filter .3s, transform .2s;
}
.b-nav__logo:hover img {
  transform: scale(1.04);
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(196,150,90,0.8));
}
/* Eingeschrollter Zustand: Original-Farben, aber größer und mit Schatten */
.b-nav.scrolled .b-nav__logo img {
  filter: drop-shadow(0 1px 4px rgba(26,22,20,0.12));
}
.b-nav.scrolled .b-nav__logo:hover img {
  filter: drop-shadow(0 2px 8px rgba(196,150,90,0.3));
}

.b-nav__links {
  display: flex; align-items: center; gap: 36px;
}
.b-nav__links a {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.b-nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.b-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.b-nav__links a:hover { color: var(--gold-light); }
.b-nav.scrolled .b-nav__links a { color: var(--mid); }
.b-nav.scrolled .b-nav__links a:hover { color: var(--gold); }

.b-nav__cta {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  border-radius: 40px;
  padding: 8px 20px;
  transition: background .2s, color .2s !important;
}
.b-nav__cta:hover { background: var(--gold); color: var(--white) !important; }
.b-nav__cta::after { display: none !important; }

/* Mobile burger */
.b-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.b-nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s;
}
.b-nav.scrolled .b-nav__burger span { background: var(--dark); }
.b-nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.b-nav__burger.open span:nth-child(2) { opacity: 0; }
.b-nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.b-nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  overflow-y: auto;          /* scrollbar wenn Screen sehr klein */
  padding: 32px 24px;
  -webkit-overflow-scrolling: touch;
}
.b-nav__mobile.open { display: flex; }
.b-nav__mobile a {
  font-family: var(--font-serif);
  font-size: 28px; color: var(--dark);
  letter-spacing: .02em;
  /* Mindest-Tappable-Area für Mobilgeräte */
  min-height: 44px;
  display: flex; align-items: center;
}
.b-nav__mobile a:hover { color: var(--gold); }
.b-nav__mobile .b-nav__cta {
  font-family: var(--font-sans);
  font-size: 13px !important;
  min-height: 44px;
}

/* iOS: verhindert Auto-Zoom bei input focus */
input, textarea, select {
  font-size: 16px;
}

/* ============================================
   HERO
   ============================================ */
.b-hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.b-hero__bg {
  position: absolute; inset: 0;
  background: url('../shooting/IMG_0558.JPG') center center / cover no-repeat;
}
.b-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,22,20,0.62) 0%,
    rgba(26,22,20,0.28) 60%,
    rgba(164,121,61,0.18) 100%
  );
}
.b-hero__content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  max-width: 720px; padding: 0 24px;
}
.b-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-light);
  display: block; margin-bottom: 20px;
}
.b-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.b-hero__title em { font-style: italic; color: var(--gold-light); }
.b-hero__sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px; line-height: 1.6;
}
.b-hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Scroll indicator */
.b-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
}
.b-hero__scroll:hover { color: var(--gold-light); }
.b-hero__scroll svg {
  width: 20px; height: 20px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(164,121,61,0.35);
}
.btn--outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: var(--white); color: var(--dark);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-dark:hover {
  background: var(--gold); color: var(--white);
  transform: translateY(-2px);
}
.btn--text {
  background: none; border: none; padding: 0;
  color: var(--gold); font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn--text:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================
   TRUST BAR
   ============================================ */
.b-trust {
  background: var(--dark);
  padding: 20px 0;
}
.b-trust__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.b-trust__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: .04em;
}
.b-trust__item svg {
  width: 16px; height: 16px;
  color: var(--gold); flex-shrink: 0;
}
.b-trust__item strong {
  color: var(--white); font-weight: 700;
}

/* ============================================
   SECTION WRAPPER
   ============================================ */
.b-section {
  padding: var(--section-py) 0;
}
.b-section--cream { background: var(--cream); }
.b-section--cream-2 { background: var(--cream-2); }
.b-section--dark {
  background: var(--dark-2);
  color: var(--white);
}
.b-container {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.b-container--sm { max-width: 860px; }
.b-container--xs { max-width: 680px; }

/* Section header */
.b-section-header {
  text-align: center; margin-bottom: 60px;
}
.b-section-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.b-section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; line-height: 1.2;
  color: var(--dark); margin-bottom: 16px;
}
.b-section--dark .b-section-header__title { color: var(--white); }
.b-section-header__title em { font-style: italic; color: var(--gold); }
.b-section-header__sub {
  font-size: 16px; color: var(--mid);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.b-section--dark .b-section-header__sub { color: rgba(255,255,255,0.55); }

/* Divider line under title */
.b-section-header__line {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 20px;
}
.b-section-header__line::before,
.b-section-header__line::after {
  content: ''; flex: 0 0 48px; height: 1px; background: var(--border);
}
.b-section-header__line span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: block;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.b-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.b-service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.b-service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.b-service-card:hover .b-service-card__img { transform: scale(1.06); }
.b-service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.75) 0%, rgba(26,22,20,0.1) 55%, transparent 100%);
  transition: background .3s;
}
.b-service-card:hover .b-service-card__overlay {
  background: linear-gradient(to top, rgba(26,22,20,0.85) 0%, rgba(26,22,20,0.35) 60%, transparent 100%);
}
.b-service-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(8px);
  transition: transform .3s ease;
}
.b-service-card:hover .b-service-card__body { transform: translateY(0); }
.b-service-card__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 8px; display: block;
}
.b-service-card__title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400;
  color: var(--white); line-height: 1.2;
  margin-bottom: 10px;
}
.b-service-card__text {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 16px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s .05s, transform .3s .05s;
}
.b-service-card:hover .b-service-card__text {
  opacity: 1; transform: translateY(0);
}
.b-service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-light);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s .1s, transform .3s .1s, gap .2s;
}
.b-service-card:hover .b-service-card__link {
  opacity: 1; transform: translateY(0);
}
.b-service-card__link:hover { gap: 10px; color: var(--white); }

/* ============================================
   ABOUT / STORY
   ============================================ */
.b-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b-about__img-wrap {
  position: relative;
}
.b-about__img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius-lg);
}
.b-about__badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.b-about__badge-num {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 400; color: var(--white);
  line-height: 1;
}
.b-about__badge-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
  line-height: 1.2;
}
.b-about__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.b-about__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400; line-height: 1.25;
  color: var(--dark); margin-bottom: 20px;
}
.b-about__title em { font-style: italic; color: var(--gold); }
.b-about__text {
  font-size: 16px; color: var(--mid);
  line-height: 1.8; margin-bottom: 16px;
}
.b-about__certs {
  display: flex; gap: 20px; margin: 28px 0 32px;
  flex-wrap: wrap;
}
.b-about__cert {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--cream-2); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.b-about__cert svg {
  width: 18px; height: 18px; color: var(--gold); flex-shrink: 0;
}
.b-about__cert span {
  font-size: 13px; font-weight: 600; color: var(--dark-2);
}

/* ============================================
   PRICING
   ============================================ */
.b-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.b-price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.b-price-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  position: relative;
}
.b-price-card--featured::before {
  content: 'Beliebt';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 20px;
}
.b-price-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.b-price-card--featured .b-price-card__icon { background: rgba(255,255,255,0.08); }
.b-price-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.b-price-card__name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 8px;
}
.b-price-card--featured .b-price-card__name { color: var(--white); }
.b-price-card__desc {
  font-size: 14px; color: var(--light-text);
  line-height: 1.6; margin-bottom: 24px; flex: 1;
}
.b-price-card--featured .b-price-card__desc { color: rgba(255,255,255,0.55); }
.b-price-card__list {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.b-price-card--featured .b-price-card__list { border-color: rgba(255,255,255,0.12); }
.b-price-card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--mid);
}
.b-price-card--featured .b-price-card__list li { color: rgba(255,255,255,0.7); }
.b-price-card__list li svg {
  width: 16px; height: 16px; color: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}
.b-price-card__cta { margin-top: auto; }

/* ============================================
   PORTFOLIO MASONRY
   ============================================ */
.b-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.b-portfolio-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.b-portfolio-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
}
.b-portfolio-item:nth-child(10) {
  grid-column: span 2;
}
.b-portfolio-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.b-portfolio-item:hover .b-portfolio-item__img { transform: scale(1.07); }
.b-portfolio-item__overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,20,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: background .3s;
}
.b-portfolio-item:hover .b-portfolio-item__overlay {
  background: rgba(26,22,20,0.5);
}
.b-portfolio-item__label {
  color: var(--white); font-family: var(--font-serif);
  font-size: 18px; opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  text-align: center; padding: 0 16px;
}
.b-portfolio-item:hover .b-portfolio-item__label {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   FAQ
   ============================================ */
.b-faq { display: flex; flex-direction: column; gap: 0; }
.b-faq-item {
  border-bottom: 1px solid var(--border);
}
.b-faq-item:first-child { border-top: 1px solid var(--border); }
.b-faq-item__trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; text-align: left;
}
.b-faq-item__question {
  font-size: 16px; font-weight: 600; color: var(--dark);
  line-height: 1.4;
}
.b-faq-item__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.b-faq-item__icon svg {
  width: 14px; height: 14px; color: var(--gold);
  transition: transform .3s;
}
.b-faq-item.open .b-faq-item__icon { background: var(--gold); border-color: var(--gold); }
.b-faq-item.open .b-faq-item__icon svg { color: var(--white); transform: rotate(45deg); }
.b-faq-item__answer {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.b-faq-item.open .b-faq-item__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.b-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.b-contact-info__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; color: var(--dark);
  margin-bottom: 16px;
}
.b-contact-info__sub {
  font-size: 16px; color: var(--mid);
  line-height: 1.7; margin-bottom: 32px;
}
.b-contact-details {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
.b-contact-detail {
  display: flex; align-items: center; gap: 14px;
}
.b-contact-detail__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--cream-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.b-contact-detail__icon svg { width: 17px; height: 17px; color: var(--gold); }
.b-contact-detail__label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--light-text);
  display: block; margin-bottom: 2px;
}
.b-contact-detail__value {
  font-size: 15px; color: var(--dark); font-weight: 500;
}
.b-contact-detail__value a { color: var(--dark); }
.b-contact-detail__value a:hover { color: var(--gold); }

/* Form */
.b-form { display: flex; flex-direction: column; gap: 18px; }
.b-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.b-form-field { display: flex; flex-direction: column; gap: 6px; }
.b-form-field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid);
}
.b-form-field input,
.b-form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 15px;
  color: var(--dark); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.b-form-field input:focus,
.b-form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,150,90,0.12);
}
.b-form-field textarea { resize: vertical; min-height: 130px; }
.b-form__note {
  font-size: 12px; color: var(--light-text); line-height: 1.5;
}
.b-form__note a { color: var(--gold); }

/* ============================================
   INSTAGRAM STRIP
   ============================================ */
.b-insta {
  padding: 64px 0;
  background: var(--dark);
}
.b-insta__header {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.b-insta__title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400; color: var(--white);
}
.b-insta__title span { color: var(--gold); font-style: italic; }
.b-insta__link {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}
.b-insta__link:hover { color: var(--gold-light); }
.b-insta__widget { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   FOOTER
   ============================================ */
.b-footer {
  background: var(--dark-2);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.55);
}
.b-footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.b-footer__brand-logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(0.9);
  margin-bottom: 16px;
}
.b-footer__brand-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.b-footer__social {
  display: flex; gap: 12px;
}
.b-footer__social a {
  width: 36px; height: 36px; 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: border-color .2s, color .2s, background .2s;
}
.b-footer__social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(196,150,90,0.1);
}
.b-footer__social a svg { width: 16px; height: 16px; }

.b-footer__col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.b-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.b-footer__col ul a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.b-footer__col ul a:hover { color: var(--gold); }
.b-footer__col address {
  font-style: normal;
  display: flex; flex-direction: column; gap: 10px;
}
.b-footer__col address a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
}
.b-footer__col address svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.b-footer__col address a:hover { color: var(--gold); }

.b-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 32px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.b-totop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(164,121,61,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  border: none; cursor: pointer;
  text-decoration: none;
}
.b-totop svg { width: 18px; height: 18px; }
.b-totop.visible { opacity: 1; pointer-events: all; }
.b-totop:hover { transform: translateY(-3px); color: var(--white); }

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet landscape: 1024px ──────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  /* Services: 3 Karten → 1 Spalte, Querformat */
  .b-services {
    grid-template-columns: 1fr;
  }
  .b-service-card {
    aspect-ratio: 16/9;
    min-height: 320px;
  }
  /* Hover-Inhalte auf Touch immer sichtbar */
  .b-service-card__text,
  .b-service-card__link {
    opacity: 1;
    transform: none;
  }

  /* About: nebeneinander → untereinander */
  .b-about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .b-about__img-wrap {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .b-about__badge {
    bottom: -16px;
    right: 0;
  }

  /* Pricing: 3 Spalten → 1 Spalte zentriert */
  .b-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  /* Portfolio: 4 Spalten → 2 Spalten */
  .b-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .b-portfolio-item:nth-child(5),
  .b-portfolio-item:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Kontakt: 2-spaltig → 1-spaltig */
  .b-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer: 4 Spalten → 2 Spalten */
  .b-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ── Tablet portrait: 768px ─────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py: 52px;
    --nav-h: 60px;
  }

  /* Navigation */
  .b-nav__links       { display: none; }
  .b-nav__burger      { display: flex; }
  .b-nav__logo img    { height: 44px; }

  /* Hero */
  .b-hero             { min-height: 100svh; }
  .b-hero__title      { font-size: clamp(30px, 9vw, 46px); }
  .b-hero__sub        { font-size: 15px; }
  .b-hero__scroll     { display: none; }   /* kein Platz auf kleinen Screens */

  /* Trust Bar: umbrechende Items */
  .b-trust__inner     { gap: 16px; padding: 0 20px; }
  .b-trust__item      { font-size: 12px; }

  /* Section header */
  .b-section-header   { margin-bottom: 40px; }
  .b-section-header__sub { font-size: 15px; }

  /* Service Cards */
  .b-service-card     { aspect-ratio: 4/3; min-height: 260px; }
  .b-service-card__title { font-size: 22px; }

  /* About */
  .b-about__text-col  { text-align: left; }
  .b-about__certs     { flex-direction: column; }

  /* Portfolio: 2 Spalten mit kürzeren Reihen */
  .b-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  /* Overlay-Label immer zeigen auf Touch */
  .b-portfolio-item__overlay {
    background: rgba(26,22,20,0.3);
  }
  .b-portfolio-item__label {
    opacity: 1;
    transform: none;
    font-size: 13px;
  }

  /* FAQ */
  .b-faq-item__question { font-size: 15px; }

  /* Kontaktformular: Zeile → Spalte */
  .b-form__row        { grid-template-columns: 1fr; }
  .b-form-field input,
  .b-form-field textarea { font-size: 16px; } /* verhindert iOS Auto-Zoom */

  /* Instagram */
  .b-insta            { padding: 48px 0; }
  .b-insta__header    { padding: 0 20px; }
  .b-insta__widget    { padding: 0 20px; }
  .b-insta__title     { font-size: 22px; }

  /* Footer */
  .b-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 36px;
  }
  .b-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 20px;
  }

  /* Container-Padding auf Mobile */
  .b-container,
  .b-container--sm,
  .b-container--xs {
    padding-left: 20px;
    padding-right: 20px;
  }
  .b-nav__inner { padding: 0 20px; }

  /* Back to Top */
  .b-totop { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ── Smartphone: 480px ──────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-py: 44px;
    --nav-h: 56px;
  }

  /* Navigation */
  .b-nav__logo img { height: 38px; }

  /* Hero */
  .b-hero__title   { font-size: clamp(28px, 10vw, 38px); }
  .b-hero__sub     { font-size: 14px; margin-bottom: 28px; }
  .b-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .b-hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }

  /* Trust Bar: 2 Items pro Zeile */
  .b-trust__inner  { gap: 12px 24px; }
  .b-trust__item   { flex: 0 0 calc(50% - 12px); font-size: 11px; }

  /* Service Cards: volles Querformat */
  .b-service-card  { aspect-ratio: 3/2; min-height: 220px; }

  /* About: Badge aus dem Bild herauslösen */
  .b-about__img-wrap { padding-bottom: 0; }
  .b-about__badge {
    position: static;
    width: 100px; height: 100px;
    margin: 20px auto 0;
  }
  .b-about__badge-num  { font-size: 26px; }
  .b-about__badge-label { font-size: 9px; }
  .b-about__title  { font-size: clamp(24px, 7vw, 32px); }

  /* Pricing */
  .b-price-card    { padding: 28px 20px 24px; }

  /* Portfolio: 2 gleich-große Spalten */
  .b-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 2px;
  }

  /* FAQ */
  .b-faq-item__trigger { padding: 18px 0; }
  .b-faq-item__question { font-size: 14px; }

  /* Kontakt */
  .b-contact-info__title { font-size: clamp(22px, 7vw, 30px); }
  .b-form-field input,
  .b-form-field textarea { padding: 12px 14px; }
  .b-form-field textarea { min-height: 110px; }

  /* Buttons generell: volle Breite in engen Containern */
  .b-price-card__cta.btn,
  .b-contact-grid .btn[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .b-footer__brand-text { font-size: 13px; }
  .b-footer__col-title  { font-size: 10px; }
  .b-footer__col ul a,
  .b-footer__col address a { font-size: 13px; }
  .b-footer__bottom { font-size: 12px; }
}

/* ── Sehr klein: 360px ──────────────────────── */
@media (max-width: 360px) {
  .b-hero__title   { font-size: 26px; }
  .b-trust__item   { flex: 0 0 100%; }   /* 1 Item pro Zeile */
  .b-portfolio-grid {
    grid-template-columns: 1fr;          /* 1-spaltig */
    grid-auto-rows: 200px;
  }
  .b-mobile-link   { font-size: 24px; }
}
