:root {
/* Colors */
--bg: var(--color-offwhite);
--bg-soft: var(--color-soft);
--surface: #e9e3d7;
--surface-2: #dfd7ca;

--color-navy: #141827;
--color-dark-section-gradient: linear-gradient(
180deg,
#101624 0%,
#141d31 42%,
#1b2638 72%,
#25313a 100%
);
--color-offwhite: #f7f4ec;
--color-soft: #f3f1ec;

--green-950: #111827;
--green-900: #141f36;
--green-850: #1b2a47;
--green-800: #24365c;
--green-700: #314974;
--green-500: #5e7094;

--text: #161616;
--text-soft: #505050;
--white-soft: #f8f6f0;

--orange: #d76c2f;
--orange-dark: #b95b27;

--border: rgba(22, 22, 22, 0.08);
--border-strong: rgba(22, 22, 22, 0.18);

/* Radius */
--radius-xl: 2.125rem;
--radius-lg: 1.625rem;
--radius-md: 1.125rem;
--radius-pill: 999rem;

/* Layout */
--page-pad-x: clamp(1.125rem, 1rem + 1.8vw, 2.625rem);
--container: 82.5rem;
--header-height: 7.4rem;

/* Fluid spacing */
--space-1: clamp(0.5rem, 0.45rem + 0.15vw, 0.75rem);
--space-2: clamp(0.75rem, 0.65rem + 0.25vw, 1.125rem);
--space-3: clamp(1rem, 0.85rem + 0.45vw, 1.75rem);
--space-4: clamp(1.5rem, 1.15rem + 0.9vw, 2.75rem);
--space-5: clamp(2.25rem, 1.7rem + 1.8vw, 5rem);
--space-6: clamp(3.5rem, 2.2rem + 3vw, 7.5rem);

/* Fluid type */
--text-xs: clamp(0.78rem, 0.75rem + 0.08vw, 0.86rem);
--text-sm: clamp(0.95rem, 0.92rem + 0.15vw, 1.03rem);
--text-md: clamp(1.02rem, 0.96rem + 0.25vw, 1.18rem);
--text-lg: clamp(1.35rem, 1.05rem + 0.9vw, 2rem);
--text-xl: clamp(2rem, 1.1rem + 2.7vw, 4.2rem);
--hero-xl: clamp(3.4rem, 1.8rem + 5.4vw, 8.4rem);
}

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

html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}

body {
margin: 0;
min-width: 20rem;
font-family: "Inter", sans-serif;
font-size: var(--text-sm);
color: var(--text);
background: var(--bg);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}

body.modal-open {
overflow: visible;
}

img,
picture,
svg,
canvas,
video {
display: block;
max-width: 100%;
height: auto;
}

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

button,
input,
textarea,
select {
font: inherit;
}

button {
cursor: pointer;
}

.container {
width: min(100% - (2 * var(--page-pad-x)), var(--container));
margin-inline: auto;
}

/* Header */

.site-header {
position: sticky;
top: 0;
z-index: 1000;
min-height: var(--header-height);
background: rgba(247, 244, 236, 0.94);
backdrop-filter: blur(0.625rem);
-webkit-backdrop-filter: blur(0.625rem);
border-bottom: 1px solid rgba(20, 24, 39, 0.12);
}

.header-inner {
width: 100%;
min-height: var(--header-height);
padding-inline: var(--page-pad-x);
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-3);
}

.brand {
display: inline-flex;
align-items: center;
line-height: 0;
color: var(--color-navy);
white-space: nowrap;
min-width: 0;
max-width: min(78vw, 19rem);
flex: 1 1 auto;
}

.brand-logo {
height: clamp(2.8rem, 2.25rem + 1.9vw, 4rem);
width: auto;
max-width: 100%;
display: block;
object-fit: contain;
}

.desktop-nav {
display: none;
align-items: center;
gap: clamp(1.5rem, 1rem + 1.8vw, 2.875rem);
}

.desktop-nav a {
color: rgba(20, 24, 39, 0.86);
font-size: var(--text-sm);
letter-spacing: 0.01em;
transition: opacity 0.2s ease;
}

.desktop-nav a:hover {
opacity: 0.72;
}

.header-cta,
.header-cta-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 2.75rem;
padding-inline: 1.125rem;
border: none;
border-radius: var(--radius-pill);
background: var(--orange);
color: #fff !important;
font-weight: 600;
font-size: 0.94rem;
transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.header-cta-link:hover {
transform: translateY(-1px);
background: var(--orange-dark);
}

.menu-toggle {
width: 3rem;
height: 3rem;
border: none;
background: none;
display: inline-flex;
flex-direction: column;
justify-content: center;
gap: 0.3125rem;
padding: 0;
flex: 0 0 auto;
margin-left: auto;
position: relative;
z-index: 4;
}

.menu-toggle span {
display: block;
width: 1.625rem;
height: 0.125rem;
margin-left: auto;
border-radius: 999rem;
background: var(--color-navy);
}

.mobile-menu {
display: none;
background: var(--color-offwhite);
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
display: block;
}

.mobile-nav {
width: min(100% - (2 * var(--page-pad-x)), var(--container));
margin-inline: auto;
padding: 0.625rem 0 1.375rem;
display: grid;
gap: 0.25rem;
}

