/* ============================================================================
   BRIOSA — Section styles (Source of Truth for the look)
   Clean port of the reference one-pager styles, extended with design-token
   custom-properties so Elementor widgets can override bg/padding per section
   without breaking the brand. Unset tokens fall back to the original values.
   ========================================================================== */

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

:root {
  /* Colors */
  --petrol: #1C3A42;
  --petrol-deep: #152E34;
  --cream: #F2EDE4;
  --warm: #E8E0D4;
  --gold: #B49A6A;
  --gold-light: #C8AE7E;
  --mid: #7A756D;

  /* Fonts */
  --grotesk: 'Space Grotesk', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  /* Spacing scale (token-locked) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  /* Font-size scale (token-locked) */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 4rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--grotesk);
  color: var(--petrol);
  background: var(--cream);
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--cream); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(21, 46, 52, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(180,154,106,0.15);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: block; text-decoration: none; flex-shrink: 0; }
.logo img {
  height: 90px; width: auto; display: block;
  filter: brightness(0) invert(1); transition: filter 0.4s;
}
nav.scrolled .logo img { filter: none; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(242,237,228,0.9); font-size: 14px;
  font-weight: 400; letter-spacing: 1px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--gold); font-size: 14px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.5px; border: 1px solid rgba(180,154,106,0.4); padding: 10px 24px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--petrol); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 200;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--gold);
  position: absolute; left: 0; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: var(--petrol-deep); flex-direction: column;
  justify-content: center; align-items: center; gap: 36px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 22px; color: var(--cream); text-decoration: none;
  font-weight: 300; letter-spacing: 2px; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-img { position: absolute; inset: 0; z-index: 0; }
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,46,52,0.92) 0%, rgba(21,46,52,0.5) 40%, rgba(21,46,52,0.55) 70%, rgba(21,46,52,0.7) 100%);
}
.hero-inner {
  position: relative; z-index: 2; padding: 0 40px 72px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero h1 {
  font-family: var(--grotesk); font-weight: 300;
  font-size: clamp(32px, 4.8vw, 72px); line-height: 1.1;
  color: var(--cream); letter-spacing: -2px; margin-bottom: 48px;
}
.hero h1 .serif-word {
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0px;
}
.hero h1 .gold { color: var(--gold); }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 32px; border-top: 1px solid rgba(242,237,228,0.15);
}
.hero-bottom p {
  font-size: 15px; color: rgba(242,237,228,0.75); max-width: 520px; line-height: 1.75;
}
.hero-cta {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  color: var(--cream); font-size: 14px; font-weight: 500; letter-spacing: 1px;
  flex-shrink: 0;
}
.hero-cta-circle {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(242,237,228,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all 0.3s;
}
.hero-cta:hover .hero-cta-circle { background: var(--gold); border-color: var(--gold); }

/* ── MARQUEE ───────────────────────────────────────────────────────────── */
.marquee {
  padding: 28px 0; overflow: hidden;
  background: var(--section-bg, var(--cream));
  border-bottom: 1px solid rgba(28,58,66,0.08);
}
.marquee-track {
  display: flex; animation: marquee-scroll 30s linear infinite; width: max-content;
}
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mid); white-space: nowrap;
  padding: 0 32px; display: flex; align-items: center; gap: 32px;
}
.marquee-item::after {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── INTRO ─────────────────────────────────────────────────────────────── */
.intro {
  background: var(--section-bg, transparent);
  padding-top: var(--section-pad-top, 140px);
  padding-bottom: var(--section-pad-bottom, 140px);
  padding-left: 40px; padding-right: 40px;
  max-width: 1400px; margin: 0 auto;
}
.intro-layout {
  display: grid; grid-template-columns: 1fr 520px; gap: 120px; align-items: start;
}
.intro-left h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.2; margin-bottom: 40px;
}
.intro-left p {
  font-size: 16px; line-height: 1.85; color: var(--mid); max-width: 480px;
}
.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(28,58,66,0.1);
}
.intro-stat { padding: 40px 32px; border-bottom: 1px solid rgba(28,58,66,0.1); }
.intro-stat:nth-child(odd) { border-right: 1px solid rgba(28,58,66,0.1); }
.intro-stat:nth-last-child(-n+2) { border-bottom: none; }
.intro-stat h3 {
  font-family: var(--grotesk); font-size: 48px; font-weight: 300;
  color: var(--gold); letter-spacing: -2px; margin-bottom: 8px;
}
.intro-stat p { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ── BENEFIT TILES ─────────────────────────────────────────────────────── */
.benefits {
  background: var(--section-bg, transparent);
  padding-top: var(--section-pad-top, 0);
  padding-bottom: var(--section-pad-bottom, 120px);
  padding-left: 40px; padding-right: 40px;
  max-width: 1400px; margin: 0 auto;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(28,58,66,0.1);
}
.benefit-tile { background: var(--cream); padding: 40px 36px; }
.benefit-tile h3 {
  font-size: 16px; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.benefit-tile h3::before {
  content: ''; width: 8px; height: 2px; background: var(--gold); flex-shrink: 0;
}
.benefit-tile p { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ── IMAGE BAND ────────────────────────────────────────────────────────── */
.img-band {
  display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 0;
  height: 420px; overflow: hidden;
}
.img-band > div { position: relative; overflow: hidden; }
.img-band .overlay-text {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: white; font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; z-index: 2;
}
.img-band > div::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,46,52,0.6) 0%, transparent 50%);
}

