/*
Theme Name: RF Trinkies
Theme URI: https://rftrinkies.de
Author: RF Trinkies
Author URI: https://rftrinkies.de
Description: Premium-Theme für RF Trinkies – Gastronomische Dienstleistungen. Einseitiges, elegantes Landingpage-Theme mit warmer Beige-/Gold-Palette.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rftrinkies
*/

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: hsl(36 30% 96%);
  --bg-muted: hsl(36 24% 92%);
  --secondary: hsl(36 22% 90%);
  --fg: hsl(28 20% 15%);
  --fg-muted: hsl(28 12% 38%);
  --border: hsl(36 14% 82%);
  --gold: hsl(38 55% 45%);
  --gold-soft: hsl(38 55% 45% / 0.6);
  --white: #ffffff;
  --destructive: hsl(0 65% 45%);

  --container: 1200px;
  --radius: 0;

  --font-sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.text-gold { color: var(--gold); }
.bg-gold { background: var(--gold); }
.italic { font-style: italic; }
.text-balance { text-wrap: balance; }

.smallcaps {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  font-size: 0.75rem;
}

.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
  border: 0;
}
.gold-rule { height: 1px; background: var(--gold); border: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  font-size: 0.75rem;
}
.section-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-soft);
}

.section-heading {
  max-width: 48rem;
}
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
  text-wrap: balance;
}
.section-heading p {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .section-heading p { font-size: 1.0625rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { height: 3.5rem; padding: 0 2rem; font-size: 1rem; }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { background: hsl(28 20% 25%); }
.btn-light { background: var(--white); color: var(--fg); }
.btn-light:hover { background: hsl(0 0% 92%); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: hsl(0 0% 100% / 0.7);
}
.btn-outline:hover { background: hsl(0 0% 100% / 0.1); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: hsl(38 55% 38%); }

/* Forms */
.field { display: block; }
.field label.smallcaps { color: var(--fg-muted); display: block; margin-bottom: 0.5rem; }
.input, .textarea, .select-wrap select {
  width: 100%;
  height: 3rem;
  padding: 0 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--fg);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.textarea { height: auto; padding: 0.75rem 0.875rem; resize: none; }
.input:focus, .textarea:focus, .select-wrap select:focus {
  outline: none;
  border-color: var(--gold);
}
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.error-text { color: var(--destructive); font-size: 0.75rem; margin-top: 0.375rem; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.4) sepia(0.5) saturate(2) hue-rotate(5deg); cursor: pointer; }

.staff-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-top: 0.75rem; }
@media (min-width: 640px) { .staff-grid { grid-template-columns: 1fr 1fr; } }
.staff-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.staff-option:hover { border-color: var(--gold-soft); }
.staff-option.is-checked { border-color: var(--gold); background: var(--secondary); }
.staff-option input { position: absolute; opacity: 0; pointer-events: none; }
.staff-checkbox {
  width: 1.05rem; height: 1.05rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.staff-option.is-checked .staff-checkbox {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.staff-checkbox svg { width: 0.7rem; height: 0.7rem; opacity: 0; }
.staff-option.is-checked .staff-checkbox svg { opacity: 1; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: hsl(36 30% 96% / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom-color: hsl(36 14% 82% / 0.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  padding: 0.375rem;
  background: hsl(36 30% 96% / 0.95);
  transition: background var(--transition);
}
.site-header.is-scrolled .brand-logo { background: transparent; padding: 0; }
.brand-logo img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.brand-text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 640px) { .brand-text { display: flex; } }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.01em; color: var(--white); transition: color var(--transition); }
.brand-tag { margin-top: 0.25rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500; color: hsl(0 0% 100% / 0.75); transition: color var(--transition); }
.site-header.is-scrolled .brand-name { color: var(--fg); }
.site-header.is-scrolled .brand-tag { color: var(--fg-muted); }

.nav-links { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; color: hsl(0 0% 100% / 0.9); transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.site-header.is-scrolled .nav-links a { color: hsl(28 20% 15% / 0.8); }

.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold); }
.site-header.is-scrolled .nav-phone { color: var(--fg); }
.nav-cta .btn { height: 2.5rem; padding: 0 1.25rem; }
.site-header:not(.is-scrolled) .nav-cta .btn { background: var(--white); color: var(--fg); }
.site-header:not(.is-scrolled) .nav-cta .btn:hover { background: hsl(0 0% 92%); }

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem; margin-right: -0.5rem; color: var(--white); transition: color var(--transition); }
.site-header.is-scrolled .menu-toggle { color: var(--fg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu { display: none; border-top: 1px solid hsl(36 14% 82% / 0.6); background: hsl(36 30% 96% / 0.97); backdrop-filter: blur(12px); }
.mobile-menu.is-open { display: block; }
.mobile-menu-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu-inner a { color: var(--fg); padding: 0.25rem 0; font-size: 1rem; }
.mobile-menu-inner .btn { margin-top: 0.5rem; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  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; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, hsl(0 0% 0% / 0.3), transparent 40%, hsl(36 30% 96% / 0.9)),
    linear-gradient(to right, hsl(0 0% 0% / 0.75), hsl(0 0% 0% / 0.5) 50%, hsl(0 0% 0% / 0.25));
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 11rem 1.5rem 5rem;
}
@media (min-width: 768px) { .hero-content { padding: 13rem 2.5rem 7rem; } }
.hero-eyebrow { color: var(--gold); display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500; font-size: 0.75rem; }
.hero-eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--gold-soft); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw + 1rem, 5.5rem);
  line-height: 0.98;
  color: var(--white);
  margin-top: 1.5rem;
  max-width: 60rem;
  text-wrap: balance;
}
.hero-title .italic-line { font-style: italic; font-weight: 300; color: hsl(0 0% 100% / 0.9); display: block; }
.hero-lede {
  margin-top: 2rem;
  max-width: 38rem;
  color: hsl(0 0% 100% / 0.85);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-lede { font-size: 1.0625rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-meta {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  color: hsl(0 0% 100% / 0.85);
  font-size: 0.875rem;
}
@media (min-width: 768px) { .hero-meta { grid-template-columns: repeat(4, 1fr); } }
.hero-meta-item { display: flex; align-items: center; gap: 0.75rem; }
.hero-meta-item::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section { padding: 6rem 0; }
@media (min-width: 768px) { section { padding: 8rem 0; } }
.bg-secondary { background: hsl(36 22% 90% / 0.4); }
.bg-secondary-strong { background: hsl(36 22% 90% / 0.6); }
.scroll-mt { scroll-margin-top: 6rem; }

/* ============================================================
   AUDIENCES
   ============================================================ */
.audiences-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: hsl(36 14% 82% / 0.7);
  border: 1px solid hsl(36 14% 82% / 0.7);
}
@media (min-width: 768px) { .audiences-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .audiences-grid { grid-template-columns: repeat(6, 1fr); } }
.audience-tile {
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 150px;
  transition: background var(--transition);
}
.audience-tile:hover { background: hsl(36 22% 90% / 0.6); }
.audience-tile svg { width: 1.75rem; height: 1.75rem; color: var(--gold); stroke-width: 1.3; }
.audience-tile span { font-size: 0.95rem; font-weight: 500; color: var(--fg); }

/* ============================================================
   PROBLEM / LÖSUNG
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .problem-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.problem-cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .problem-cards { grid-template-columns: 1fr 1fr; } }
.problem-card { background: var(--bg); border: 1px solid var(--border); padding: 2rem; height: 100%; }
.problem-card.solution { border-color: hsl(38 55% 45% / 0.4); box-shadow: 0 4px 20px hsl(28 20% 15% / 0.05); }
.problem-card h3 { font-family: var(--font-display); font-size: 1.625rem; margin-top: 0.75rem; line-height: 1.2; }
.problem-card ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.problem-card li { display: flex; gap: 0.75rem; font-size: 0.95rem; color: var(--fg-muted); line-height: 1.5; }
.problem-card.solution li { color: var(--fg); }
.problem-card li svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; color: hsl(28 20% 15% / 0.3); }
.problem-card.solution li svg { color: var(--gold); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px hsl(28 20% 15% / 0.08); }
.service-image { position: relative; height: 13rem; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, hsl(28 20% 15% / 0.4), transparent); }
.service-icon {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  width: 2.5rem; height: 2.5rem;
  background: hsl(36 30% 96% / 0.95);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.service-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.service-body { padding: 1.75rem; }
.service-body h3 { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; }
.service-body .gold-divider { width: 3rem; margin: 1rem 0; }
.service-body ul { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }
.service-body li { font-size: 0.875rem; color: var(--fg-muted); display: flex; align-items: center; gap: 0.75rem; }
.service-body li::before { content: ""; width: 0.75rem; height: 1px; background: var(--gold); }

.service-callout {
  background: hsl(36 22% 90% / 0.4);
  border: 1px solid hsl(38 55% 45% / 0.4);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  height: 100%;
}
.service-callout h3 { font-family: var(--font-display); font-size: 1.7rem; margin-top: 1rem; line-height: 1.15; }
.service-callout p { color: var(--fg-muted); margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; }
.service-callout .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   WHY US
   ============================================================ */
.whyus-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: hsl(36 14% 82% / 0.7);
  border: 1px solid hsl(36 14% 82% / 0.7);
}
@media (min-width: 768px) { .whyus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(3, 1fr); } }
.whyus-card { background: var(--bg); padding: 2rem; }
@media (min-width: 768px) { .whyus-card { padding: 2.5rem; } }
.whyus-num { font-family: var(--font-display); font-size: 3rem; color: hsl(38 55% 45% / 0.4); line-height: 1; }
.whyus-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 1rem; line-height: 1.25; }
.whyus-card p { margin-top: 1rem; color: var(--fg-muted); line-height: 1.65; font-size: 0.95rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg);
  height: 100%;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .tier { padding: 2.5rem; } }