.mobile-nav a,
.mobile-contact-btn,
.mobile-contact-link {
border: none;
background: none;
text-align: left;
padding: 0.9375rem 0;
color: var(--color-navy);
font-size: 1.04rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-btn,
.mobile-contact-link {
color: var(--orange) !important;
font-weight: 600;
}

/* ==========================================================================
HERO SECTION & GRAPHIC
========================================================================== */

.hero {
  position: relative;
  overflow: visible;
  background: var(--color-dark-section-gradient);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.hero-single {
  position: relative;
  width: min(100% - (2 * var(--page-pad-x)), var(--container));
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 9ch;
  text-transform: none;
}

.hero h1 br {
  display: block;
  content: "";
  margin-top: 0.14em;
}

/* ==========================================================================
HERO GRAPHIC
========================================================================== */

.hero-graphic {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: clamp(0.75rem, 3vw, 1.5rem) auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.hero-graphic-svg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-only {
  display: block;
  max-width: 380px;
  margin-inline: auto;
}

.desktop-only {
  display: none !important;
}

/* ==========================================================================
HERO MESSAGE / CTA
========================================================================== */
/* ==========================================================================
HERO MESSAGE / CTA — RESET TO CORRECT ORDER
========================================================================== */

/* Die alten Subline-Texte komplett entfernen */
.hero-message h2,
.hero-message .hero-message-title,
.hero-message p,
.hero-message .hero-message-subline {
  display: none !important;
}

/* Hero-Message wird nur noch als CTA-Block unter der Grafik genutzt */
.hero-message {
  position: relative !important;
  z-index: 2;
  width: min(100% - (2 * var(--page-pad-x)), 760px);
  margin: clamp(1.5rem, 4vw, 2.75rem) auto 0;
  padding: 0;
  text-align: center;
}

/* CTA immer untereinander auf Mobile */
.hero-message .cta-row,
.hero-message .hero-cta-row {
  position: relative !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 1.25rem);
  margin-top: 0;
  transform: none !important;
}

/* ==========================================================================
GRAPHIC VISIBILITY
========================================================================== */

.hero-graphic {
  position: relative !important;
  z-index: 1;
  display: block;
  width: min(100% - (2 * var(--page-pad-x)), var(--container));
  margin-inline: auto;
  margin-bottom: 0;
  padding: 0;
  pointer-events: none;
  transform: none !important;
}

.hero-graphic-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin-inline: auto;
  object-fit: contain;
  transform: none !important;
}

.mobile-only {
  display: block !important;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
}

.desktop-only {
  display: none !important;
}

/* ==========================================================================
DESKTOP
========================================================================== */

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: block !important;
    width: 100%;
    max-width: 1560px;
    margin-inline: auto;
  }

  .hero-message {
    width: min(100% - (2 * var(--page-pad-x)), 980px);
    margin: clamp(1.5rem, 2.2vw, 2.5rem) auto 0;
    text-align: center;
  }

  .hero-message .cta-row,
  .hero-message .hero-cta-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 1.5rem);
  }
}
/* ==========================================================================
MOBILE PILOT OFFER BLOCK
zwischen Hero und Services
========================================================================== */

.pilot-offer {
display: block;
padding: 3.75rem 1.25rem 3.75rem;
margin-top: 0;
}

.pilot-offer__inner {
background: linear-gradient(180deg, var(--color-offwhite) 0%, #fffdf8 100%);
border: 1px solid rgba(20, 24, 39, 0.14);
border-radius: 1.5rem;
padding: 1.45rem 1.25rem 1.45rem;
box-shadow: 0 26px 56px rgba(20, 24, 39, 0.2);
}

.pilot-offer__eyebrow {
margin: 0 0 0.55rem;
font-family: "Inter", sans-serif;
font-size: 0.88rem;
line-height: 1;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--orange);
}

.pilot-offer__title {
margin: 0 0 0.8rem;
font-family: "Inter", sans-serif;
font-size: clamp(1.45rem, 5.4vw, 1.9rem);
line-height: 1.08;
font-weight: 700;
color: var(--text);
}

.pilot-offer__text {
margin: 0 0 1rem;
font-family: "Inter", sans-serif;
font-size: 1rem;
line-height: 1.5;
color: var(--text-soft);
}

.pilot-offer__list {
list-style: none;
margin: 0 0 1.25rem;
padding: 0;
display: grid;
gap: 0.65rem;
grid-template-columns: 1fr;
}

.pilot-offer__list li {
position: relative;
padding-left: 1.35rem;
font-family: "Inter", sans-serif;
font-size: 0.97rem;
line-height: 1.45;
color: var(--text);
}

.pilot-offer__list li::before {
content: "";
position: absolute;
left: 0;
top: 0.42rem;
width: 0.42rem;
height: 0.42rem;
border-radius: 50%;
background: var(--color-navy);
}

.pilot-offer__button {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 3.35rem;
padding: 0.95rem 1.2rem;
border: none;
border-radius: 999rem;
background: var(--orange);
color: #fff;
font-family: "Inter", sans-serif;
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.01em;
transition: transform 0.18s ease, background 0.18s ease;
}

.pilot-offer__button:hover,
.pilot-offer__button:active {
background: #c85d24;
transform: translateY(-1px);
}


.pilot-offer__actions {
display: flex;
justify-content: center;
}

.pilot-offer__actions .pilot-offer__button {
width: min(100%, 18rem);
}

@media (min-width: 768px) {
.pilot-offer {
padding: 5rem 2rem 5rem;
margin-top: 0;
}

.pilot-offer__inner {
max-width: 70rem;
margin-inline: auto;
padding: 1.8rem 2rem;
}

.pilot-offer__list {
grid-template-columns: 1fr;
max-width: 34rem;
}
}

.usp-section {
padding-block: clamp(5rem, 9vw, 9rem);
background: var(--color-dark-section-gradient);
}

.usp-section .section-kicker, .usp-section h2, .usp-section__lead, .usp-section__intro {
color: #f8f7f3;
}