/* ── SERVICES (Accordion) ──────────────────────────────────────────────── */
.services {
  background: var(--section-bg, var(--petrol)); color: var(--cream);
  padding-top: var(--section-pad-top, 120px);
  padding-bottom: var(--section-pad-bottom, 120px);
}
.services-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.services-top {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px;
}
.services-top h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.2; max-width: 520px;
}
.services-top p { font-size: 14px; color: rgba(242,237,228,0.65); max-width: 360px; line-height: 1.7; }
.svc-list { list-style: none; }
.svc-item { border-top: 1px solid rgba(242,237,228,0.1); }
.svc-item:last-child { border-bottom: 1px solid rgba(242,237,228,0.1); }
.svc-toggle {
  width: 100%; background: none; border: none; color: inherit;
  padding: 28px 0; display: flex; align-items: center; gap: 24px;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: opacity 0.2s;
}
.svc-toggle:hover { opacity: 0.8; }
.svc-num {
  font-size: 14px; color: rgba(242,237,228,0.4); min-width: 32px; font-weight: 600;
}
/* min-width:0 lets the flex item shrink; white-space:normal overrides the
   button's inherited nowrap so long service titles wrap on narrow screens. */
.svc-toggle h3 { font-size: 20px; font-weight: 500; flex: 1; min-width: 0; white-space: normal; overflow-wrap: break-word; word-break: break-word; }
.svc-arrow {
  font-size: 24px; color: var(--gold); transition: transform 0.3s; font-weight: 300;
}
.svc-item.open .svc-arrow { transform: rotate(45deg); }
.svc-detail { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.svc-item.open .svc-detail { max-height: 800px; }
.svc-detail-inner {
  padding: 0 0 36px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
}
.svc-detail-inner p {
  font-size: 15px; line-height: 1.8; color: rgba(242,237,228,0.8);
}
.svc-detail-inner ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.svc-detail-inner li {
  font-size: 13px; color: rgba(242,237,228,0.7); padding-left: 16px;
  position: relative; line-height: 1.5;
}
.svc-detail-inner li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}