.tier.featured { background: var(--fg); color: var(--bg); border-color: var(--gold); }
.tier-badge {
  position: absolute;
  top: -0.75rem; left: 2rem;
  background: var(--gold); color: var(--white);
  padding: 0.25rem 0.75rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem; font-weight: 500;
}
.tier h3 { font-family: var(--font-display); font-size: 1.625rem; }
.tier.featured h3 { color: var(--bg); }
.tier-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 1.5rem; }
.tier-price .label-ab { color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.75rem; font-weight: 500; }
.tier.featured .tier-price .label-ab { color: hsl(36 30% 96% / 0.7); }
.tier-amount { font-family: var(--font-display); font-size: 3.75rem; line-height: 1; color: var(--fg); }
.tier.featured .tier-amount { color: var(--gold); }
.tier-unit { font-size: 0.875rem; color: var(--fg-muted); }
.tier.featured .tier-unit { color: hsl(36 30% 96% / 0.8); }
.tier-rule { height: 1px; background: var(--border); margin: 1.5rem 0; border: 0; }
.tier.featured .tier-rule { background: hsl(36 30% 96% / 0.3); }
.tier-desc { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.6; }
.tier.featured .tier-desc { color: hsl(36 30% 96% / 0.85); }
.tier ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tier li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; }
.tier.featured li { color: hsl(36 30% 96% / 0.95); }
.tier li svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; stroke-width: 2.5; }