.usp-section__container {
display: grid;
gap: 1.25rem;
max-width: 78rem;
}

.usp-section h2 {
font-size: clamp(2.3rem, 2rem + 2vw, 3.4rem);
line-height: 1.02;
}

.usp-section__lead {
margin: 0;
font-size: clamp(1.35rem, 1.05rem + 0.95vw, 1.85rem);
font-weight: 600;
line-height: 1.45;
max-width: 52rem;
color: rgba(248, 247, 243, 0.9);
}

.usp-section__intro {
margin: 0.25rem 0 0;
max-width: 46rem;
line-height: 1.75;
color: rgba(248, 247, 243, 0.83);
}

.usp-carousel-controls {
display: flex;
justify-content: flex-end;
gap: 0.75rem;
margin-top: 1rem;
}

.usp-nav {
width: 2.8rem;
height: 2.8rem;
border-radius: 999rem;
border: 1px solid rgba(248,247,243,0.35);
background: rgba(248,247,243,0.08);
color: #fff;
font-size: 1.4rem;
line-height: 1;
}

.usp-nav:hover {
background: rgba(248,247,243,0.18);
}

.usp-grid {
margin-top: 2.2rem;
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(17rem, 24rem);
overflow-x: auto;
gap: 1.25rem;
padding-bottom: 0.75rem;
scroll-snap-type: x proximity;
}
.usp-grid::-webkit-scrollbar{height:10px;}
.usp-grid::-webkit-scrollbar-track{background:rgba(255,255,255,0.14);border-radius:999rem;}
.usp-grid::-webkit-scrollbar-thumb{background:#2ec4a7;border-radius:999rem;}

.usp-card {
background: #f8f7f3;
border: 1px solid rgba(20,24,39,0.1);
border-radius: 1.25rem;
padding: 1.7rem;
min-height: 11.25rem;
box-shadow: 0 16px 34px rgba(4,8,18,0.18);
scroll-snap-align: start;
position: relative;
}
.usp-card::before{content:"";position:absolute;top:1rem;right:1rem;width:1.4rem;height:1.4rem;border-radius:0.4rem;border:1px dashed rgba(20,24,39,0.25);}
.usp-card h3 { margin:0 0 0.7rem; font-size:1.18rem; }
.usp-card p { margin:0; color:var(--text-soft); line-height:1.65; }

@media (min-width: 900px) {
.usp-section__container {
 gap: 1.5rem;
}
}

.about-layout {
display: grid;
grid-template-columns: 1fr;
gap: 1.75rem;
align-items: center;
grid-template-areas:
"kicker"
"portrait"
"content";
}
.about-kicker { grid-area: kicker; }
.about-content { grid-area: content; }
.about-portrait-wrap { grid-area: portrait; }

.about-portrait-wrap {
display: flex;
justify-content: center;
text-decoration: none;
}

.about-portrait {
width: clamp(180px, 22vw, 220px);
height: clamp(220px, 26vw, 280px);
object-fit: cover;
border-radius: 1.4rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-say-hi {
display: inline-flex;
margin-top: 1rem;
color: #ffffff;
font-weight: 600;
text-decoration: none;
border-bottom: 1px solid currentColor;
padding-bottom: 0.1rem;
}

@media (min-width: 860px) {
.about-layout {
grid-template-columns: 1fr 320px;
grid-template-areas:
"kicker portrait"
"content portrait";
gap: 3rem;
}
.about-portrait-wrap {
justify-content: flex-start;
}
}

@media (max-width: 768px) {
.about-layout {
grid-template-columns: 1fr;
}

.about-content {
text-align: center;
}

.about-portrait-wrap {
order: -1;
justify-content: center;
}
}


/* ==========================================================================
SECTION 2 (SERVICES) & ÜBERGÄNGE
========================================================================== */

.section {
padding-block: var(--space-6);
}

.services {
background: #fff;
/* Zieht die Sektion auf Mobil näher an die Grafik ran */
margin-top: 1rem !important;
}

@media (min-width: 768px) {
.services {
margin-top: clamp(4rem, 6vw, 6rem);
}
}

.section-head { margin-bottom: var(--space-4); }
.section-head--center { text-align: center; }

.section-kicker {
margin: 0 0 0.75rem;
font-size: var(--text-xs);
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--green-500);
}

.section h2 {
margin: 0;
font-family: "Playfair Display", serif;
font-size: var(--text-xl);
line-height: 1.02;
letter-spacing: -0.03em;
}

/* ==========================================================================
PFAD-STYLES (IDs für Animation)
========================================================================== */

/* --- 1. Die Fassungen & Basis (Dunkler Ton: #D26D14) --- */
#fassung-links,
#fassung-rechts {
fill: #D26D14;
stroke: none;
}

/* --- 2. Die Filamente (Helles Leuchten: #F4DE85) --- */
#filament-links,
#filament-rechts,
#filament-mobil {
stroke: #F4DE85;
stroke-width: 2.5;
stroke-linecap: round;
}

/* --- 3. Die Bulb & das Leucht-O (Dein Standard-Orange) --- */
/* Die Bulb ist der Glaskörper, der soll im kräftigen Orange strahlen */
#bulb,
#bulb-mobil,
#leucht-o,
#leucht-o-mobil {
fill: var(--orange);
stroke: none;
}

/* --- 4. Der Dom (Spitzen + Basis) & Restliche Elemente --- */
/* Hier stellen wir sicher, dass der Dom komplett orange ist */
#spitzen,
#spitzen-mobil,
#basis,
#basis-mobil,
#dom,
#dom-mobil,
#powerbutton,
#powerbutton-mobil,
#cursor,
#cursor-mobil,
#group-1 { /* Deine Gruppe für die Desktop-Elemente */
fill: var(--orange);
stroke: none;
}

