/* =========================================================
   Pflegeduett HaNa — Design System "Im Duett"
   © 2026 TwoPixels GmbH
   ========================================================= */

:root {
  /* Brand — Hartmut (Ha) + Natascha (Na) */
  --ha-blue:        #1762C2;
  --ha-blue-deep:   #0E4FA0;
  --ha-blue-soft:   #E5EEFB;
  --na-violet:      #A05BAB;
  --na-violet-deep: #7E3F8B;
  --na-violet-soft: #F2E6F5;
  --duo-mid:        #5A4DB8;          /* mid-blend Ha→Na */

  /* Warm coast palette */
  --sand:           #F7F4EE;
  --sand-2:         #EFEAE1;
  --paper:          #FFFFFF;
  --gold:           #E6B25A;
  --gold-soft:      #FAEDD0;

  /* Ink */
  --ink:            #14131A;
  --ink-2:          #36343F;
  --ink-3:          #6E6B7A;
  --line:           #E6E1D6;
  --line-2:         #D8D2C4;

  /* Effects */
  --shadow-xs:      0 1px 2px rgba(20,19,26,.04);
  --shadow:         0 8px 24px rgba(20,19,26,.06), 0 1px 2px rgba(20,19,26,.04);
  --shadow-lg:      0 24px 60px rgba(20,19,26,.10), 0 6px 18px rgba(20,19,26,.05);
  --shadow-violet:  0 24px 60px rgba(160,91,171,.18), 0 4px 12px rgba(160,91,171,.10);
  --shadow-blue:    0 24px 60px rgba(23,98,194,.18), 0 4px 12px rgba(23,98,194,.10);

  /* Radii — bewusst asymmetrisch */
  --r-xs:           6px;
  --r-sm:           10px;
  --r:              18px;
  --r-lg:           28px;
  --r-xl:           44px;
  --r-bento:        32px 32px 8px 32px;   /* signature bento radius */
  --r-bento-rev:    32px 32px 32px 8px;

  /* Type */
  --font-display:   'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --gutter:         clamp(1.2rem, 3vw, 2.2rem);
  --max:            1280px;
}

/* =========================================================
   Reset + Base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: 'ss01','cv11';
  color: var(--ink);
  background: var(--sand);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.wrap   { width: min(var(--max), calc(100% - 2*var(--gutter))); margin: 0 auto; }
.wrap-w { width: min(1440px, calc(100% - 2*var(--gutter))); margin: 0 auto; }
.wrap-n { width: min(880px,  calc(100% - 2*var(--gutter))); margin: 0 auto; }

/* =========================================================
   Type Scale — editorial
   ========================================================= */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.display-xl { font-size: clamp(3.4rem, 10vw, 8rem); }
.display-lg { font-size: clamp(2.6rem, 7vw,  5.6rem); }
.display-md { font-size: clamp(2rem,   5vw,  3.8rem); }
.display-sm { font-size: clamp(1.7rem, 4vw,  2.8rem); }

.duo-text {
  background: linear-gradient(92deg, var(--ha-blue) 0%, var(--duo-mid) 50%, var(--na-violet) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
}

h1,h2,h3,h4 { margin: 0 0 .6em; color: var(--ink); }
h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -.02em; line-height: 1; }
h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem,  4.5vw, 3.4rem); letter-spacing: -.018em; line-height: 1.05; }
h3 { font-family: var(--font-sans);    font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.45rem); letter-spacing: -.005em; line-height: 1.25; }
h4 { font-family: var(--font-sans);    font-weight: 600; font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.28rem); color: var(--ink-2); line-height: 1.5; max-width: 56ch; }

/* Editorial section marker — "01 — …" */
.marker {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.marker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ha-blue);
}
.marker.violet .dot { background: var(--na-violet); }
.marker .num {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--ink);
  letter-spacing: 0;
  font-style: italic;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .96rem; line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s, border-color .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ink   { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; box-shadow: 0 10px 24px rgba(0,0,0,.18); }

.btn--duo   {
  background: linear-gradient(95deg, var(--ha-blue) 0%, var(--na-violet) 100%);
  color: var(--paper);
  box-shadow: 0 8px 22px rgba(90,77,184,.28);
}
.btn--duo:hover { box-shadow: 0 14px 32px rgba(90,77,184,.4); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--paper); border-color: var(--ink); }