.surcharges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) { .surcharges { grid-template-columns: repeat(3, 1fr); } }
.surcharge { border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 1.25rem; }
.surcharge .smallcaps { color: var(--gold); }
.surcharge-body { margin-top: 0.5rem; color: var(--fg); }
.surcharge-body .muted { color: var(--fg-muted); display: block; margin-top: 0.25rem; }

/* ============================================================
   REFERENCES
   ============================================================ */
.clients-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: hsl(36 14% 82% / 0.6);
  border: 1px solid hsl(36 14% 82% / 0.6);
}
@media (min-width: 768px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .clients-grid { grid-template-columns: repeat(6, 1fr); } }
.client {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 110px;
}
.client-name { font-family: var(--font-display); font-size: 1.125rem; color: hsl(28 20% 15% / 0.85); }
.client .gold-divider { width: 2rem; margin: 0.75rem auto 0; }
.clients-note { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.75rem; text-align: center; font-style: italic; }

.testimonials {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  height: 100%;
  display: flex; flex-direction: column;
}
.testimonial svg.quote-icon { width: 1.75rem; height: 1.75rem; color: var(--gold); }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.3; margin-top: 1.25rem; font-style: italic; color: var(--fg); }
.testimonial-meta { margin-top: auto; padding-top: 1.5rem; }
.testimonial-meta .gold-rule { width: 2rem; }
.testimonial-author { margin-top: 1rem; font-size: 0.875rem; font-weight: 500; }
.testimonial-context { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-muted); margin-top: 0.25rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-image { position: relative; }
.about-image::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border: 1px solid hsl(38 55% 45% / 0.4);
  z-index: -1;
}
.about-image img { width: 100%; height: 32.5rem; object-fit: cover; }
.about-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  line-height: 1.05;
  margin-top: 1.25rem;
  text-wrap: balance;
}
.about-content .gold-divider { width: 4rem; margin-top: 2rem; }
.about-text { margin-top: 2rem; max-width: 36rem; display: flex; flex-direction: column; gap: 1.25rem; color: hsl(28 20% 15% / 0.9); line-height: 1.7; font-size: 1.02rem; }
.about-text .pull-quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.35; color: hsl(28 20% 15% / 0.8); }
.about-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid hsl(36 14% 82% / 0.6);
  background: hsl(36 14% 82% / 0.6);
  max-width: 36rem;
}
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(3, 1fr); } }
.about-stat { background: var(--bg); padding: 1rem 1.25rem; }
.about-stat .smallcaps { color: var(--gold); }
.about-stat .v { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.375rem; }