/* --- 5. Alle Leitungen & Pfade (Nur Kontur, keine Füllung) --- */
#leitung,
#leitung-mobil,
#line-horizontal,
#line-horizontal-mobil,
#line-vertikal,
#line-vertikal-mobil {
fill: none;
stroke: var(--orange);
stroke-width: 3;
stroke-linecap: round;
}


/* Alles auf klein geschrieben korrigiert */
#dom-mobil,
#leucht-o-mobil,
#leitung-mobil,
#cursor-mobil {
visibility: visible;
}



/* Services */

.services-layout {
width: min(100% - (2 * var(--page-pad-x)), var(--container));
margin-inline: auto;
display: grid;
gap: clamp(2rem, 1.5rem + 2vw, 4.75rem);
align-items: start;
}

.services-left h2 {
margin-bottom: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: clamp(2.4rem, 1.4rem + 3vw, 4.4rem);
line-height: 0.95;
letter-spacing: -0.05em;
}

.services-list {
display: grid;
gap: clamp(0.875rem, 0.7rem + 0.5vw, 1.5rem);
}

.service-link {
border: none;
background: none;
padding: 0;
text-align: left;
font-family: "Inter", sans-serif;
font-size: clamp(1.6rem, 1rem + 2vw, 4rem);
font-weight: 600;
line-height: 0.98;
letter-spacing: -0.045em;
color: rgba(23, 23, 23, 0.42);
transition: color 0.2s ease;
}

.service-link:hover {
color: var(--green-900);
}

.service-link.is-active {
color: var(--green-900);
}

.services-right {
display: flex;
flex-direction: column;
justify-content: center;
gap: var(--space-3);
}

.services-brand {
margin: 0;
max-width: 34rem;
color: var(--green-900);
font-size: var(--text-md);
line-height: 1.8;
}

.services-description {
margin: 0;
max-width: 34rem;
color: var(--text-soft);
font-size: var(--text-md);
line-height: 1.82;
}

/* Desktop layout switches */

@media (min-width: 48rem) {
.desktop-nav {
display: flex;
}

.menu-toggle,
.mobile-menu {
display: none !important;
}

.services-layout,
.embedded-contact-grid {
grid-template-columns: 1.02fr 0.98fr;
}

.footer-inner {
grid-template-columns: 1fr auto 1fr;
align-items: center;
text-align: left;
}

.footer-inner > *:nth-child(2) {
justify-self: center;
}

.footer-inner > *:last-child {
justify-self: end;
}
}

@media (min-width: 64rem) {
.hero {
padding-block: 6.25rem 8rem;
}
}

/* Process */

.process {
background: var(--color-soft);
}

.process-center {
width: min(100% - (2 * var(--page-pad-x)), 61.25rem);
margin-inline: auto;
}

.process-list {
display: grid;
gap: var(--space-2);
}

.process-item {
display: grid;
grid-template-columns: 3.5rem 1fr;
gap: var(--space-3);
padding-block: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
border-bottom: 1px solid var(--border);
}

.process-number {
font-family: "Playfair Display", serif;
font-size: clamp(1.65rem, 1.35rem + 0.8vw, 1.95rem);
line-height: 1;
color: var(--orange);
}

.process-item h3 {
margin: 0 0 0.625rem;
font-size: clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
}

.process-item p {
margin: 0;
max-width: 52ch;
color: var(--text-soft);
line-height: 1.76;
}

/* About */

.about-copy {
width: min(100% - (2 * var(--page-pad-x)), 70rem);
margin-inline: auto;
}

.about h2,
.about-copy h2 {
max-width: 14ch;
text-wrap: balance;
}

.about-copy p:not(.section-kicker) {
margin: 1.125rem 0 0;
max-width: 52rem;
color: var(--text-soft);
line-height: 1.84;
font-size: var(--text-md);
}

.about-statement {
padding-block: clamp(6rem, 10vw, 10rem);
background: var(--color-dark-section-gradient);
color: #f8f7f3;
}

/*.about-statement .container {
max-width: none;
}*/

.about-statement h2 {
max-width: 22ch;
margin: 0;

font-family: "Inter", sans-serif;
font-weight: 700;

font-size: clamp(2.6rem, 4.2vw, 4.8rem); /* 🔥 deutlich ruhiger */
line-height: 1;
letter-spacing: -0.03em;
}

.about-subtext {
margin-top: 1.8rem;
max-width: 36rem;

font-size: 1rem;
line-height: 1.7;
color: var(--text-soft);
}

/* Projects */

.project-list {
display: grid;
gap: var(--space-3);
}

.project-card {
background: rgba(255, 255, 255, 0.3);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: clamp(1.25rem, 1rem + 1vw, 1.75rem) clamp(1.125rem, 1rem + 0.8vw, 1.5rem);
}

.project-card h3 {
margin: 0 0 0.875rem;
font-family: "Playfair Display", serif;
font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.8rem);
}

.project-card a {
color: var(--orange);
font-weight: 600;
}

/* Embedded contact */

.embedded-contact-grid {
width: min(100% - (2 * var(--page-pad-x)), 70rem);
margin-inline: auto;
display: grid;
gap: clamp(1.75rem, 1.3rem + 1.5vw, 4rem);
align-items: start;
}

.embedded-contact-copy h2 {
max-width: 14ch;
text-wrap: balance;
}

.embedded-contact-copy p:not(.section-kicker) {
margin: 1rem 0 0;
max-width: 38rem;
color: var(--text-soft);
line-height: 1.8;
}