.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn--paper:hover { border-color: var(--ink); }

.btn .arr { font-size: 1.1em; line-height: 1; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn--lg { padding: 18px 28px; font-size: 1rem; }

/* =========================================================
   Header — sticky, glass
   ========================================================= */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(20,19,26,.06);
}
.topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--ink);
}
.brand__mark { width: 38px; height: 38px; }
.brand__name {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand__name .top {
  font-family: var(--font-sans);
  font-weight: 800; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
}
.brand__name .mid {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.35rem; line-height: 1;
  margin-top: 4px;
}
.brand__name .mid .ha { color: var(--ha-blue); }
.brand__name .mid .na { color: var(--na-violet); }

.nav { display: flex; justify-content: center; gap: .1rem; }
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: .94rem; font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px;
  background: linear-gradient(90deg, var(--ha-blue), var(--na-violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.7,.2,.2,1);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }

.topbar__cta { display: flex; align-items: center; gap: 10px; }
.tel-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .92rem; font-weight: 600;
  color: var(--ink);
  padding: 8px 4px;
}
.tel-link svg { width: 16px; height: 16px; color: var(--ha-blue); }
.tel-link:hover { color: var(--ha-blue); }

.burger {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 4px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .topbar__row { grid-template-columns: auto 1fr auto; }
  .nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100dvh - 64px);
    background: var(--sand);
    flex-direction: column; align-items: stretch;
    padding: 2rem var(--gutter);
    gap: 0;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.7,.2,.2,1);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 40;
    visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a {
    padding: 16px 4px;
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 400;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav a::after { display: none; }
  .topbar__cta .btn { display: none; }
  .burger { display: inline-block; }
}

/* =========================================================
   Hero — editorial split
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 6rem);
  overflow: hidden;
  z-index: 2;
}
.marquee { position: relative; z-index: 1; }
.hero__mesh {
  position: absolute; inset: -10%;
  z-index: 0;
  background:
    radial-gradient(720px 480px at 18% 22%, rgba(23,98,194,.18), transparent 60%),
    radial-gradient(680px 460px at 82% 78%, rgba(160,91,171,.22), transparent 60%),
    radial-gradient(540px 380px at 50% 110%, rgba(230,178,90,.14), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 720px; }
.hero h1 {
  margin: 1.4rem 0 1.6rem;
}
.hero h1 .line { display: block; }
.hero h1 .line.duo {
  display: inline-block;
  position: relative;
}
.hero h1 .line.duo::before,
.hero h1 .line.duo::after {
  content: '╱╲'; color: var(--gold);
  font-family: var(--font-mono); font-size: .35em; letter-spacing: -.15em;
  vertical-align: super; opacity: .55;
  margin: 0 .25em;
}
.hero__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.35;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-2);
  max-width: 600px;
}
.hero__meta .item { }
.hero__meta .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.hero__meta .v { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); }
@media (max-width: 560px) { .hero__meta { grid-template-columns: 1fr 1fr; } }

/* Hero visual — heart-hand large + paired portraits */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 720px;
}
.hero__visual .blob-blue,
.hero__visual .blob-violet {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  filter: blur(2px);
}
.hero__visual .blob-blue {
  inset: 0 30% 38% 0;
  background: linear-gradient(145deg, var(--ha-blue) 0%, var(--ha-blue-deep) 100%);
  box-shadow: var(--shadow-blue);
  animation: morph-a 16s ease-in-out infinite alternate;
}
.hero__visual .blob-violet {
  inset: 32% 0 0 28%;
  background: linear-gradient(145deg, var(--na-violet) 0%, var(--na-violet-deep) 100%);
  box-shadow: var(--shadow-violet);
  border-radius: 50% 50% 45% 55% / 55% 45% 60% 40%;
  animation: morph-b 18s ease-in-out infinite alternate;
}
.hero__visual .heart {
  position: absolute; inset: 18% 18% 22% 22%;
  z-index: 2;
  display: grid; place-items: center;
}
.hero__visual .heart svg { width: 100%; height: 100%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }
.hero__visual .badge {
  position: absolute; z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem;
}
.hero__visual .badge .ico {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ha-blue-soft); color: var(--ha-blue);
}
.hero__visual .badge.b-violet .ico { background: var(--na-violet-soft); color: var(--na-violet); }
.hero__visual .badge .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.hero__visual .badge .v { font-weight: 600; font-size: .98rem; }
.hero__visual .badge.b1 { top: 6%; right: -10px; }
.hero__visual .badge.b2 { bottom: 8%; left: -16px; }