/* ── SPLIT (image left) ────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-img { position: relative; overflow: hidden; }
.split-content {
  background: var(--section-bg, var(--petrol)); color: var(--cream);
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.split-content .label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.split-content h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  line-height: 1.25; margin-bottom: 28px;
}
.split-content p {
  font-size: 15px; line-height: 1.8; color: rgba(242,237,228,0.8); max-width: 480px;
}
.split-content p + p { margin-top: 16px; }

/* ── SPLIT REVERSED (Gold, image right) ────────────────────────────────── */
.split-rev { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-rev-gold {
  background: var(--section-bg, var(--gold)); color: var(--petrol-deep);
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.split-rev-gold .label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.5; margin-bottom: 24px;
}
.split-rev-gold h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  line-height: 1.25; margin-bottom: 28px;
}
.split-rev-gold p { font-size: 16px; line-height: 1.85; max-width: 460px; }
.split-rev-gold p + p { margin-top: 16px; }
.split-rev-img { position: relative; overflow: hidden; }

/* ── PHILOSOPHY ────────────────────────────────────────────────────────── */
.philosophy {
  background: var(--section-bg, transparent);
  padding-top: var(--section-pad-top, 140px);
  padding-bottom: var(--section-pad-bottom, 140px);
  padding-left: 40px; padding-right: 40px;
  max-width: 1400px; margin: 0 auto;
}
.philosophy-top {
  display: grid; grid-template-columns: 200px 1fr; gap: 80px; margin-bottom: 80px;
}
.philosophy-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mid); padding-top: 16px;
}
.philosophy-top blockquote {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 400; line-height: 1.35; font-style: italic;
  max-width: 720px; position: relative; padding-left: 32px;
  border-left: 3px solid var(--gold);
}
.phil-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(28,58,66,0.12);
  border-bottom: 1px solid rgba(28,58,66,0.12);
}
.phil-item { padding: 36px 28px; border-right: 1px solid rgba(28,58,66,0.12); }
.phil-item:last-child { border-right: none; }
.phil-item h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.phil-item h4::before { content: ''; width: 8px; height: 2px; background: var(--gold); }
.phil-item p { font-size: 13px; line-height: 1.65; color: var(--mid); }

/* ── FULL IMAGE BREAK ──────────────────────────────────────────────────── */
.img-break { height: 500px; position: relative; overflow: hidden; }
.img-break::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,46,52,0.75) 0%, rgba(21,46,52,0.15) 60%);
}
.img-break-text {
  position: absolute; bottom: 48px; left: 48px; z-index: 2;
  color: var(--cream); max-width: 620px;
}
.img-break-text .label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: block;
}
.img-break-text h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); font-weight: 400;
  line-height: 1.3; margin-bottom: 16px;
}
.img-break-text p { font-size: 14px; color: rgba(242,237,228,0.85); line-height: 1.75; }

/* ── TEAM ──────────────────────────────────────────────────────────────── */
.team {
  background: var(--section-bg, var(--warm));
  padding-top: var(--section-pad-top, 120px);
  padding-bottom: var(--section-pad-bottom, 120px);
  padding-left: 40px; padding-right: 40px;
}
.team-inner { max-width: 1400px; margin: 0 auto; }
.team-top { margin-bottom: 64px; }
.team-top h2 { font-family: var(--serif); font-size: 48px; font-weight: 400; margin-bottom: 20px; }
.team-top p { font-size: 15px; color: var(--mid); max-width: none; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.team-member { display: flex; gap: 32px; }
.team-img {
  width: 220px; height: 300px; flex-shrink: 0; position: relative; overflow: hidden;
  background: var(--petrol);
}
/* Team-Fotos immer farbig (kein Graustufen-Hover). */
.team-meta { padding-top: 8px; }
.team-meta h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.team-meta .role {
  font-size: 13px; color: var(--gold); font-weight: 500;
  display: block; margin-bottom: 20px;
}
.team-meta p { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* Team-Kachel (ohne Foto): schlichte Petrol-Karte. */
.team-member--tile {
  flex-direction: column; gap: 0;
  background: var(--petrol); color: var(--cream);
  padding: 40px;
}
.team-member--tile .team-meta { padding-top: 0; }
.team-member--tile .team-meta p { color: rgba(242,237,228,0.72); }

/* ── CTA ───────────────────────────────────────────────────────────────── */
.cta-full {
  background: var(--section-bg, var(--petrol)); color: var(--cream);
  padding-top: var(--section-pad-top, 120px);
  padding-bottom: var(--section-pad-bottom, 120px);
  padding-left: 40px; padding-right: 40px;
  text-align: center;
}
.cta-full h2 {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 68px);
  font-weight: 400; line-height: 1.15; margin-bottom: 20px;
}
.cta-full h2 .gold { color: var(--gold); }
.cta-full > p {
  font-size: 16px; color: rgba(242,237,228,0.65); margin-bottom: 40px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--cream); text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(242,237,228,0.2); padding: 18px 40px;
  transition: all 0.3s;
}
.cta-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--petrol); }