/* ============================================================
   ANFRAGE / FORM
   ============================================================ */
.anfrage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .anfrage-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.anfrage-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  line-height: 1.05;
  margin-top: 1.25rem;
  text-wrap: balance;
}
.anfrage-intro p { margin-top: 1.5rem; color: var(--fg-muted); line-height: 1.7; }
.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 2.75rem; height: 2.75rem;
  border: 1px solid hsl(38 55% 45% / 0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.contact-item a:hover .contact-icon { background: var(--gold); color: var(--white); }
.contact-icon svg { width: 1rem; height: 1rem; }
.contact-text .smallcaps { color: var(--fg-muted); display: block; }
.contact-text .v { font-weight: 500; color: var(--fg); display: block; margin-top: 0.125rem; }

.recommendation { margin-top: 2.5rem; display: none; }
@media (min-width: 1024px) { .recommendation { display: block; } }
.recommendation-mobile { display: block; margin-top: 1rem; }
@media (min-width: 1024px) { .recommendation-mobile { display: none; } }

.rec-card {
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
}
.rec-card.empty {
  background: var(--bg);
  border: 1px dashed var(--border);
}
.rec-card.full {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
}
.rec-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.75rem; line-height: 1.25; }
.rec-card p { font-size: 0.875rem; color: var(--fg-muted); margin-top: 1rem; line-height: 1.6; }
.rec-card.full p { color: hsl(36 30% 96% / 0.85); }
.rec-card.empty .gold-divider { width: 3rem; margin-top: 1.5rem; }
.rec-note { font-size: 0.75rem; font-style: italic; margin-top: 1rem; }
.rec-card.empty .rec-note { color: var(--fg-muted); }
.rec-card.full .rec-note { color: hsl(36 30% 96% / 0.6); margin-top: 1.5rem; }