@keyframes morph-a {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: rotate(-2deg) scale(1); }
  100% { border-radius: 50% 50% 40% 60% / 55% 45% 50% 55%; transform: rotate(3deg) scale(1.03); }
}
@keyframes morph-b {
  0%   { border-radius: 50% 50% 45% 55% / 55% 45% 60% 40%; transform: rotate(2deg) scale(1); }
  100% { border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%; transform: rotate(-3deg) scale(1.04); }
}

/* Hero photo (real image variant) */
.hero__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  max-height: 720px;
}
.hero__photo-frame {
  position: absolute; inset: 0;
  border-radius: 32px 120px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--ha-blue), var(--na-violet));
}
.hero__photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__photo-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,19,26,0) 30%, rgba(20,19,26,.5) 100%),
    linear-gradient(135deg, rgba(23,98,194,.30) 0%, transparent 40%, rgba(160,91,171,.35) 100%);
  pointer-events: none;
}
.hero__photo-mark {
  position: absolute; left: 24px; bottom: 24px;
  width: 80px; height: 86px;
  opacity: .92;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.3));
}
.hero__photo-mark svg { width: 100%; height: 100%; }
.hero__badge {
  position: absolute; z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem;
}
.hero__badge .ico {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
}
.hero__badge .ico svg { width: 18px; height: 18px; }
.hero__badge .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.hero__badge .v { font-weight: 600; font-size: .98rem; }
.hero__badge--blue   { top: 6%; right: -16px; }
.hero__badge--blue   .ico { background: var(--ha-blue-soft); color: var(--ha-blue); }
/* Violet badge stays well within photo bounds so the marquee below cannot overlap it */
.hero__badge--violet { bottom: 22%; left: -16px; }
.hero__badge--violet .ico { background: var(--na-violet-soft); color: var(--na-violet); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual,
  .hero__photo { max-height: 480px; margin: 0 auto; max-width: 460px; }
}
@media (max-width: 520px) {
  .hero__badge { padding: 10px 14px; }
  .hero__badge--blue   { right: -8px; }
  .hero__badge--violet { left: -10px; }
}

/* =========================================================
   Marquee trust strip
   ========================================================= */

.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee__track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: .8rem;
  color: rgba(255,255,255,.78);
}
.marquee__track span::after {
  content: '✦';
  color: var(--gold); margin-left: 3rem;
  font-size: .9em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Bento — service grid
   ========================================================= */

.section { padding: clamp(4rem, 8vw, 8rem) 0; position: relative; }
.section--sand2 { background: var(--sand-2); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--ink p { color: rgba(255,255,255,.78); }

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head h2 { margin: 1rem 0 0; }
.section__head .lead { margin: 0; }
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; } }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.tile {
  background: var(--paper);
  border-radius: var(--r-bento);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.7,.2,.2,1), box-shadow .35s, border-color .25s;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tile h3 { margin: .5rem 0 .5rem; max-width: 22ch; }
.tile p { font-size: .96rem; color: var(--ink-2); margin: 0 0 1.1rem; }
.tile ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.tile ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: .92rem; color: var(--ink-2);
}
.tile ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 12px; height: 1.5px; background: var(--ink); opacity: .35;
}
.tile .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sand);
  color: var(--ink);
}
.tile .ico svg { width: 24px; height: 24px; }
.tile .tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
}

/* Tile variants */
.tile--blue   { background: var(--ha-blue); color: var(--paper); border-color: transparent; }
.tile--blue h3, .tile--blue p, .tile--blue ul li { color: var(--paper); }
.tile--blue ul li::before { background: var(--paper); }
.tile--blue .ico { background: rgba(255,255,255,.16); color: var(--paper); }
.tile--blue .tag { color: rgba(255,255,255,.7); }

.tile--violet { background: var(--na-violet); color: var(--paper); border-color: transparent; }
.tile--violet h3, .tile--violet p, .tile--violet ul li { color: var(--paper); }
.tile--violet ul li::before { background: var(--paper); }
.tile--violet .ico { background: rgba(255,255,255,.16); color: var(--paper); }
.tile--violet .tag { color: rgba(255,255,255,.7); }

