/* ==========================================================================
   Yoga & Onko — Sabina M. Schwaninger
   Design system, based on "Sabina_Website neue Bilder.pdf"
   ========================================================================== */

/* --------------------------------------------------------------- Fonts -- */
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;
  src:url('../fonts/dm-serif-display-normal-latin-ext-400.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;
  src:url('../fonts/dm-serif-display-normal-latin-400.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

@font-face{font-family:'Arimo';font-style:normal;font-weight:400 700;font-display:swap;
  src:url('../fonts/arimo-normal-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Arimo';font-style:normal;font-weight:400 700;font-display:swap;
  src:url('../fonts/arimo-normal-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Arimo';font-style:italic;font-weight:400 700;font-display:swap;
  src:url('../fonts/arimo-italic-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Arimo';font-style:italic;font-weight:400 700;font-display:swap;
  src:url('../fonts/arimo-italic-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

/* --------------------------------------------------------------- Tokens -- */
:root{
  --lav:        #d9d0e2;   /* page background                    */
  --lav-deep:   #cfc4dc;   /* footer / deeper band               */
  --panel:      #e1daeb;   /* muted half of a split panel        */
  --card:       #f9f7fb;   /* light half of a split panel        */
  --card-soft:  #f6f2fa;   /* full-width light section           */
  --mauve:      #b088ac;   /* primary accent                     */
  --mauve-deep: #9a6f95;   /* hover / active accent              */
  --mauve-tint: #cdb5cb;   /* wordmark, soft rules               */
  --ink:        #313131;   /* headings                           */
  --ink-body:   #3c3742;   /* body copy                          */
  --ink-mute:   #6d6577;   /* meta, footer copyright             */
  --white:      #fff;

  /* In the design every block — header, panels, tinted bands, footer — is
     inset from the viewport edge by the same 4.3%, and caps out at 1320px. */
  --shell: 1320px;
  --gutter: clamp(1.15rem, 4.3vw, 3.75rem);
  --header-h: 112px;

  /* Type scale measured off the design PDF, normalised to a 1440px viewport:
     wordmark & page titles 34.3 · hero 30.8 · h2 major 30.8 · h2 27.3
     · h3 24 · body 18.1 · lead italic 18.9 · nav 17 · kicker 15.4        */
  --fs-title: clamp(1.6rem, 1.24rem + 1.6vw, 2.14rem);
  --fs-hero:  clamp(1.5rem, 1.2rem + 1.35vw, 1.93rem);
  --fs-h2-lg: clamp(1.42rem, 1.18rem + 1.05vw, 1.93rem);
  --fs-h2:    clamp(1.3rem, 1.12rem + .8vw, 1.71rem);
  --fs-h3:    clamp(1.18rem, 1.06rem + .5vw, 1.5rem);

  --r-pill: 999px;
  --shadow-btn: 0 2px 10px rgba(84,55,80,.18);
  --shadow-menu: 0 18px 44px -14px rgba(63,42,60,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------------------------------------------------------------- Reset -- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--lav);
  color:var(--ink-body);
  font-family:'Arimo',Helvetica,Arial,sans-serif;
  font-size:18px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}

/* Images are wrapped in <picture> to offer a WebP source with the original as
   fallback. `display:contents` drops the wrapper out of the layout tree so the
   <img> stays the direct flex/grid child it was before, and rules that size it
   as a flex item (.feature-list img, .contact-details img, .brand-mark) keep
   working untouched. Without this the wrapper would become the flex item and
   the icons could shrink. */
picture{display:contents}

/* `display:contents` also promotes <source> into the parent's layout. It has
   no UA display:none of its own - it is normally unrendered only because
   <picture> does not render its children - so it would otherwise become a
   zero-width flex item and add one extra `gap` next to every image. */
picture > source{display:none}

a{color:inherit}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--mauve-deep);outline-offset:3px;border-radius:3px}

h1,h2,h3,h4{color:var(--ink);margin:0 0 .5em;line-height:1.22}
/* Serif is reserved for the wordmark, page titles and the hero — every other
   heading is Arimo Medium, as in the design. */
h1,.h-serif{font-family:'DM Serif Display',Georgia,'Times New Roman',serif;font-weight:400}
h1{font-size:var(--fs-title);letter-spacing:.005em}
h1.hero-title{font-size:var(--fs-hero);line-height:1.24}
h2{font-size:var(--fs-h2);font-weight:500}
h3{font-size:var(--fs-h3);font-weight:500}
.panel h2{font-size:var(--fs-h2-lg)}
p{margin:0 0 1.05em}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 1.05em;padding-left:1.35em}
li{margin-bottom:.3em}
strong{font-weight:700;color:var(--ink)}

/* One container rule for every top-level block, so panels, tinted bands,
   headings, header and footer all share a single left edge. */
.shell,
.header-inner,
.footer-inner,
.panel,
.trio,
.form-card,
.prose,
.section-inner{
  width:min(var(--shell), 100% - 2 * var(--gutter));
  margin-inline:auto;
}
.center-flex{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.sr-only{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--white);color:var(--ink);padding:.7rem 1.1rem;border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* =========================================================================
   Header
   ========================================================================= */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  transition:box-shadow .35s var(--ease),background-color .35s var(--ease);
}
.site-header.is-stuck{box-shadow:0 6px 26px -16px rgba(63,42,60,.55)}

.header-inner{
  min-height:var(--header-h);
  display:flex;align-items:center;gap:1.5rem;
}

/* ------------------------------------------------------------ Wordmark -- */
.brand{display:flex;align-items:center;gap:.85rem;text-decoration:none;flex:0 0 auto}
.brand-mark{
  width:72px;height:72px;flex:0 0 auto;
  transition:transform .45s var(--ease-out);
}
.brand:hover .brand-mark{transform:scale(1.04) rotate(-1.5deg)}
.brand-text{display:flex;flex-direction:column;line-height:1.05}
.brand-name{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:2.14rem;color:var(--mauve);letter-spacing:.004em;
  transition:color .3s var(--ease);
}
.brand:hover .brand-name{color:var(--mauve-deep)}
.brand-sub{font-size:1.0625rem;color:var(--ink-body);margin-top:.22rem}

/* ========================================================================
   Primary navigation — desktop
   ======================================================================== */
.primary-nav{margin-left:auto}
.nav-list{display:flex;align-items:center;gap:.35rem;list-style:none;margin:0;padding:0}
.nav-list > li{position:relative;margin:0}

.nav-link{
  position:relative;
  display:inline-flex;align-items:center;gap:.32rem;
  padding:.55rem .6rem;
  font-size:1.0625rem;color:var(--ink-body);text-decoration:none;
  border-radius:6px;
  transition:color .28s var(--ease);
  white-space:nowrap;
}
/* animated underline */
.nav-link::after{
  content:"";position:absolute;left:.6rem;right:.6rem;bottom:.28rem;height:1.5px;
  background:currentColor;
  transform:scaleX(0);transform-origin:right center;
  transition:transform .38s var(--ease-out);
}
.nav-list > li:hover > .nav-link::after,
.nav-list > li:focus-within > .nav-link::after,
.nav-link[aria-current="page"]::after{transform:scaleX(1);transform-origin:left center}
.nav-list > li:hover > .nav-link,
.nav-list > li:focus-within > .nav-link,
.nav-link[aria-current="page"]{color:var(--mauve-deep)}

.nav-list >  li.nav-cta:hover > .nav-link {
	color: white;
	background: var(--mauve-deep);
}

.nav-caret{
  width:.55rem;height:.55rem;flex:0 0 auto;margin-top:.1rem;
  transition:transform .38s var(--ease-out),opacity .28s var(--ease);
  opacity:.65;
}
.nav-list > li.is-open > .nav-link .nav-caret{transform:rotate(180deg);opacity:1}

/* ------------------------------------------------------------ Dropdown -- */
/* .sub-wrap is the animated shell; .sub-menu is the white panel inside it.
   Splitting the two lets the same markup fade-and-lift on desktop and
   height-animate as an accordion on mobile. */
.sub-wrap{
  position:absolute;top:100%;left:0;
  min-width:16rem;
  /* closed state */
  opacity:0;visibility:hidden;
  transform:translateY(-.6rem) scale(.985);
  transform-origin:top left;
  transition:
    opacity .3s var(--ease),
    transform .38s var(--ease-out),
    visibility 0s linear .38s;
}
.nav-list > li.is-open > .sub-wrap{
  opacity:1;visibility:visible;transform:none;
  transition:
    opacity .28s var(--ease),
    transform .42s var(--ease-out),
    visibility 0s;
}
.sub-menu{
  list-style:none;margin:0;padding:.5rem;
  background:var(--white);
  border-radius:12px;
  box-shadow:var(--shadow-menu);
}
/* hover bridge so the pointer can travel into the panel */
.nav-list > li.has-sub::after{
  content:"";position:absolute;left:0;right:0;top:100%;height:.7rem;
}
.sub-menu a{
  display:block;padding:.6rem .8rem;border-radius:8px;
  font-size:.95rem;color:var(--ink-body);text-decoration:none;
  transition:background-color .26s var(--ease),color .26s var(--ease),transform .26s var(--ease-out);
}
.sub-menu a:hover,.sub-menu a:focus-visible{
  background:var(--card-soft);color:var(--mauve-deep);transform:translateX(3px);
}
/* staggered reveal of the sub-items */
.sub-menu li{opacity:0;transform:translateY(-.3rem);transition:opacity .3s var(--ease),transform .34s var(--ease-out)}
.nav-list > li.is-open .sub-menu li{opacity:1;transform:none}
.nav-list > li.is-open .sub-menu li:nth-child(1){transition-delay:.04s}
.nav-list > li.is-open .sub-menu li:nth-child(2){transition-delay:.08s}
.nav-list > li.is-open .sub-menu li:nth-child(3){transition-delay:.12s}
.nav-list > li.is-open .sub-menu li:nth-child(4){transition-delay:.16s}
.nav-list > li.is-open .sub-menu li:nth-child(5){transition-delay:.2s}

/* --------------------------------------------------------- Kontakt pill -- */
.nav-cta{margin-left:.9rem}
.nav-cta .nav-link{
  background:var(--mauve);color:var(--white);
  padding:.72rem 1.6rem;border-radius:var(--r-pill);
  box-shadow:var(--shadow-btn);
  transition:background-color .3s var(--ease),transform .3s var(--ease-out),box-shadow .3s var(--ease);
}
.nav-cta .nav-link::after{display:none}
.nav-cta .nav-link:hover,.nav-cta .nav-link:focus-visible{
  background:var(--mauve-deep);color:var(--white);
  transform:translateY(-2px);
  box-shadow:0 8px 20px -6px rgba(84,55,80,.4);
}

/* -------------------------------------------------------- Burger button -- */
.nav-toggle{
  display:none;margin-left:auto;
  width:46px;height:46px;padding:0;
  background:transparent;border:0;border-radius:10px;cursor:pointer;
  position:relative;
  transition:background-color .28s var(--ease);
}
.nav-toggle:hover{background:var(--card-soft)}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  position:absolute;left:50%;width:24px;height:2px;
  background:var(--ink);border-radius:2px;
  transition:transform .42s var(--ease-out),opacity .2s var(--ease);
}
.nav-toggle span{top:50%;margin-left:-12px;transform:translateY(-50%)}
.nav-toggle span::before,.nav-toggle span::after{content:"";left:0;margin:0}
.nav-toggle span::before{top:-7px}
.nav-toggle span::after{top:7px}
.nav-toggle[aria-expanded="true"] span{transform:translateY(-50%) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span::before{transform:translateY(7px) rotate(-90deg)}
.nav-toggle[aria-expanded="true"] span::after{opacity:0;transform:translateY(-7px)}

.sub-toggle{display:none}
.nav-scrim{
  position:fixed;inset:0;z-index:90;
  background:rgba(49,42,55,.42);
  backdrop-filter:blur(2px);
  opacity:0;visibility:hidden;
  transition:opacity .4s var(--ease),visibility 0s linear .4s;
}
body.nav-open .nav-scrim{opacity:1;visibility:visible;transition:opacity .4s var(--ease),visibility 0s}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn{
  display:inline-block;
  padding:.8rem 1.9rem;
  background:var(--mauve);color:var(--white);
  font-size:1.05rem;line-height:1.3;text-align:center;text-decoration:none;
  border:0;border-radius:var(--r-pill);cursor:pointer;
  box-shadow:var(--shadow-btn);
  transition:background-color .3s var(--ease),transform .3s var(--ease-out),box-shadow .3s var(--ease);
}
.btn:hover,.btn:focus-visible{
  background:var(--mauve-deep);
  transform:translateY(-2px);
  box-shadow:0 10px 24px -8px rgba(84,55,80,.45);
}
.btn:active{transform:translateY(0)}
.btn-row{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.6rem}
.btn-row.center{justify-content:center}
.btn-block{min-width:12rem}

/* =========================================================================
   Page furniture
   ========================================================================= */
.page-title{
  padding:clamp(2rem,4vw,3.1rem) 0 clamp(1rem,2vw,1.5rem);
}
.page-title h1,.page-title .h-title{margin:0}

/* Split panel — the signature layout of the design:
   one half muted lavender, one half near-white, image in one, copy in the other. */
.panel{
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--panel);
  overflow:hidden;
}
.panel > .panel-half{
  padding:clamp(2rem,5.5vw,5.5rem) clamp(1.5rem,3.5vw,3.75rem);
  display:flex;flex-direction:column;justify-content:center;
}
.panel > .panel-half.group{
  padding:clamp(2rem,5.5vw,2.5rem) clamp(1.5rem,3.5vw,3.75rem);
  display:flex;flex-direction:column;justify-content:center;
}
.panel-half.light{background:var(--card)}
.panel-half.muted{background:var(--panel)}
.panel-half.center{align-items:center;text-align:center}
.panel-figure{width:min(100%,30.5rem);margin-inline:auto}
.panel-figure img{width:100%}

/* Full-width soft section */
.section{padding:clamp(2.2rem,4.5vw,3.6rem) 0}
.section.title-next{
	padding: clamp(2.2rem,4.5vw,3.6rem) 0 clamp(0.2rem, 0.5vw, 3.6rem)
}
section.panel.sticky{
	margin: auto auto clamp(2.2rem, 4.5vw, 3.6rem) auto;
}
.section.soft{background:var(--card-soft)}
.section.lav{background:var(--lav)}

.section h2{margin-bottom:.9rem}

/* A section heading that reads as a page title but must not be a second <h1>.
   A document gets exactly one <h1>; the home page previously carried three,
   which leaves a search engine no way to tell what the page is primarily
   about. This class renders an <h2> identically to an <h1>, so the markup can
   be correct without the design changing. Declared after `.section h2` so the
   margin below wins over it. */
h2.h-title{
  font-family:'DM Serif Display',Georgia,'Times New Roman',serif;
  font-weight:400;
  font-size:var(--fs-title);
  letter-spacing:.005em;
  margin:0 0 .5em;
}
.rule{border:0;border-top:1px solid rgba(120,100,125,.22);margin:clamp(1.8rem,3.5vw,2.8rem) 0}

.lead{font-size:1.05rem}
.kicker{font-style:italic;font-size:.86rem;color:var(--ink-body);margin-bottom:.55rem}
.underlined{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}

/* ------------------------------------------------------------ Quote band -- */
.quote-band{
  background:var(--mauve);color:var(--white);
  padding:clamp(2.6rem,5vw,4.2rem) 0;
}
.quote-band blockquote{
  margin:0;padding:clamp(1.6rem,3vw,2.4rem) 0;
  border-top:1px solid rgba(255,255,255,.55);
  border-bottom:1px solid rgba(255,255,255,.55);
  text-align:center;font-style:italic;
  font-size:clamp(1rem,.94rem + .3vw,1.12rem);line-height:1.72;
}
.quote-mark{
  display:block;
  font-family:'Arimo',Helvetica,Arial,sans-serif;
  font-size:3.2rem;font-style:normal;font-weight:700;line-height:.6;
  margin-bottom:1rem;
}
.quote-card{text-align:center}
.quote-card .quote-mark{color:var(--ink);font-size:2.9rem;margin-bottom:1.4rem}
.quote-card p{font-style:italic;font-size:1.05rem}
/* the Über-mich intro runs a notch larger than the home quote card */
.panel-half .intro-italic p{font-style:italic;font-size:1.14rem}

/* ------------------------------------------------------------ Card trio -- */
.trio{
  display:grid;grid-template-columns:repeat(3,1fr);
  background:var(--card);
}
.trio > .tile{
  padding:clamp(1.6rem,2.8vw,2.6rem) clamp(1.25rem,2.2vw,2rem);
  display:flex;flex-direction:column;
  border-left:1px solid rgba(120,100,125,.16);
  transition:background-color .4s var(--ease);
}
.trio > .tile:first-child{border-left:0}
.trio > .tile:hover{background:var(--card-soft)}
.tile-img{overflow:hidden;margin-bottom:1.6rem;aspect-ratio:1/1}
.tile-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease-out);
}
.tile:hover .tile-img img{transform:scale(1.05)}
.tile h3{margin-bottom:.9rem}
.tile .btn{margin-top:auto;align-self:flex-start}
.tile p{margin-bottom:1.4rem}

/* --------------------------------------------------------- Feature rows -- */
.feature-list{margin:1.6rem 0 0;padding:0;list-style:none}
.feature-list li{
  display:flex;gap:1.4rem;align-items:center;margin:0;
  padding:.85rem 0;
  border-top:1px solid rgba(120,100,125,.2);
  transition:background-color .35s var(--ease);
}
.feature-list li:last-child{border-bottom:1px solid rgba(120,100,125,.2)}
.feature-list li:hover{background:rgba(255,255,255,.5)}
.feature-list img{width:106px;height:72px;object-fit:cover;flex:0 0 auto}
.feature-list h3{font-size:1.02rem;font-weight:700;margin:0 0 .15rem;font-family:'Arimo',sans-serif}
.feature-list p{margin:0;font-size:.97rem}

/* ------------------------------------------------------- Contact details -- */
.contact-details{list-style:none;margin:0 0 2rem;padding:0}
.contact-details li{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.05rem}
.contact-details img{width:22px;height:22px;margin-top:.22rem;flex:0 0 auto;opacity:.82}
.contact-details a{
  text-decoration:none;
  background-image:linear-gradient(currentColor,currentColor);
  background-size:0 1px;background-repeat:no-repeat;background-position:0 100%;
  transition:background-size .4s var(--ease-out),color .3s var(--ease);
}
.contact-details a:hover{background-size:100% 1px;color:var(--mauve-deep)}
.contact-actions{display:flex;flex-direction:column;gap:1rem;align-items:flex-start}
.contact-actions .btn{min-width:12rem}

/* =========================================================================
   Contact form

   Same appearance as the WPForms version this replaces. The declarations no
   longer need !important: the plugin stylesheet that they used to fight is
   gone, so nothing competes with them. The two-column name row and the submit
   spacing came from that plugin sheet and are now defined here.
   ========================================================================= */
.form-card{
  background:var(--card);
  padding:clamp(1.8rem,4vw,3.2rem) clamp(1.5rem,3.5vw,3.25rem);
}
.form-card > h2{margin-bottom:1.4rem}
.contact-form{max-width:44rem;margin:0}
.cf-field{padding:0 0 1.25rem}
.cf-label{
  display:block;
  font-weight:700;font-size:.95rem;color:var(--ink);
  margin-bottom:.4rem;
}
.cf-sublabel{
  display:block;
  font-size:.83rem;color:var(--ink-mute);margin-top:.3rem;
}
.cf-required{color:var(--mauve-deep);border:0}

/* Vorname / Nachname sit side by side, stacking on narrow screens. */
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media (max-width:600px){.cf-row{grid-template-columns:1fr}}

.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form textarea{
  width:100%;max-width:100%;
  padding:.72rem .9rem;
  background:var(--white);
  border:1px solid #d5cbdd;border-radius:8px;
  font-family:'Arimo',Helvetica,Arial,sans-serif;font-size:1rem;
  color:var(--ink-body);
  box-shadow:none;
  transition:border-color .3s var(--ease),box-shadow .3s var(--ease),background-color .3s var(--ease);
}
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus{
  outline:0;
  border-color:var(--mauve);
  box-shadow:0 0 0 3px rgba(176,136,172,.22);
}
.contact-form textarea{min-height:9.5rem;resize:vertical}

.cf-check{display:flex;gap:.6rem;align-items:flex-start}
.cf-check input[type=checkbox]{
  margin-top:.35rem;width:1.05rem;height:1.05rem;accent-color:var(--mauve);flex:0 0 auto;
}
.cf-check-label{font-size:.94rem;font-weight:400}

.cf-submit{
  padding:.82rem 2.2rem;
  background:var(--mauve);color:var(--white);
  border:0;border-radius:var(--r-pill);
  font-family:'Arimo',Helvetica,Arial,sans-serif;font-size:1rem;
  box-shadow:var(--shadow-btn);cursor:pointer;
  transition:background-color .3s var(--ease),transform .3s var(--ease-out),box-shadow .3s var(--ease);
}
.cf-submit:hover{
  background:var(--mauve-deep);transform:translateY(-2px);
  box-shadow:0 10px 24px -8px rgba(84,55,80,.45);
}

/* Per-field validation message. */
.cf-error{
  color:#a2364a;font-size:.86rem;margin-top:.35rem;display:block;
}
.contact-form .cf-input-error{border-color:#c05a6d}

/* Summary shown above the form when a submission was rejected. */
.cf-alert{
  max-width:44rem;margin:0 0 1.4rem;
  background:#fbf2f4;
  border:1px solid #e2bcc4;border-radius:12px;
  padding:1rem 1.2rem;color:#8d2f42;font-size:.94rem;
}

/* The honeypot. Kept in the layout but out of sight and out of the tab order;
   `display:none` is skipped by some bots, an off-screen field is not. */
.cf-hp{
  position:absolute;left:-9999px;top:auto;
  width:1px;height:1px;overflow:hidden;
}

.form-confirmation{
  background:var(--card-soft);
  border:1px solid var(--mauve-tint);border-radius:12px;
  padding:1.2rem 1.4rem;color:var(--ink-body);
}
.form-confirmation p{margin:0}
.form-confirmation p + p{margin-top:.5rem}

/* =========================================================================
   Accordion (FAQ)
   ========================================================================= */
.accordion{margin:1.6rem 0 0}
.acc-item{border-bottom:1px solid rgba(120,100,125,.24)}
.acc-item:first-child{border-top:1px solid rgba(120,100,125,.24)}
.acc-head{
  width:100%;display:flex;align-items:flex-start;gap:1rem;justify-content:space-between;
  padding:1.05rem .25rem;
  background:transparent;border:0;cursor:pointer;text-align:left;
  font-size:1.03rem;color:var(--ink);
  transition:color .28s var(--ease);
}
.acc-head:hover{color:var(--mauve-deep)}
.acc-icon{
  position:relative;width:1.05rem;height:1.05rem;flex:0 0 auto;margin-top:.34rem;
  transition:transform .42s var(--ease-out);
}
.acc-icon::before,.acc-icon::after{
  content:"";position:absolute;top:50%;left:0;width:100%;height:2px;
  background:var(--mauve);border-radius:2px;transform:translateY(-50%);
  transition:transform .42s var(--ease-out),opacity .28s var(--ease);
}
.acc-icon::after{transform:translateY(-50%) rotate(90deg)}
.acc-item.is-open .acc-icon::after{transform:translateY(-50%) rotate(0);opacity:0}
.acc-item.is-open .acc-icon{transform:rotate(180deg)}
.acc-panel{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows .45s var(--ease-out);
}
.acc-item.is-open .acc-panel{grid-template-rows:1fr}
.acc-panel > div{overflow:hidden;min-height:0}
.acc-body{padding:0 .25rem 1.25rem;font-size:.99rem}
.acc-body p:first-child{margin-top:0}

/* =========================================================================
   Long-form prose (Impressum, Datenschutz)
   ========================================================================= */
.prose{
  background:var(--card);
  padding:clamp(1.8rem,4vw,3.2rem) clamp(1.5rem,3.5vw,3.25rem);
}
.prose h2{margin-top:2rem;font-size:clamp(1.2rem,1.08rem + .5vw,1.45rem)}
.prose h3{margin-top:1.5rem;font-size:1.08rem;font-weight:700;font-family:'Arimo',sans-serif}
.prose h2:first-child,.prose h3:first-child{margin-top:0}
.prose a{
  color:var(--mauve-deep);text-decoration:underline;
  text-underline-offset:2px;text-decoration-thickness:1px;
  transition:color .28s var(--ease);
}
.prose a:hover{color:var(--ink)}
.prose ul{padding-left:1.2em}
.prose p,.prose li{font-size:.99rem}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer{
  background:var(--white);
  border-top:1px solid rgba(120,100,125,.22);
  padding:1.5rem 0;
  font-size:.95rem;
}
.footer-inner{
  display:flex;flex-wrap:wrap;gap:.8rem 1.5rem;align-items:center;justify-content:space-between;
}
.footer-nav{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem;list-style:none;margin:0;padding:0}
.footer-nav li{margin:0;display:flex;align-items:center;gap:.55rem}
.footer-nav li + li::before{content:"|";color:var(--ink-mute);opacity:.7}
.footer-nav a{
  text-decoration:none;color:var(--ink-body);padding:.15rem 0;
  background-image:linear-gradient(currentColor,currentColor);
  background-size:0 1px;background-repeat:no-repeat;background-position:0 100%;
  transition:background-size .4s var(--ease-out),color .3s var(--ease);
}
.footer-nav a:hover,.footer-nav a:focus-visible{background-size:100% 1px;color:var(--mauve-deep)}
.footer-copy{color:var(--ink-mute)}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s var(--ease),transform .8s var(--ease-out)}
.reveal.is-in{opacity:1;transform:none}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width:1120px){
  .nav-link{padding:.55rem .45rem;font-size:.93rem}
  .nav-cta{margin-left:.5rem}
  .nav-cta .nav-link{padding:.68rem 1.25rem}
}

