/* =====================================================================
   PRO CANIS · Mobile Hundeschule Weisbecker
   Design system — warm terracotta / forest green / cream
   Fraunces (display serif) + Inter (body)
   ===================================================================== */

/* ------------------------------ Tokens ----------------------------- */
:root {
  /* Brand */
  --orange:        #DE752E;   /* logo orange — primary accent / CTA */
  --orange-deep:   #C25E1E;   /* hover */
  --orange-soft:   #F4D9C2;   /* tints */
  --orange-wash:   #FBEEE2;

  --forest:        #2F3A2A;   /* deep green — headings on light, depth */
  --forest-2:      #3E4C36;
  --moss:          #76855E;   /* muted green accent */
  --moss-soft:     #DDE2D0;

  --ink:           #20211C;   /* near-black warm */
  --paper:         #F8F2E7;   /* warm cream page bg */
  --paper-2:       #F1E8D7;   /* alt section */
  --card:          #FFFDF9;   /* card surface */
  --cream-line:    #E7DCC6;   /* hairline on cream */

  --text:          #2B2A24;   /* body text */
  --muted:         #6A6557;   /* secondary text */
  --muted-2:       #8B8678;

  /* On dark (forest) surfaces */
  --on-dark:       #F3EEE2;
  --on-dark-muted: #B9BCA6;
  --dark-line:     rgba(255,255,255,.12);

  /* Typography */
  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 38px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(50,40,25,.06);
  --sh:    0 14px 40px -18px rgba(60,46,24,.30);
  --sh-lg: 0 40px 80px -40px rgba(60,46,24,.45);
  --ring:  0 0 0 4px rgba(222,117,46,.28);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 84px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* Subtle paper grain on the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------- Typography ---------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.18rem; letter-spacing: 0; }
p { color: var(--text); }
.lead { font-size: clamp(1.1rem, 1.9vw, 1.3rem); color: var(--muted); line-height: 1.65; }
strong { font-weight: 600; color: var(--forest); }
em.script { font-style: italic; font-family: var(--serif); color: var(--orange); }

/* --------------------------- Layout utils -------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-paper-2 { background: var(--paper-2); }
.bg-forest { background: var(--forest); color: var(--on-dark); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: #fff; }
.bg-forest p { color: var(--on-dark-muted); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--orange); display: inline-block;
}
.bg-forest .kicker { color: var(--orange); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 1.1rem; }
.section-head h2 { margin-top: .9rem; }

/* underline flourish */
.flourish { position: relative; display: inline; }
.flourish::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .42em;
  background: var(--orange-soft); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .15s;
}
.in-view .flourish::after, .flourish.lit::after { transform: scaleX(1); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .92rem 1.6rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform; line-height: 1; text-align: center;
}
.btn svg { width: 1.15em; height: 1.15em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px -12px rgba(222,117,46,.8); }
.btn--primary:hover { background: var(--orange-deep); box-shadow: 0 18px 36px -12px rgba(222,117,46,.85); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--forest); box-shadow: inset 0 0 0 2px var(--cream-line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--orange); color: var(--orange-deep); }

.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--orange); color: #fff; }
.btn--outline-light { box-shadow: inset 0 0 0 2px var(--dark-line); color: var(--on-dark); }
.btn--outline-light:hover { box-shadow: inset 0 0 0 2px var(--orange); color: #fff; }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--orange-deep);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ------------------------------ Header ----------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.scrolled {
  background: rgba(248,242,231,.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--cream-line), 0 10px 30px -22px rgba(60,46,24,.5);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; z-index: 2; }
.brand img { height: 56px; width: auto; transition: height .35s var(--ease); }
.scrolled .brand img { height: 47px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-style: italic; font-size: 1.32rem; color: var(--orange); font-weight: 600; }
.brand-text span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  position: relative; padding: .55rem .85rem; border-radius: var(--r-pill);
  font-weight: 500; font-size: .98rem; color: var(--forest);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: .35rem; width: 0; height: 2px;
  background: var(--orange); border-radius: 2px; transform: translateX(-50%);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--orange-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 18px; }
.nav-links a.active { color: var(--orange-deep); }