.tile--sand   { background: var(--gold-soft); border-color: transparent; }
.tile--sand .ico { background: rgba(20,19,26,.06); }

.tile--ink    { background: var(--ink); color: var(--paper); border-color: transparent; }
.tile--ink h3, .tile--ink p, .tile--ink ul li { color: var(--paper); }
.tile--ink ul li::before { background: var(--gold); opacity: 1; }
.tile--ink .ico { background: rgba(255,255,255,.1); color: var(--gold); }
.tile--ink .tag { color: var(--gold); }

/* Bento sizes */
.tile--w2 { grid-column: span 2; }
.tile--w3 { grid-column: span 3; }
.tile--w4 { grid-column: span 4; }
.tile--w6 { grid-column: span 6; }
.tile--h2 { grid-row: span 2; }

/* Inline-CTA inside a bento grid (full-width row, breaks the tile pattern) */
.bento-cta {
  grid-column: 1 / -1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-bento);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bento-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 0% 0%, rgba(23,98,194,.06), transparent 60%),
    radial-gradient(400px 200px at 100% 100%, rgba(160,91,171,.07), transparent 60%);
  pointer-events: none;
}
.bento-cta__ico {
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ha-blue-soft), var(--na-violet-soft));
  color: var(--duo-mid);
  flex: 0 0 56px;
}
.bento-cta__ico svg { width: 26px; height: 26px; }
.bento-cta__body { position: relative; z-index: 1; max-width: 64ch; }
.bento-cta__tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .4rem;
}
.bento-cta__body h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.15; margin: 0 0 .4rem;
  letter-spacing: -.012em;
  color: var(--ink);
}
.bento-cta__body p { margin: 0; font-size: .98rem; color: var(--ink-2); }
.bento-cta__btn { position: relative; z-index: 1; white-space: nowrap; }

@media (max-width: 880px) {
  .bento-cta { grid-template-columns: auto minmax(0, 1fr); }
  .bento-cta__btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 480px) {
  .bento-cta { grid-template-columns: 1fr; padding: 1.4rem; }
  .bento-cta__ico { width: 44px; height: 44px; flex-basis: 44px; }
}

.tile__big {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1; margin: .3em 0 .4em;
}

@media (max-width: 1040px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile--w4, .tile--w3 { grid-column: span 4; }
  .tile--w2 { grid-column: span 2; }
  .tile--h2 { grid-row: auto; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile  { grid-column: span 2 !important; padding: 1.4rem; }
}

/* =========================================================
   Duo Section — Hartmut + Natascha portraits
   ========================================================= */

.duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.duo__col {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
}
.duo__col.ha { border-top: 4px solid var(--ha-blue); }
.duo__col.na { border-top: 4px solid var(--na-violet); }

.duo__avatar {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r);
  background: var(--sand-2);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.4rem;
}
.duo__avatar img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.duo__col:hover .duo__avatar img { transform: scale(1.03); }
.duo__avatar::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(190deg, transparent 50%, rgba(20,19,26,.32) 100%);
}
.duo__col.ha .duo__avatar { box-shadow: 0 6px 20px rgba(23,98,194,.15); }
.duo__col.na .duo__avatar { box-shadow: 0 6px 20px rgba(160,91,171,.15); }
.duo__avatar .initials {
  position: absolute; inset: auto 0 0 0; top: auto;
  padding: 0 1.2rem 1rem;
  display: flex; justify-content: flex-start; align-items: flex-end;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  user-select: none;
  z-index: 1;
}
.duo__col .role {
  font-family: var(--font-mono);
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .4rem;
}
.duo__col .name {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 .8rem;
  line-height: 1;
}
.duo__col.ha .name { color: var(--ha-blue); }
.duo__col.na .name { color: var(--na-violet); }
.duo__col p { font-size: .96rem; }

.duo__mid {
  display: grid; place-items: center;
  text-align: center;
}
.duo__mid .amp {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--ha-blue), var(--na-violet));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.duo__mid .quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  max-width: 18ch;
  line-height: 1.35;
  margin-top: 1rem;
}