.embedded-contact-form {
display: grid;
gap: 1.5rem;
padding-top: 0.25rem;
}

/* Line fields */

.line-field {
display: block;
}

.line-field span {
display: block;
margin-bottom: 0.75rem;
font-size: var(--text-sm);
color: var(--text-soft);
}

.required {
color: var(--orange);
}

.line-field input,
.line-field textarea {
width: 100%;
border: none;
border-bottom: 1px solid var(--border-strong);
background: transparent;
padding: 0 0 0.875rem;
color: var(--text);
outline: none;
border-radius: 0;
}

.line-field input:focus,
.line-field textarea:focus {
border-bottom-color: var(--green-900);
}

.textarea-field textarea {
min-height: 7.5rem;
resize: vertical;
}

.form-privacy {
margin: 0;
font-size: 0.94rem;
color: var(--text-soft);
line-height: 1.7;
}

.form-privacy a {
color: var(--orange);
}

.form-status {
margin: 0;
color: var(--green-900);
font-size: 0.95rem;
}

/* Buttons */

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 3.5rem;
padding-inline: 1.5rem;
border: none;
border-radius: var(--radius-pill);
font-weight: 600;
font-size: 1rem;
transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
transform: translateY(-1px);
}

.btn-orange {
background: var(--orange);
color: #fff;
}

.btn-orange:hover {
background: var(--orange-dark);
}

/* Footer */

.site-footer {
margin-top: clamp(4rem, 3rem + 2vw, 5.5rem);
padding: 1.5rem 0 2.25rem;
border-top: 1px solid var(--border);
background: var(--bg);
}

.footer-inner {
width: min(100% - (2 * var(--page-pad-x)), var(--container));
margin-inline: auto;
display: grid;
gap: 0.75rem;
justify-items: center;
text-align: center;
}

.footer-social {
color: var(--green-900);
font-weight: 600;
}

.footer-copy {
margin: 0;
color: var(--text-soft);
font-size: 0.95rem;
}

.footer-links {
display: flex;
align-items: center;
gap: 0.625rem;
flex-wrap: wrap;
justify-content: center;
}

.footer-links a,
.footer-links span {
color: var(--text-soft);
font-size: 0.94rem;
}

/* Floating button */

.floating-project-btn {
position: fixed;
right: clamp(1rem, 0.8rem + 0.8vw, 1.375rem);
bottom: clamp(1rem, 0.8rem + 0.8vw, 1.375rem);
z-index: 1200;
display: inline-flex;
align-items: center;
justify-content: center;
width: clamp(4.5rem, 4rem + 1.5vw, 6rem);
height: clamp(4.5rem, 4rem + 1.5vw, 6rem);
border-radius: 50%;
background: #25d366;
color: #fff;
box-shadow: 0 14px 32px rgba(37, 211, 102, 0.3);
animation: pulseProjectBtn 2s ease-in-out infinite;
transition: opacity 0.3s ease, transform 0.3s ease;
opacity: 1;
transform: none;
visibility: visible;
text-decoration: none;
}

.floating-project-btn svg {
width: 52%;
height: 52%;
}

@media (max-width: 767px) {
.floating-project-btn {
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}
}

@keyframes pulseProjectBtn {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.07);
}
}

/* Contact modal */

.contact-modal {
position: fixed;
inset: 0;
z-index: 2000;
display: none;
}

.contact-modal.is-open {
display: block;
}

.contact-backdrop {
position: absolute;
inset: 0;
background: rgba(15, 15, 15, 0.46);
}

.contact-dialog {
position: relative;
width: min(calc(100% - 1.5rem), 47.5rem);
max-height: calc(100dvh - 1.5rem);
overflow: auto;
margin: 0.75rem auto;
background: var(--bg);
border-radius: 1.75rem;
padding: 1.875rem 1.375rem 1.5rem;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.contact-close {
position: absolute;
top: 0.875rem;
right: 0.875rem;
width: 2.75rem;
height: 2.75rem;
border: none;
border-radius: 999rem;
background: var(--surface);
color: var(--text);
font-size: 1.65rem;
line-height: 1;
}

.contact-kicker {
margin: 0 0 0.625rem;
font-size: var(--text-xs);
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--green-500);
}

.contact-dialog h2 {
margin: 0;
max-width: 16ch;
font-family: "Playfair Display", serif;
font-size: clamp(2rem, 5vw, 3rem);
line-height: 1.02;
letter-spacing: -0.03em;
text-wrap: balance;
}

.contact-form {
margin-top: 1.75rem;
display: grid;
gap: 1.5rem;
}

.submit-btn {
width: 100%;
}

/* Flyer popup */

.flyer-popup {
position: fixed;
inset: 0;
z-index: 2200;
display: none;
}

.flyer-popup.is-open {
display: block;
}

.flyer-popup__backdrop {
position: absolute;
inset: 0;
background: rgba(18, 18, 18, 0.42);
}

.flyer-popup__card {
position: relative;
width: min(calc(100% - 1.5rem), 26.25rem);
margin: 18vh auto 0;
background: var(--bg);
color: var(--text);
border-radius: 1.75rem;
padding: 1.5rem 1.25rem 1.375rem;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.flyer-popup__x {
position: absolute;
top: 0.75rem;
right: 0.75rem;
width: 2.5rem;
height: 2.5rem;
border: none;
border-radius: 999rem;
background: var(--surface);
color: var(--text);
font-size: 1.5rem;
line-height: 1;
}

.flyer-popup__kicker {
margin: 0 0 0.625rem;
font-size: var(--text-xs);
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--green-500);
}