.nav-cta { display: inline-flex; align-items: center; gap: 1rem; }
.nav-tel { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--forest); }
.nav-tel svg { width: 1.1em; height: 1.1em; color: var(--orange); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; z-index: 2; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--paper);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease-out), opacity .4s, visibility .4s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--serif); font-size: 1.7rem; color: var(--forest);
  padding: .7rem 0; border-bottom: 1px solid var(--cream-line);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateY(14px);
}
body.menu-open .mobile-menu a.m-link { animation: m-in .5s var(--ease-out) forwards; }
body.menu-open .mobile-menu a.m-link:nth-child(1) { animation-delay: .08s; }
body.menu-open .mobile-menu a.m-link:nth-child(2) { animation-delay: .14s; }
body.menu-open .mobile-menu a.m-link:nth-child(3) { animation-delay: .20s; }
body.menu-open .mobile-menu a.m-link:nth-child(4) { animation-delay: .26s; }
body.menu-open .mobile-menu a.m-link:nth-child(5) { animation-delay: .32s; }
body.menu-open .mobile-menu a.m-link:nth-child(6) { animation-delay: .38s; }
body.menu-open .mobile-menu a.m-link:nth-child(7) { animation-delay: .44s; }
.mobile-menu a.m-link svg { width: 1rem; color: var(--orange); }
.mobile-foot { margin-top: auto; padding-top: 1.8rem; display: grid; gap: 1rem; }
@keyframes m-in { to { opacity: 1; transform: translateY(0); } }

/* ------------------------------- Hero ------------------------------ */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2rem,6vw,4.5rem)); padding-bottom: clamp(3rem,7vw,6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { color: var(--forest); margin-top: 1.4rem; }
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero .lead { margin-top: 1.5rem; max-width: 32ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.6rem; }
.hero-trust .t-item { display: flex; align-items: center; gap: .6rem; font-weight: 500; font-size: .95rem; color: var(--muted); }
.hero-trust svg { width: 1.3rem; color: var(--orange); flex: none; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/5;
  transform: rotate(1.4deg);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(34,28,18,.35)); }

/* floating badge card on hero */
.hero-badge {
  position: absolute; left: -1.5rem; bottom: 1.5rem; z-index: 4;
  background: var(--card); border-radius: var(--r);
  padding: 1rem 1.2rem; box-shadow: var(--sh);
  display: flex; align-items: center; gap: .85rem; max-width: 250px;
}
.hero-badge .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-wash); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 24px; color: var(--orange-deep); }
.hero-badge b { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--forest); line-height: 1; }
.hero-badge span { font-size: .82rem; color: var(--muted); }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 0; }
.hero-deco { position: absolute; top: 12%; right: 6%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(222,117,46,.16), transparent 70%); z-index: 0; }

/* hero logo watermark — subtle brand mark behind the scene */
.hero-brandmark {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: -5%; top: 4%; width: min(48vw, 560px); height: auto;
  opacity: .07; filter: saturate(1.1);
}
.hero-brandmark.float { animation: floaty3 9s ease-in-out infinite; }
@keyframes floaty3 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }

/* paw scatter decoration */
.paw-row { display: flex; gap: .5rem; color: var(--orange-soft); margin-top: 1rem; }
.paw-row svg { width: 22px; }

/* ------------------------------ Cards ------------------------------ */
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border-radius: var(--r-lg); padding: 1.9rem;
  box-shadow: var(--sh-sm); border: 1px solid var(--cream-line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--orange-soft); }