@media (max-width: 880px) {
  .duo { grid-template-columns: 1fr; }
  .duo__mid { order: -1; padding: 1.5rem 0; }
  .duo__mid .amp { font-size: 5rem; }
}

/* =========================================================
   Editorial split (text + image asymmetric)
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.alt { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.split.alt > .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--r-bento);
  aspect-ratio: 4/4.6;
  background: linear-gradient(160deg, var(--ha-blue-soft) 0%, var(--na-violet-soft) 100%);
  overflow: hidden;
}
.split__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.split__media .ornament {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 30% 25%, rgba(23,98,194,.45), transparent 60%),
    radial-gradient(45% 55% at 80% 75%, rgba(160,91,171,.55), transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(20,19,26,.45) 100%);
}
.split__media .stamp {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--paper); padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
}
.split__media .stamp .dot { width: 6px; height: 6px; background: var(--ha-blue); border-radius: 50%; }
.split ul.bullets { list-style: none; padding: 0; margin: 1.6rem 0; }
.split ul.bullets li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.split ul.bullets li:last-child { border-bottom: 0; }
.split ul.bullets li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 22px; height: 1.5px;
  background: linear-gradient(90deg, var(--ha-blue), var(--na-violet));
}
@media (max-width: 880px) {
  .split, .split.alt { grid-template-columns: 1fr; }
  .split.alt > .split__media { order: 0; }
}

/* =========================================================
   Process — 4 steps
   ========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.process__step {
  background: var(--paper);
  border-radius: var(--r-bento);
  padding: 1.8rem;
  border: 1px solid var(--line);
  position: relative;
}
.process__step .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 3.2rem; line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--ha-blue), var(--na-violet));
  -webkit-background-clip: text; background-clip: text;
  margin-bottom: .8rem;
}
.process__step h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.process__step p { font-size: .94rem; margin: 0; }
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ accordion
   ========================================================= */

.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.6rem;
  transition: border-color .15s;
}
.faq__item[open] {
  border-color: transparent;
  background: linear-gradient(135deg, var(--ha-blue-soft) 0%, var(--na-violet-soft) 100%);
}
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314131A' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .25s;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item .answer { padding-top: 1rem; color: var(--ink-2); }
.faq__item .answer p { margin: 0 0 .8em; }

/* =========================================================
   Contact form / Job form
   ========================================================= */

.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label { font-size: .82rem; font-weight: 500; color: var(--ink-2); margin-bottom: 6px; letter-spacing: .02em; }
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ha-blue);
  box-shadow: 0 0 0 4px rgba(23,98,194,.12);
}
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { font-size: .8rem; color: var(--ink-3); margin-top: 6px; }
.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: var(--ink-2);
}
.checkbox input { margin-top: 4px; accent-color: var(--ha-blue); }
@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-bento);
  padding: 2.4rem;
  display: grid; gap: 2rem;
}
.contact-info { display: grid; gap: 1.4rem; }
.contact-info .row { display: flex; align-items: flex-start; gap: 14px; }
.contact-info .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ha-blue-soft), var(--na-violet-soft));
  color: var(--ink); display: grid; place-items: center; flex: 0 0 42px;
}
.contact-info .ico svg { width: 18px; height: 18px; }
.contact-info .k { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.contact-info .v { font-size: 1.05rem; font-weight: 500; }

/* =========================================================
   Leistungsseite — editorial chapter layout
   ========================================================= */

.toc {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(247,244,238,.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.toc::-webkit-scrollbar { display: none; }
.toc__inner {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.toc a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.toc a:hover { background: var(--paper); color: var(--ink); }
.toc a.active { background: var(--ink); color: var(--paper); }
.toc__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05em;
  letter-spacing: 0;
  margin-right: .4em;
  color: var(--ha-blue);
}
.toc a.active .toc__num { color: var(--gold); }

.leistung {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  scroll-margin-top: 130px;
}
.leistung + .leistung { border-top: 1px solid var(--line); }
.leistung--sand { background: var(--sand-2); }

.leistung__head {
  max-width: 780px;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.leistung__num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1;
  background: linear-gradient(135deg, var(--ha-blue), var(--na-violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: .8rem;
}
.leistung__chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.2rem;
}
.leistung__chip strong { color: var(--ink); font-weight: 600; }
.leistung h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.018em; line-height: 1.04;
  margin: 0 0 1rem;
}
.leistung h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--ha-blue), var(--na-violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.leistung .lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }

.leistung__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.leistung__grid.alt {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.leistung__grid.alt > .leistung__visual { order: 2; }

.leistung__visual {
  position: relative;
  border-radius: var(--r-bento);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: linear-gradient(160deg, var(--ha-blue-soft) 0%, var(--na-violet-soft) 100%);
  position: sticky;
  top: 130px;
}
.leistung__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.leistung__visual .stamp {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 14px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
}
.leistung__visual .stamp .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ha-blue); }

.leistung__body p { font-size: 1.02rem; color: var(--ink-2); }
.leistung__body p.lead-in {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.leistung__body h3 {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 1.18rem;
  margin: 2rem 0 .7rem;
  color: var(--ink);
}
.leistung__body h3:first-child { margin-top: 0; }
.leistung__body ul {
  list-style: none; padding: 0; margin: 0 0 1.4rem;
}
.leistung__body ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: .98rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.leistung__body ul li:last-child { border-bottom: 0; }
.leistung__body ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 16px; height: 2px;
  background: linear-gradient(90deg, var(--ha-blue), var(--na-violet));
  border-radius: 2px;
}

/* Inline kosten-callout */
.kosten-callout {
  margin: 1.6rem 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--ha-blue-soft) 0%, var(--na-violet-soft) 100%);
  border-radius: var(--r);
  border-left: 4px solid var(--duo-mid);
}
.kosten-callout .k {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .3rem;
}
.kosten-callout p { margin: 0; font-size: .98rem; color: var(--ink); }
.kosten-callout strong { color: var(--ha-blue-deep); }