.flyer-popup__card h2 {
margin: 0;
font-family: "Playfair Display", serif;
font-size: clamp(1.9rem, 6vw, 2.5rem);
line-height: 1.04;
letter-spacing: -0.03em;
text-wrap: balance;
}

.flyer-popup__card p {
margin: 1rem 0 0;
color: var(--text-soft);
line-height: 1.72;
}

.flyer-popup__card .btn {
width: 100%;
margin-top: 1.25rem;
}

.flyer-popup__mail {
display: inline-block;
margin-top: 0.875rem;
color: var(--orange);
font-weight: 600;
word-break: break-word;
}


/* Legal pages */

.legal-page {
padding: clamp(4rem, 3rem + 3vw, 5.5rem) 0;
min-height: calc(100vh - var(--header-height));
}

.legal-wrap {
width: min(100% - (2 * var(--page-pad-x)), 53.75rem);
margin-inline: auto;
}

.legal-wrap h1 {
margin: 0;
font-family: "Playfair Display", serif;
font-size: clamp(3rem, 7vw, 5rem);
line-height: 0.95;
letter-spacing: -0.04em;
text-wrap: balance;
}

.legal-content {
margin-top: 2.125rem;
display: grid;
gap: 1.125rem;
}

.legal-content p {
margin: 0;
font-size: var(--text-md);
line-height: 1.85;
color: var(--text-soft);
}

/* Responsive switches */

@media (min-width: 48rem) {
.desktop-nav {
display: flex;
}
  
.menu-toggle,
.mobile-menu {
display: none !important;
}

.embedded-contact-grid {
grid-template-columns: 0.88fr 1.12fr;
}

.contact-dialog {
margin: 2.5rem auto;
padding: 2.25rem 2.125rem 1.75rem;
}

.submit-btn {
width: auto;
min-width: 13.75rem;
}

.floating-project-btn {
right: 2.8rem;
bottom: 5.5rem;
width: clamp(4.8rem, 4.2rem + 1.2vw, 6.2rem);
height: clamp(4.8rem, 4.2rem + 1.2vw, 6.2rem);
}

.footer-inner {
grid-template-columns: 1fr auto 1fr;
align-items: center;
text-align: left;
}

.footer-inner > *:nth-child(2) {
justify-self: center;
}

.footer-inner > *:last-child {
justify-self: end;
}
}


@media (max-width: 48rem) {
.section {
padding-block: clamp(3.5rem, 8vw, 5rem);
}

.hero {
padding-block: clamp(3.75rem, 8vw, 5.5rem);
}

.services-layout,
.embedded-contact-grid,
.process-list,
.project-list {
gap: 1.5rem;
}

.about-statement {
padding-block: clamp(4rem, 8vw, 5.5rem);
}

}


@media (min-width: 64rem) {
.section-head--center h2 {
max-width: 12ch;
margin-inline: auto;
}
}


/*DESKTOP*/
@media (min-width: 860px) {
.hero h1 {
font-size: clamp(5rem, 7vw, 8.2rem);
line-height: 0.9;
letter-spacing: -0.05em;
white-space: nowrap;
max-width: none;
}

.hero h1 br {
margin-top: 0.28em;
}
}

/* === Entrance Animation === */

.hero-title-anim,
.services-anim,
.floating-project-btn {
will-change: transform, opacity;
}

#powerbutton-mobil {
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
cursor: pointer;
}

.hero-graphic {
position: relative;
}

.hero-graphic * {
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
}

.hero-touch-left {
position: absolute;
left: 0;
top: 0;
width: 38%;
height: 100%;
z-index: 10;
background: transparent;
touch-action: pan-y;
}


/* --- Angebote Page Ergänzungen --- */

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--space-4);
margin-top: var(--space-5);
margin-bottom: var(--space-6);
}

.offer-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: var(--space-4);
display: flex;
flex-direction: column;
transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
position: relative;
}

.offer-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
border-color: var(--orange);
}

/* Highlight für das Premium-Paket */
.offer-card.premium {
background: var(--color-navy);
color: var(--white-soft) !important;
border: none;
}

.offer-card h3 {
font-family: "Playfair Display", serif;
font-size: var(--text-lg);
margin-bottom: var(--space-1);
}

.price-box {
margin: var(--space-3) 0;
}

.old-price {
text-decoration: line-through;
opacity: 0.5;
font-size: var(--text-sm);
display: block;
}

.current-price {
font-size: 2.25rem;
font-weight: 800;
color: var(--text);
}

.offer-card.premium .current-price {
color: var(--white-soft);
}

.feature-list {
list-style: none;
padding: 0;
margin: var(--space-4) 0;
flex-grow: 1;
}

.feature-list li {
margin-bottom: var(--space-2);
display: flex;
align-items: flex-start;
font-size: var(--text-sm);
line-height: 1.4;
}

.feature-list li::before {
content: "✦";
color: var(--orange);
margin-right: 12px;
font-weight: bold;
}

.offer-card.premium .feature-list li::before {
color: var(--white-soft);
}

/* Der "Zurück zur Startseite" Link */
.back-home-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-bottom: var(--space-4);
font-weight: 600;
color: var(--text-soft);
transition: color 0.2s ease;
}

.back-home-link:hover {
color: var(--orange);
}

.pilot-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--orange);
color: white;
padding: 6px 16px;
border-radius: var(--radius-pill);
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
white-space: nowrap;
}


.hero-graphic-svg #headline path,
.hero-graphic-svg #headline-mobil path {
fill: #f5f3ef !important;
}

/* Premium refresh adjustments */
:root {
  --color-offwhite: #f5f3ef;
  --color-soft: #f3f1ec;
  --orange: #e86a2c;
  --orange-dark: #c95821;
}