/* service / value card */
.svc-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--orange-wash); margin-bottom: 1.2rem; transition: background .35s var(--ease); }
.svc-icon svg { width: 30px; color: var(--orange-deep); }
.card:hover .svc-icon { background: var(--orange); }
.card:hover .svc-icon svg { color: #fff; }
.card h3 { color: var(--forest); margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card .link-arrow { margin-top: 1.1rem; }

/* image-topped service card */
.svc-photo {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--cream-line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.svc-photo:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.svc-photo .ph { aspect-ratio: 16/11; overflow: hidden; }
.svc-photo .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-photo:hover .ph img { transform: scale(1.06); }
.svc-photo .bd { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-photo .tag { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: .6rem; }
.svc-photo h3 { margin-bottom: .5rem; }
.svc-photo p { color: var(--muted); font-size: 1rem; flex: 1; }
.svc-photo .link-arrow { margin-top: 1.2rem; }

/* feature row (split image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--sh); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .stamp {
  position: absolute; right: -1rem; top: -1rem; background: var(--orange); color: #fff;
  border-radius: 50%; width: 116px; height: 116px; display: grid; place-content: center; text-align: center;
  font-family: var(--serif); line-height: 1.05; box-shadow: var(--sh); padding: 1rem;
}
.split-media .stamp b { font-size: 1.9rem; display: block; }
.split-media .stamp span { font-size: .72rem; letter-spacing: .04em; }

/* check list */
.checklist { display: grid; gap: .9rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--text); }
.checklist li svg { width: 1.5rem; height: 1.5rem; color: #fff; background: var(--orange); border-radius: 50%; padding: 5px; flex: none; margin-top: .15rem; }
.bg-forest .checklist li { color: var(--on-dark); }

/* ----------------------------- Pillars ----------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,3vw,2rem); }
.pillar { text-align: center; padding: 2rem 1.4rem; }
.pillar .num { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--orange); display: inline-block; margin-bottom: 1rem; }
.pillar .ic { width: 72px; height: 72px; border-radius: 22px; background: var(--moss-soft); display: grid; place-items: center; margin: 0 auto 1.2rem; transition: transform .4s var(--ease); }
.pillar:hover .ic { transform: rotate(-6deg) scale(1.05); }
.pillar .ic svg { width: 36px; color: var(--forest); }
.pillar h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.pillar p { color: var(--muted); font-size: .98rem; }

/* ------------------------------ Stats ------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; }
.stat b { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--orange); display: block; line-height: 1; }
.bg-forest .stat b { color: var(--orange); }
.stat span { display: block; margin-top: .6rem; font-size: .92rem; color: var(--on-dark-muted); letter-spacing: .02em; }
.section:not(.bg-forest) .stat span { color: var(--muted); }

/* ----------------------------- Timeline ---------------------------- */
.timeline { position: relative; margin-top: 1rem; padding-left: 0; }
.timeline::before { content:""; position:absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--orange), var(--orange-soft)); transform: scaleY(0); transform-origin: top center; transition: transform 1.1s var(--ease-out) .1s; }
.timeline.in-view::before { transform: scaleY(1); }
.tl-item { position: relative; padding: 0 0 2.2rem 3.6rem; opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.timeline.in-view .tl-item { opacity: 1; transform: none; }
.timeline.in-view .tl-item:nth-child(1) { transition-delay: .18s; }
.timeline.in-view .tl-item:nth-child(2) { transition-delay: .32s; }
.timeline.in-view .tl-item:nth-child(3) { transition-delay: .46s; }
.timeline.in-view .tl-item:nth-child(4) { transition-delay: .60s; }
.timeline.in-view .tl-item:nth-child(5) { transition-delay: .74s; }
.timeline.in-view .tl-item:nth-child(6) { transition-delay: .88s; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--card); border: 3px solid var(--orange); display: grid; place-items: center; transform: scale(0); transition: transform .55s var(--ease) ; }
.timeline.in-view .tl-item:nth-child(1) .tl-dot { transition-delay: .18s; }
.timeline.in-view .tl-item:nth-child(2) .tl-dot { transition-delay: .32s; }
.timeline.in-view .tl-item:nth-child(3) .tl-dot { transition-delay: .46s; }
.timeline.in-view .tl-item:nth-child(4) .tl-dot { transition-delay: .60s; }
.timeline.in-view .tl-item:nth-child(5) .tl-dot { transition-delay: .74s; }
.timeline.in-view .tl-item:nth-child(6) .tl-dot { transition-delay: .88s; }
.timeline.in-view .tl-dot { transform: scale(1); }
.tl-dot::after { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.tl-date { font-weight: 600; color: var(--orange-deep); font-size: .9rem; letter-spacing: .02em; }
.tl-item h4 { color: var(--forest); margin: .25rem 0 .35rem; font-family: var(--serif); }
.tl-item p { color: var(--muted); font-size: 1rem; }

/* --------------------------- Certificates -------------------------- */
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.cert {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--cream-line); border-radius: var(--r);
  padding: 1.2rem 1.3rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cert:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cert .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-wash); display: grid; place-items: center; flex: none; }
.cert .ic svg { width: 24px; color: var(--orange-deep); }
.cert b { display: block; color: var(--forest); font-family: var(--sans); font-weight: 600; line-height: 1.3; }
.cert span { font-size: .9rem; color: var(--muted); }

/* ------------------------------ Pricing ---------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; align-items: stretch; }
.price-card {
  background: var(--card); border-radius: var(--r-lg); padding: 2rem;
  border: 1px solid var(--cream-line); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.price-card.featured { border: 2px solid var(--orange); box-shadow: var(--sh); }
.price-card.featured::before {
  content: "Beliebt"; position: absolute; top: 1.3rem; right: -2.6rem;
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: .35rem 3rem; transform: rotate(45deg);
}
.price-card .p-name { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); }
.price-card .p-desc { color: var(--muted); font-size: .98rem; margin-top: .3rem; }
.price-card .p-amount { margin: 1.4rem 0 .2rem; display: flex; align-items: baseline; gap: .35rem; }
.price-card .p-amount b { font-family: var(--serif); font-size: 3rem; color: var(--orange); line-height: 1; }
.price-card .p-amount span { color: var(--muted); font-size: .95rem; }
.price-card .p-save { color: var(--moss); font-weight: 600; font-size: .9rem; }
.price-card ul.p-feat { margin: 1.4rem 0; display: grid; gap: .7rem; flex: 1; }
.price-card ul.p-feat li { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; color: var(--text); }
.price-card ul.p-feat li svg { width: 1.2rem; color: var(--orange); flex: none; margin-top: .2rem; }
.price-card .btn { margin-top: auto; }

/* simple price list rows */
.price-list { display: grid; gap: .2rem; }
.price-row {
  display: flex; align-items: baseline; gap: 1rem; justify-content: space-between;
  padding: 1.05rem .4rem; border-bottom: 1px solid var(--cream-line);
}
.price-row:last-child { border-bottom: none; }
.price-row .pr-name { font-weight: 600; color: var(--forest); }
.price-row .pr-name small { display: block; font-weight: 400; color: var(--muted); font-size: .9rem; }
.price-row .dots { flex: 1; border-bottom: 2px dotted var(--cream-line); transform: translateY(-4px); min-width: 20px; }
.price-row .pr-cost { font-family: var(--serif); font-size: 1.4rem; color: var(--orange); white-space: nowrap; }
.price-row .pr-cost small { font-family: var(--sans); font-size: .8rem; color: var(--muted); }

/* ----------------------------- Gallery ----------------------------- */
.masonry { columns: 3; column-gap: 1rem; }
.masonry .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r); overflow: hidden; position: relative; box-shadow: var(--sh-sm); cursor: zoom-in; background: var(--paper-2); }
.masonry .g-item img { width: 100%; display: block; transition: transform .7s var(--ease); }
.masonry .g-item::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(34,28,18,.4)); opacity: 0; transition: opacity .35s; }
.masonry .g-item:hover img { transform: scale(1.06); }
.masonry .g-item:hover::after { opacity: 1; }
.masonry .g-item .cap { position: absolute; left: 1rem; bottom: .85rem; color: #fff; font-weight: 600; font-size: .9rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: .35s var(--ease); }
.masonry .g-item:hover .cap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,18,12,.92); display: grid; place-items: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--sh-lg); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border-radius: 50%; width: 52px; height: 52px; display: grid; place-items: center; color: #fff; transition: background .25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--orange); }
.lightbox .lb-close { top: 1.5rem; right: 1.5rem; }
.lightbox .lb-close svg, .lightbox .lb-nav svg { width: 24px; }
.lightbox .lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ----------------------------- Marquee ----------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--forest); opacity: .8; white-space: nowrap; }
.marquee-item svg { width: 1.4rem; color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------- FAQ ------------------------------- */
.faq { display: grid; gap: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--cream-line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--sh); border-color: var(--orange-soft); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; text-align: left; font-family: var(--serif); font-size: 1.15rem; color: var(--forest); }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--orange-wash); display: grid; place-items: center; flex: none; transition: background .3s, transform .3s; }
.faq-q .pm svg { width: 16px; color: var(--orange-deep); transition: transform .3s; }
.faq-item.open .faq-q .pm { background: var(--orange); }
.faq-item.open .faq-q .pm svg { color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ------------------------------ Forms ------------------------------ */
.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--forest); }
.field input, .field textarea, .field select {
  background: var(--card); border: 1px solid var(--cream-line); border-radius: var(--r-sm);
  padding: .85rem 1rem; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: var(--ring); }