@media (max-width: 880px) {
  .leistung__grid, .leistung__grid.alt { grid-template-columns: 1fr; }
  .leistung__grid.alt > .leistung__visual { order: 0; }
  .leistung__visual { position: relative; top: 0; aspect-ratio: 16/10; }
}

/* Kostentabelle */
.kosten-tab {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--r-bento);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.kosten-tab thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .04em;
  padding: 18px 20px;
  text-align: left;
}
.kosten-tab tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  color: var(--ink-2);
}
.kosten-tab tbody td:first-child { color: var(--ink); font-weight: 500; }
.kosten-tab tbody td.amount {
  font-family: var(--font-display); font-style: italic;
  color: var(--ha-blue);
  font-size: 1.15rem;
  text-align: right;
  white-space: nowrap;
}
.kosten-tab tbody tr:last-child td { border-bottom: 0; }
.kosten-tab tbody tr:hover { background: var(--sand); }
.kosten-tab td .note { display: block; font-size: .82rem; color: var(--ink-3); margin-top: 3px; }

@media (max-width: 700px) {
  .kosten-tab thead { display: none; }
  .kosten-tab, .kosten-tab tbody, .kosten-tab tr, .kosten-tab td { display: block; }
  .kosten-tab tr { padding: 1rem; border-bottom: 1px solid var(--line); }
  .kosten-tab td { padding: 4px 0; border: 0; }
  .kosten-tab td.amount { text-align: left; font-size: 1.4rem; margin-top: 8px; }
}