.hero,
.hero h1,
.usp-section .section-kicker,
.usp-section h2,
.usp-section__lead,
.usp-section__intro {
  color: #f5f3ef;
}

.hero h1 {
  font-weight: 650;
  letter-spacing: 0.012em !important;
}

.section-kicker {
  color: rgba(232, 106, 44, 0.8);
}

.section {
  padding-block: clamp(5rem, 7vw, 9rem);
}

.usp-section__container {
  gap: 1.5rem;
  max-width: 86rem;
}

.usp-carousel-controls {
  margin-top: 1.25rem;
}

.usp-nav {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(245, 243, 239, 0.45);
  background: #f5f3ef;
  color: #141827;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.usp-grid {
  margin-top: 2rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(24rem, 32rem);
  overflow-x: auto;
  overflow-y: hidden;
  gap: 2.2rem;
  padding: 0.3rem 0.2rem 0.8rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.usp-card {
  background: linear-gradient(155deg, #ffffff 0%, #f6f4ee 100%);
  border: 1px solid rgba(232, 106, 44, 0.16);
  border-radius: 1.15rem;
  padding: 2.75rem 2.6rem 2.7rem;
  min-height: 14.4rem;
  box-shadow: 0 16px 38px rgba(20, 24, 39, 0.14);
}

.usp-card::before {
  top: 1.15rem;
  right: 1.15rem;
  left: auto;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(123, 157, 122, 0.26);
  background: rgba(123, 157, 122, 0.1);
}

.usp-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: linear-gradient(150deg, rgba(232, 106, 44, 0.14), rgba(123, 157, 122, 0.2));
  box-shadow: inset 0 0 0 1px rgba(20, 24, 39, 0.08);
  font-size: 1.25rem;
}

.usp-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.usp-card h3::before {
  content: none;
}

.usp-scrollbar-wrap {
  margin-top: 1rem;
  padding-right: 0.25rem;
}

.usp-scrollbar {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 999rem;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--scroll-progress, 0%), #d9d9d9 var(--scroll-progress, 0%), #d9d9d9 100%);
  outline: none;
}

.usp-scrollbar::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
}

.usp-scrollbar::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
}

.about-layout { gap: clamp(1.5rem, 2.8vw, 2.5rem); }
.about-statement h2 { font-size: clamp(1.95rem, 1.7rem + 1.2vw, 2.55rem); }
.about-subtext { color: rgba(245, 243, 239, 0.9); line-height: 1.85; }

.about-portrait {
  width: clamp(220px, 28vw, 320px);
  height: clamp(280px, 34vw, 390px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

@media (min-width: 860px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.8rem;
  }
}

@media (min-width: 1100px) {
  .usp-grid { grid-auto-columns: minmax(26rem, 34rem); gap: 2.4rem; }
}


/* ===== Targeted UI polish: header + CTA + USP mobile/desktop ===== */
.site-header {
  transition: transform 320ms ease, background-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-102%);
}

@media (max-width: 767px) {
  .site-header {
    min-height: clamp(3.9rem, 10vw, 4.3rem);
  }

  .header-inner {
    min-height: clamp(3.9rem, 10vw, 4.3rem);
    gap: 0.75rem;
  }

  .brand {
    max-width: calc(100% - 3.5rem);
  }

  .brand-logo {
    height: clamp(2.6rem, 7.5vw, 3.3rem);
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .pilot-offer {
    padding: 4.8rem 1.25rem 4.8rem;
  }

  .usp-section {
    padding-block: clamp(4.5rem, 12vw, 6rem);
  }

  .usp-carousel-controls {
    margin-top: 0.8rem;
    justify-content: flex-start;
    gap: 0.6rem;
    transform: translate(-0.15rem, 0.35rem);
  }

  .usp-nav {
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(245, 243, 239, 0.3);
    background: rgba(245, 243, 239, 0.94);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  }

  .usp-grid {
    margin-top: 1.25rem;
    grid-auto-columns: minmax(17.4rem, 86vw);
    gap: 1rem;
    padding-bottom: 0.3rem;
  }

  .usp-grid::-webkit-scrollbar {
    display: none;
  }

  .usp-card {
    padding: 1.3rem 1.1rem 1.25rem;
    min-height: 9.2rem;
  }

  .usp-card h3 {
    margin-top: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .usp-card p {
    font-size: 0.96rem;
    line-height: 1.52;
  }
}

.usp-section .section-kicker,
.usp-section__lead {
  color: var(--orange);
}

.usp-scrollbar-wrap {
  margin-top: 1.1rem;
}

.usp-scrollbar {
  height: 0.62rem;
  border-radius: 999rem;
  background: linear-gradient(
    to right,
    var(--orange) 0%,
    var(--orange) var(--scroll-progress, 0%),
    rgba(248, 247, 243, 0.32) var(--scroll-progress, 0%),
    rgba(248, 247, 243, 0.32) 100%
  );
}

.usp-scrollbar::-webkit-slider-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(232, 106, 44, 0.3);
}

.usp-scrollbar::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(232, 106, 44, 0.3);
}

@media (min-width: 768px) {
  .pilot-offer {
    padding: 5.8rem 2rem;
  }

  .pilot-offer__inner {
    max-width: 64rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
  }

  .pilot-offer__actions .pilot-offer__button {
    width: min(75%, 13.5rem);
    background: #10233f;
    border: 1px solid rgba(37, 211, 102, 0.75);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.18), 0 8px 22px rgba(0, 0, 0, 0.18);
  }

  .pilot-offer__button:hover,
  .pilot-offer__button:active {
    background: #132a4a;
  }
}