@media (max-width:980px){
  :root{--header-h:86px}
  .brand-mark{width:56px;height:56px}
  .brand-name{font-size:1.6rem}
  .brand-sub{font-size:.92rem}

  .nav-toggle{display:block}
  /* the drawer is a child of .header-inner, so lift the brand and the burger
     above it or the burger becomes unclickable once the drawer is open */
  .brand,.nav-toggle{position:relative;z-index:2}

  /* ---- Mobile drawer ---- */
  .primary-nav{
    position:fixed;top:0;right:0;z-index:1;
    width:min(23rem,88vw);height:100dvh;
    margin:0;padding:calc(var(--header-h) + 1rem) 1.5rem 2.5rem;
    background:var(--white);
    box-shadow:-20px 0 50px -24px rgba(63,42,60,.5);
    overflow-y:auto;overscroll-behavior:contain;
    transform:translateX(100%);
    visibility:hidden;
    transition:transform .48s var(--ease-out),visibility 0s linear .48s;
  }
  body.nav-open .primary-nav{transform:none;visibility:visible;transition:transform .48s var(--ease-out),visibility 0s}

  .nav-list{flex-direction:column;align-items:stretch;gap:0}
  .nav-list > li{
    border-bottom:1px solid rgba(120,100,125,.16);
    /* staggered entrance */
    opacity:0;transform:translateX(1.25rem);
    transition:opacity .4s var(--ease),transform .5s var(--ease-out);
  }
  body.nav-open .nav-list > li{opacity:1;transform:none}
  body.nav-open .nav-list > li:nth-child(1){transition-delay:.10s}
  body.nav-open .nav-list > li:nth-child(2){transition-delay:.16s}
  body.nav-open .nav-list > li:nth-child(3){transition-delay:.22s}
  body.nav-open .nav-list > li:nth-child(4){transition-delay:.28s}
  body.nav-open .nav-list > li:nth-child(5){transition-delay:.34s}

  .nav-list > li.has-sub::after{display:none}
  .nav-link{padding:.95rem .25rem;font-size:1.05rem;flex:1}
  .nav-link::after{display:none}
  .nav-caret{display:none}

  .nav-list > li.has-sub{display:flex;flex-wrap:wrap;align-items:center}
  .sub-toggle{
    display:flex;align-items:center;justify-content:center;
    width:44px;height:44px;flex:0 0 auto;
    background:transparent;border:0;border-radius:8px;cursor:pointer;
    transition:background-color .28s var(--ease);
  }
  .sub-toggle:hover{background:var(--card-soft)}
  .sub-toggle svg{
    width:.75rem;height:.75rem;opacity:.7;
    transition:transform .4s var(--ease-out);
  }
  .nav-list > li.is-open .sub-toggle svg{transform:rotate(180deg)}

  /* Accordion. Height is driven from nav.js against the measured content —
     Chromium does not interpolate a 0fr -> 1fr grid track, so the pure-CSS
     version of this snaps open. Default is `auto` so that without JS the
     submenus stay readable rather than permanently collapsed. */
  .sub-wrap{
    position:static;width:100%;flex-basis:100%;
    min-width:0;
    opacity:1;visibility:visible;transform:none;
    display:block;height:auto;overflow:hidden;
    transition:height .42s var(--ease-out);
  }
  /* the desktop .is-open rule out-specifies the one above and would otherwise
     drop `height` from the transition list, making the open direction snap */
  .nav-list > li.is-open > .sub-wrap{
    transform:none;
    transition:height .42s var(--ease-out);
  }
  .sub-menu{
    padding:0;margin:0;
    background:transparent;border-radius:0;box-shadow:none;
  }
  .sub-menu > li{opacity:1;transform:none;transition:none}
  .sub-menu > li:first-child{padding-top:.1rem}
  .sub-menu > li:last-child{padding-bottom:.7rem}
  .sub-menu a{padding:.5rem .6rem .5rem 1.5rem;font-size:.97rem}
  .sub-menu a:hover{transform:none}

  .nav-cta{margin:1.4rem 0 0;border-bottom:0!important}
  .nav-cta .nav-link{justify-content:center;width:100%;padding:.85rem 1.5rem;font-size:1rem}

  /* ---- Layout ---- */
  .panel{grid-template-columns:1fr}
  .panel > .panel-half{padding:clamp(1.6rem,5vw,2.4rem) clamp(1.25rem,5vw,2.2rem)}
  .panel > .panel-half.group{padding:clamp(0rem,1vw,2.4rem) clamp(1.25rem,5vw,2.2rem)}
  .panel .panel-half.order-first{order:-1}
  .panel-figure{width:min(100%,30rem);margin-inline:auto}

  .trio{grid-template-columns:1fr}
  .trio > .tile{border-left:0;border-top:1px solid rgba(120,100,125,.16)}
  .trio > .tile:first-child{border-top:0}
}