/* Inline form status */
.form-status {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: .96rem; font-weight: 500;
  margin: .5rem 0;
}
.form-status[data-kind="ok"]  { background: var(--ha-blue-soft); color: var(--ha-blue-deep); border: 1px solid var(--ha-blue); }
.form-status[data-kind="err"] { background: #FDE7EB; color: #9B1023; border: 1px solid #E04253; }

/* Honeypot — visually hidden */
.hp { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   CTA Strip — gradient
   ========================================================= */

.ctastrip {
  position: relative;
  background: linear-gradient(120deg, var(--ha-blue) 0%, var(--duo-mid) 50%, var(--na-violet) 100%);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
}
.ctastrip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(540px 280px at 88% -10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(420px 240px at -10% 120%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.ctastrip__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 2rem; align-items: center;
}
.ctastrip h2 { color: var(--paper); margin: .5rem 0 .8rem; }
.ctastrip p { color: rgba(255,255,255,.86); margin: 0; max-width: 50ch; }
.ctastrip .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.ctastrip .btn--paper { background: var(--paper); color: var(--ink); border-color: transparent; }
.ctastrip .btn--paper:hover { background: var(--sand); }
.ctastrip .btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.5); }
.ctastrip .btn--ghost:hover { background: rgba(255,255,255,.1); }
.ctastrip .marker { color: rgba(255,255,255,.78); }
.ctastrip .marker .dot { background: var(--gold); }
.ctastrip .marker .num { color: var(--paper); }
@media (max-width: 800px) {
  .ctastrip__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */

.foot {
  background: var(--ink);
  color: rgba(255,255,255,.84);
  padding: 5rem 0 2rem;
  position: relative;
}
.foot p { color: rgba(255,255,255,.78); }
.foot__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
  margin-bottom: 2.5rem;
  align-items: end;
}
.foot__lead h2 {
  color: var(--paper);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0;
  line-height: 1;
}
.foot__lead h2 .duo-text { font-style: italic; }
.foot__lead p { color: rgba(255,255,255,.82); margin: 0; }

.foot__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.foot__cols h4 {
  color: var(--paper); font-size: .88rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.foot__cols ul { list-style: none; padding: 0; margin: 0; }
.foot__cols li { margin-bottom: .55rem; font-size: .94rem; color: rgba(255,255,255,.82); }
.foot__cols a { color: rgba(255,255,255,.86); transition: color .15s; }
.foot__cols a:hover { color: var(--paper); }

.foot__brand { display: flex; flex-direction: column; gap: 1rem; }
.foot__brand .brand { color: var(--paper); }
.foot__brand .brand__name .top { color: rgba(255,255,255,.78); }
.foot__brand .desc { font-size: .94rem; max-width: 38ch; color: rgba(255,255,255,.82); }
.foot__socials { display: flex; gap: .6rem; margin-top: .5rem; }
.foot__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: grid; place-items: center;
  color: rgba(255,255,255,.9);
  transition: background .2s, border-color .2s, color .2s;
}
.foot__socials a:hover {
  background: linear-gradient(135deg, var(--ha-blue), var(--na-violet));
  border-color: transparent; color: var(--paper);
}
.foot__socials svg { width: 16px; height: 16px; }

.foot__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .84rem; color: rgba(255,255,255,.7);
}
.foot__bottom a { color: rgba(255,255,255,.82); }
.foot__bottom a:hover { color: var(--paper); }

@media (max-width: 980px) {
  .foot__lead { grid-template-columns: 1fr; gap: 2rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .foot__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   Sticky mobile call button
   ========================================================= */

.mobile-call {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  padding: 14px 18px; border-radius: 999px;
  background: linear-gradient(95deg, var(--ha-blue), var(--na-violet));
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(90,77,184,.4);
  font-weight: 600;
  align-items: center; justify-content: center; gap: 10px;
}
.mobile-call svg { width: 18px; height: 18px; }
@media (max-width: 880px) {
  .mobile-call { display: flex; }
  body { padding-bottom: 78px; }
}

/* =========================================================
   Page-Head (inner pages)
   ========================================================= */

.page-head {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-head__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(540px 320px at 90% 0%, rgba(23,98,194,.18), transparent 60%),
    radial-gradient(540px 320px at 0% 100%, rgba(160,91,171,.22), transparent 60%);
  z-index: 0; pointer-events: none;
}
.page-head__mesh::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(247,244,238,.85) 0%, rgba(247,244,238,.92) 100%),
    url('/assets/banner-grass.jpg') center 30%/cover no-repeat;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.page-head__inner { position: relative; z-index: 1; }
.page-head h1 { margin: 1rem 0 1rem; }
.page-head .lead { max-width: 56ch; }

.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-family: var(--font-mono); font-size: .78rem;
  letter-spacing: .1em; color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .4; }

/* =========================================================
   Reveal animation
   ========================================================= */

/* No-JS fallback: content stays visible. JS opts in to the reveal via .js class on <html>. */
html.js [data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
html.js [data-aos].in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none; }
  .marquee__track,
  .hero__visual .blob-blue,
  .hero__visual .blob-violet { animation: none !important; }
}

/* =========================================================
   Misc utilities
   ========================================================= */

.eyebrow-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }
.text-blue   { color: var(--ha-blue); }
.text-violet { color: var(--na-violet); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }

/* Print */
@media print {
  .topbar, .foot, .marquee, .mobile-call, .ctastrip { display: none !important; }
}