.field.check { grid-auto-flow: column; justify-content: start; align-items: start; gap: .7rem; }
.field.check input { width: 20px; height: 20px; margin-top: .25rem; accent-color: var(--orange); }
.field.check label { font-weight: 400; font-size: .9rem; color: var(--muted); }

/* contact info cards */
.info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--dark-line); }
.info-card:last-child { border-bottom: none; }
.info-card .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(222,117,46,.15); display: grid; place-items: center; flex: none; }
.info-card .ic svg { width: 24px; color: var(--orange); }
.info-card .lbl { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-muted); }
.info-card .val { font-size: 1.1rem; color: #fff; font-weight: 500; }
.info-card .val:hover { color: var(--orange); }

/* ------------------------------ CTA band --------------------------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(2.5rem,6vw,5rem); background: var(--forest); color: var(--on-dark); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 400px at 85% -10%, rgba(222,117,46,.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band .lead { color: var(--on-dark-muted); margin-top: 1rem; max-width: 50ch; }
.cta-band .hero-actions { margin-top: 2rem; }

/* ------------------------------ Footer ----------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark); position: relative; z-index: 2; padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--on-dark-muted); font-size: .98rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--on-dark-muted); padding: .35rem 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }
.footer-contact a { display: flex; gap: .6rem; align-items: center; }
.footer-contact svg { width: 1.1rem; color: var(--orange); flex: none; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid var(--dark-line); padding: 1.6rem 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; color: var(--on-dark-muted); font-size: .88rem; }
.footer-bottom a:hover { color: var(--orange); }

/* page hero (sub pages) */
.page-hero { padding-top: calc(var(--header-h) + clamp(2.5rem,6vw,4.5rem)); padding-bottom: clamp(2rem,5vw,3.5rem); position: relative; }
.page-hero .crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.page-hero .crumbs a:hover { color: var(--orange-deep); }
.page-hero .crumbs svg { width: .9rem; color: var(--muted-2); }
.page-hero h1 { color: var(--forest); }
.page-hero .lead { margin-top: 1.2rem; max-width: 60ch; }

/* prose */
.prose h2 { margin: 2rem 0 1rem; font-size: clamp(1.5rem,3vw,2rem); }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose ul { display: grid; gap: .5rem; margin-bottom: 1rem; }
.prose ul li { padding-left: 1.4rem; position: relative; color: var(--text); }
.prose ul li::before { content:""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.prose a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--forest); }