@media (max-width:620px){
  :root{--header-h:74px}
  body{font-size:16.5px}
  .brand-mark{width:46px;height:46px}
  .brand-name{font-size:1.32rem}
  .brand-sub{font-size:.82rem}
  .feature-list li{flex-direction:column;align-items:flex-start;gap:.7rem}
  .feature-list img{width:100%;height:130px}
  .footer-inner{justify-content:flex-start}
  .contact-actions .btn,.btn-block{width:100%}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;scroll-behavior:auto!important;
  }
  .reveal{opacity:1;transform:none}
}

html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 1rem)}


#shine {
    max-width: 1037px;
    min-width: 389px;
	transition: width .35s;
.st0 {  
  opacity: .2;
  animation: shine 2.4s ease-out infinite;
  animation-delay: 2.4s;
  fill: var(--mauve);
}

.leaf-1 { animation-delay: .0s; }
.leaf-2 { animation-delay: .2s; }
.leaf-3 { animation-delay: .4s; }
.leaf-6 { animation-delay: .4s; }
.leaf-4 { animation-delay: .6s; }
.leaf-5 { animation-delay: .8s; }
}
@keyframes shine { 
0% {
  opacity: .2;
}
50% {
  opacity: 1;  
}
100% {
  opacity: .2;
}
}