/* ── CONTACT ───────────────────────────────────────────────────────────── */
.contact {
  background: var(--section-bg, transparent);
  padding-top: var(--section-pad-top, 100px);
  padding-bottom: var(--section-pad-bottom, 100px);
  padding-left: 40px; padding-right: 40px;
  max-width: 1400px; margin: 0 auto;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; }
.contact h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 24px; }
.contact-left p { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 48px; }
.contact-line {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid rgba(28,58,66,0.08); font-size: 15px;
}
.contact-line span {
  color: var(--mid); min-width: 64px; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase; padding-top: 2px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; padding-top: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 0; background: none;
  border: none; border-bottom: 1px solid rgba(28,58,66,0.15);
  font-size: 15px; font-family: inherit; color: var(--petrol); transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--mid); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
/* Honeypot — visually hidden, must stay empty */
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; line-height: 1.6; color: var(--mid); cursor: pointer;
}
.contact-consent input {
  width: auto; padding: 0; border: none; margin-top: 3px;
  accent-color: var(--gold); cursor: pointer;
}
.contact-consent a { color: var(--petrol); text-decoration: underline; }
.contact-consent a:hover { color: var(--gold); }
.contact-submit {
  align-self: flex-start; padding: 16px 40px;
  background: var(--petrol); color: var(--cream); border: none;
  font-size: 13px; font-weight: 600; font-family: inherit;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.contact-submit:hover { background: var(--gold); }
.contact-success {
  padding: 24px 28px; background: var(--gold); color: var(--petrol-deep);
  font-size: 15px; font-weight: 500; margin-bottom: 24px;
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: var(--petrol-deep); color: rgba(242,237,228,0.3);
  padding: 40px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.5px;
}
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-logo { height: 40px; width: auto; border-radius: 4px; opacity: 0.5; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(242,237,228,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── ELEMENTOR EDITOR SAFETY ───────────────────────────────────────────── */
/* Our widgets render full-bleed sections; neutralise Elementor's wrappers. */
.elementor-widget-container { line-height: normal; }
body .elementor-widget-briosa-hero,
body .elementor-widget-briosa-marquee,
body .elementor-widget-briosa-intro,
body .elementor-widget-briosa-benefits,
body .elementor-widget-briosa-image-band,
body .elementor-widget-briosa-services,
body .elementor-widget-briosa-split,
body .elementor-widget-briosa-split-reverse,
body .elementor-widget-briosa-philosophy,
body .elementor-widget-briosa-image-break,
body .elementor-widget-briosa-team,
body .elementor-widget-briosa-cta-full,
body .elementor-widget-briosa-contact { width: 100%; }

/* Elementor's base CSS forces img{height:auto}; restore object-fit:cover for our
   full-bleed media so images fill their fixed-height containers as in the design. */
.hero-img img,
.img-band img,
.img-break img,
.split-img img,
.split-rev-img img,
.team-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-detail-inner { grid-template-columns: 1fr; }
  .phil-grid { grid-template-columns: 1fr 1fr; }
  .phil-item:nth-child(2) { border-right: none; }
  .intro-layout { grid-template-columns: 1fr; gap: 64px; }
  .split, .split-rev { grid-template-columns: 1fr; }
  .split-img, .split-rev-img { height: 400px; }
  .split-rev-img { order: -1; }
  .img-band { grid-template-columns: 1fr; height: auto; }
  .img-band > div { height: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }
  /* 2-col team members need ~390px each; collapse to 1 col on tablet so the
     220px (non-shrinking) photo + meta never overflow the tablet band. */
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }
  .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-inner { padding: 0 24px 48px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
  .services-top { flex-direction: column; gap: 24px; }
  .svc-detail-inner { padding-left: 0; }
  .philosophy-top { grid-template-columns: 1fr; gap: 24px; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-item { border-right: none !important; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member { flex-direction: column; }
  .team-img { width: 100%; height: 300px; }
  .team-member--tile { padding: 32px 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 64px; }
  .split-content, .split-rev-gold { padding: 56px 24px; }
  .intro, .philosophy, .contact { padding-left: 24px; padding-right: 24px; }
  .benefits { padding-left: 24px; padding-right: 24px; }
  .intro-stats { grid-template-columns: 1fr; }
  .intro-stat:nth-child(odd) { border-right: none; }
  .img-break { height: 360px; }
  .img-break-text { left: 24px; bottom: 24px; right: 24px; }
  .img-break-text h2 { font-size: 24px; }
  /* Smaller logo on phones */
  .logo img { height: 56px; }
  .legal { padding-top: 116px; padding-bottom: 64px; }
  .cookie-banner { padding: 16px 24px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── INNER (non-front) PAGES ───────────────────────────────────────────── */
/* No dark hero behind the fixed nav, so keep it solid + logo legible. */
body.page:not(.home) nav,
body.page:not(.home) nav.scrolled {
  background: rgba(21, 46, 52, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(180, 154, 106, 0.15);
}
body.page:not(.home) nav .logo img,
body.page:not(.home) nav.scrolled .logo img { filter: brightness(0) invert(1); }

/* ── LEGAL / CONTENT PAGES ─────────────────────────────────────────────── */
.legal { padding: 150px 40px 100px; background: var(--cream); }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-inner h1 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.2; color: var(--petrol); margin-bottom: 32px;
}
.legal-inner h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: var(--petrol); margin: 44px 0 14px;
}
.legal-inner h3 { font-size: 16px; font-weight: 600; color: var(--petrol); margin: 24px 0 8px; }
.legal-inner p { font-size: 16px; line-height: 1.85; color: var(--mid); margin-bottom: 16px; }
.legal-inner ul { margin: 0 0 16px 22px; color: var(--mid); line-height: 1.85; font-size: 16px; }
.legal-inner li { margin-bottom: 6px; }
.legal-inner a { color: var(--gold); }
.legal-inner strong { color: var(--petrol); font-weight: 600; }
.legal-note {
  background: var(--warm); border-left: 3px solid var(--gold);
  padding: 16px 20px; font-size: 14px; color: var(--petrol); margin-bottom: 40px;
}

/* ── COOKIE BANNER ─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  background: rgba(21, 46, 52, 0.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(180, 154, 106, 0.3);
  padding: 20px 40px; color: rgba(242, 237, 228, 0.85);
}
.cookie-banner.is-visible { display: flex; }
.cookie-text { font-size: 13px; line-height: 1.6; max-width: 720px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--grotesk); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 12px 24px;
  cursor: pointer; border: 1px solid rgba(242, 237, 228, 0.3);
  background: none; color: var(--cream); transition: all 0.2s;
}
.cookie-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.cookie-btn--gold { background: var(--gold); border-color: var(--gold); color: var(--petrol-deep); }
.cookie-btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── HELLO-RESET NEUTRALISIEREN ────────────────────────────────────────────
   hello-elementor reset.css setzt button:hover/:focus flächig auf Pink (#c36)
   mit weißer Schrift. Für alle Theme-Buttons zurücksetzen — die gewollten
   Hover-Zustände sind bei den jeweiligen Komponenten definiert. */
.svc-toggle:hover, .svc-toggle:focus { background: none; color: inherit; }
.hamburger:hover, .hamburger:focus,
.cookie-btn--ghost:hover, .cookie-btn--ghost:focus { background: none; }
.contact-submit:hover, .contact-submit:focus { background: var(--gold); color: var(--cream); }