/* ----------------------- Reveal animations ------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: transform, opacity; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.zoom { transform: scale(.94); }
.reveal.from-left.in-view, .reveal.from-right.in-view, .reveal.zoom.in-view { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-stagger].in-view > * { opacity: 1; transform: none; }
[data-stagger].in-view > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: .13s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: .21s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: .29s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: .37s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: .45s; }
[data-stagger].in-view > *:nth-child(7) { transition-delay: .53s; }
[data-stagger].in-view > *:nth-child(8) { transition-delay: .61s; }

/* floating subtle animation */
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(1.4deg); } 50% { transform: translateY(-12px) rotate(1.4deg); } }
.float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float-badge { animation: floaty2 5s ease-in-out infinite; }

/* ---------------------------- Responsive --------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .masonry { columns: 2; }
  .nav-tel { display: none; }
}

@media (max-width: 880px) {
  :root { --header-h: 72px; }
  .nav-links, .nav-cta .btn, .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-media .frame { aspect-ratio: 4/3.4; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .pillars { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .price-grid, .cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .form .row { grid-template-columns: 1fr; }
  .hero-badge { left: 0; right: 0; margin-inline: auto; }
  .split-media .stamp { width: 92px; height: 92px; }
  .split-media .stamp b { font-size: 1.5rem; }
  .btn { width: 100%; }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, [data-stagger] > *, .timeline .tl-item { opacity: 1 !important; transform: none !important; }
  .timeline::before, .tl-dot { transform: none !important; }
  .float, .float-badge, .hero-brandmark.float { animation: none !important; }
  .hero-media .frame { transform: none; }
}