/* 2026-05 UI cleanup: USP slider + CTA + about signature */
.usp-section__container {
  gap: clamp(1.4rem, 2.2vw, 2rem);
}

.usp-carousel-controls {
  margin-top: 1.35rem;
  justify-content: flex-start;
  transform: translate(-0.35rem, 0.4rem);
}

.usp-nav {
  background: rgba(245, 243, 239, 0.9);
  border: 1px solid rgba(20, 24, 39, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.usp-grid {
  margin-top: 1.8rem;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.usp-grid::-webkit-scrollbar {
  display: none;
}

.usp-scrollbar-wrap {
  margin-top: 1.8rem;
  margin-bottom: 0.35rem;
}

.usp-scrollbar {
  background: linear-gradient(
    to right,
    #f26522 0%,
    #f26522 var(--scroll-progress, 0%),
    rgba(248, 247, 243, 0.32) var(--scroll-progress, 0%),
    rgba(248, 247, 243, 0.32) 100%
  );
}

.usp-scrollbar::-webkit-slider-thumb,
.usp-scrollbar::-moz-range-thumb {
  background: #f26522;
  box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.3);
}

.pilot-offer__actions .pilot-offer__button {
  width: min(100%, 14rem);
  background: var(--orange);
  border: none;
  box-shadow: 0 10px 24px rgba(20, 24, 39, 0.2);
}

.about-signature {
  margin-top: 1.45rem;
  color: #f26522;
  font-style: italic;
  font-family: "Playfair Display", "Inter", serif;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

@media (max-width: 767px) {
  .usp-carousel-controls {
    transform: translate(-0.25rem, 0.45rem);
  }

  .usp-grid {
    margin-top: 1.55rem;
  }

  .usp-scrollbar-wrap {
    margin-top: 1.45rem;
  }
}

/* 2026-05 targeted mobile fixes: USP slider, header/hero color, CTA flow, about text */
:root {
  --system-offwhite: #eef0f2;
  --system-header-bg: #eef1f4;
  --system-beige-soft: #ded8cb;
}

.site-header {
  background: var(--system-header-bg);
}

.brand,
.desktop-nav a,
.mobile-nav a {
  color: var(--blue-dark);
}

.menu-toggle span {
  background: var(--blue-dark);
}

.hero-graphic-svg #headline path,
.hero-graphic-svg #headline-mobil path {
  fill: var(--system-offwhite);
}

.usp-section__lead { color: var(--system-beige-soft); }

.pilot-offer {
  background: var(--color-dark-section-gradient);
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.pilot-offer__inner {
  max-width: min(920px, 100%);
  background: rgba(255, 255, 255, 0.92);
}

.usp-card {
  background: linear-gradient(162deg, #fdfcf8 0%, #f8f5ee 100%);
  border: 1px solid rgba(20, 24, 39, 0.09);
  border-radius: 1.5rem;
  padding: 2.8rem 2.2rem 2.5rem;
  min-height: 17.2rem;
  box-shadow: 0 14px 26px rgba(20, 24, 39, 0.1), 0 30px 50px rgba(20, 24, 39, 0.07);
}

.usp-card h3 {
  margin-top: 1.35rem;
  margin-bottom: 1rem;
  font-size: clamp(1.22rem, 1.04rem + 0.52vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: 0.005em;
}

.usp-card p {
  max-width: 34ch;
  line-height: 1.82;
  font-size: 1.02rem;
  color: rgba(20, 24, 39, 0.8);
}

.usp-card::before {
  content: none;
}

.usp-card__icon {
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 39, 0.08);
}

.usp-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  color: rgba(20, 24, 39, 0.74);
}

.usp-card__icon--sage {
  background: linear-gradient(150deg, rgba(123, 157, 122, 0.21), rgba(123, 157, 122, 0.14));
}

.usp-card__icon--orange {
  background: linear-gradient(150deg, rgba(232, 106, 44, 0.22), rgba(232, 106, 44, 0.12));
}

.usp-scrollbar {
  cursor: grab;
  touch-action: pan-x;
}

.usp-scrollbar:active {
  cursor: grabbing;
}

.about-content { text-align: left; }
.about-statement h2 { text-align: center; }
.about-subtext {
  text-align: left;
  max-width: 62ch;
}
.about-kicker {
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .about-layout {
    gap: clamp(1.5rem, 4vw, 2rem);
    align-items: start;
  }
  .about-content {
    text-align: left;
  }
  .about-portrait-wrap {
    order: 0;
    justify-content: flex-start;
  }
  .usp-card {
    padding: 2.2rem 1.4rem 1.95rem;
    min-height: 15.5rem;
  }
  .usp-card h3 {
    margin-top: 1.1rem;
    margin-bottom: 0.9rem;
    font-size: 1.14rem;
  }
  .usp-card p {
    font-size: 0.99rem;
    line-height: 1.74;
    max-width: 30ch;
  }
}


/* Hero CTAs below graphic */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  justify-content: center;
  align-items: center;
  margin-top: clamp(1rem, 2.2vw, 1.8rem);
}

.hero-primary-cta {
  border: 1px solid transparent;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(215, 108, 47, 0.26);
}

.hero-primary-cta:hover,
.hero-primary-cta:focus-visible {
  background: var(--orange-dark);
}

.hero-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--system-offwhite);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 235, 225, 0.35);
  padding-bottom: 0.12rem;
}

.hero-whatsapp-link svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--orange);
  flex: 0 0 auto;
}

.hero-whatsapp-link:hover,
.hero-whatsapp-link:focus-visible {
  border-bottom-color: var(--orange);
}

}