.rec-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.rec-total { text-align: right; }
.rec-total-num { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.rec-total-label { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.7rem; color: hsl(36 30% 96% / 0.7); margin-top: 0.25rem; }
.rec-breakdown { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rec-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; padding-bottom: 0.5rem; border-bottom: 1px solid hsl(36 30% 96% / 0.15); }
.rec-row span:first-child { color: hsl(36 30% 96% / 0.85); }
.rec-row span:last-child { font-weight: 500; }
.rec-price-block { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid hsl(36 30% 96% / 0.2); }
.rec-price-label { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.7rem; color: hsl(36 30% 96% / 0.7); }
.rec-price { font-family: var(--font-display); font-size: 1.875rem; margin-top: 0.5rem; color: var(--gold); }
.rec-price-meta { font-size: 0.75rem; color: hsl(36 30% 96% / 0.7); margin-top: 0.375rem; }
.rec-surcharge {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(38 55% 45% / 0.15);
  border: 1px solid hsl(38 55% 45% / 0.4);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: var(--gold);
}

.anfrage-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .anfrage-form { padding: 2.5rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-footer { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
@media (min-width: 640px) { .form-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.form-disclaimer { font-size: 0.75rem; color: var(--fg-muted); max-width: 28rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: hsl(28 20% 15% / 0.8); }
.cta-inner { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .cta-inner { padding: 0 2.5rem; } }
.cta-band .section-label { color: var(--gold); }
.cta-band .section-label::before { background: var(--gold-soft); }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  color: var(--bg);
  margin-top: 1.5rem;
  line-height: 1.05;
  text-wrap: balance;
}
.cta-band p { color: hsl(36 30% 96% / 0.85); margin-top: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 56rem; margin: 0 auto; }
.faq { margin-top: 3rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.375rem;
  padding: 1.5rem 2.5rem 1.5rem 0;
  position: relative;
  transition: color var(--transition);
}
@media (min-width: 768px) { .faq-trigger { font-size: 1.5rem; } }
.faq-trigger:hover { color: var(--gold); }
.faq-trigger::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1rem; height: 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-trigger::after { transform: translateY(-50%) rotate(180deg); }
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item.is-open .faq-content { grid-template-rows: 1fr; }
.faq-content-inner { overflow: hidden; }
.faq-content-inner p { padding: 0 0 1.5rem; color: var(--fg-muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 3fr 2fr 2fr; } }
.footer-brand .brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .brand-logo { background: hsl(36 30% 96% / 0.95); padding: 0.5rem; }
.footer-brand .brand-logo img { width: 3rem; height: 3rem; }
.footer-brand .brand-name { color: var(--bg); font-size: 1.5rem; }
.footer-brand .brand-tag { color: hsl(36 30% 96% / 0.6); }
.footer-brand p { color: hsl(36 30% 96% / 0.75); font-size: 0.875rem; line-height: 1.7; max-width: 22rem; margin-top: 1.5rem; }
.footer-brand .gold-divider { width: 4rem; margin-top: 2rem; }

.footer-col .smallcaps { color: var(--gold); display: block; }
.footer-col ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: hsl(36 30% 96% / 0.85); }
.footer-col li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-col li svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.footer-col a { color: inherit; }
.footer-col a:hover { color: var(--gold); }
.footer-col button { font-size: 0.875rem; color: hsl(36 30% 96% / 0.85); text-align: left; }
.footer-col button:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(36 30% 96% / 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(36 30% 96% / 0.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links button:hover { color: var(--gold); }

/* ============================================================
   MODAL (Impressum / Datenschutz)
   ============================================================ */
.modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: hsl(28 20% 15% / 0.6);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  background: var(--bg);
  max-width: 42rem;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  z-index: 1;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
}
.modal-close:hover { color: var(--fg); }
.modal-content h2 { font-family: var(--font-display); font-size: 1.875rem; }
.modal-content > p { color: var(--fg-muted); margin-top: 0.5rem; font-size: 0.875rem; }
.modal-section { margin-top: 1.5rem; font-size: 0.875rem; line-height: 1.7; color: hsl(28 20% 15% / 0.9); }
.modal-section .smallcaps { color: var(--gold); display: block; margin-bottom: 0.5rem; }
.modal-section p { margin-top: 0.5rem; }
.modal-section p:first-of-type { margin-top: 0; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  background: var(--fg);
  color: var(--bg);
  padding: 1rem 1.25rem;
  border: 1px solid var(--gold);
  max-width: 22rem;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast-title { font-family: var(--font-display); font-size: 1.125rem; }
.toast-msg { font-size: 0.875rem; color: hsl(36 30% 96% / 0.8); margin-top: 0.25rem; }

/* ============================================================
   FLEX HELPERS
   ============================================================ */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.no-scroll { overflow: hidden; }
