/* ============ TOKENS ============ */
  :root{
    --color-cream:#F7F1E7;
    --color-cream-soft:#FBF8F3;
    --color-blush:#EAD8C9;
    --color-blush-soft:#F2E5D9;
    --color-green:#33503E;
    --color-green:#5e7364;
    --color-green-deep:#233A2C;
    --color-terracotta:#BD7B4C;
    --color-terracotta-text:#9C5F35;
    --color-terracotta-text:#b99573;
    --color-sage:#C6DBC7;
    --color-terracotta-soft:#D79B6E;
    --color-ink:#2B2A26;
    --color-white:#FFFFFF;

    --font-display:'Cormorant Garamond', serif;
    --font-sans:'Jost', sans-serif;

    --container:1180px;
    --radius-lg:26px;
    --radius-md:16px;
    --radius-sm:10px;

    --shadow-soft:0 12px 32px -12px rgba(35,58,44,0.18);
    --shadow-lift:0 20px 44px -14px rgba(35,58,44,0.28);

    --ease:cubic-bezier(.22,.68,.32,1);
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--color-cream);
    color:var(--color-ink);
    font-family:var(--font-sans);
    font-weight:300;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img,svg{display:block;max-width:100%;}
  a{color:inherit;text-decoration:none;}
  ul{margin:0;padding:0;list-style:none;}
  h1,h2,h3,h4{margin:0;font-family:var(--font-display);font-weight:500;color:var(--color-green);}
  p{margin:0;}
  button{font-family:inherit;cursor:pointer;background:none;border:none;color:inherit;}
h1 {
    font-family:var(--font-sans);
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

  .container{
    width:100%;
    max-width:var(--container);
    margin-inline:auto;
    padding-inline:clamp(1.25rem, 4vw, 3rem);
  }

  /* ============ ACCESSIBILITY HELPERS ============ */
  .skip-link{
    position:absolute;
    left:1rem;
    top:-60px;
    background:var(--color-terracotta-text);
    color:var(--color-cream);
    padding:.8rem 1.4rem;
    border-radius:var(--radius-sm);
    z-index:2000;
    transition:top .25s var(--ease);
    font-size:.95rem;
    letter-spacing:.03em;
  }
  .skip-link:focus{top:1rem;}

  :focus-visible{
    outline:2.5px solid var(--color-terracotta);
    outline-offset:3px;
    border-radius:4px;
  }

  .visually-hidden{
    position:absolute !important;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }

  /* ============ SHARED PATTERNS ============ */
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.6em;
    font-family:var(--font-sans);
    font-size:.84rem;
    font-weight:500;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:var(--color-terracotta-text);
  }

  .divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.9rem;
    margin:1.6rem 0;
  }
  .divider span{
    width:34px;height:1px;
    background:var(--color-terracotta-soft);
  }
  .divider i{
    width:5px;height:5px;
    border-radius:50%;
    background:var(--color-terracotta);
    display:block;
  }

  .section-head{
    text-align:center;
    max-width:640px;
    margin-inline:auto;
    margin-bottom:clamp(2.5rem,5vw,4rem);
  }
    .section-foot {
        margin-bottom:0;
    }
  .section-head h2{
    font-size:clamp(2.15rem,3.6vw,3.1rem);
    margin-top:.5rem;
    font-style:italic;
    
  }
h2 span.smaller {
    display:block;
  font-size:0.6em;
  line-height:1.1;
  margin-top:0.25rem;   /* <- hier den Abstand fein einstellen */
}
  .section-head p{
    margin-top:1.1rem;
    color:#4d4b44;
    font-size:1.1rem;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:.6em;
    padding:.95em 2.1em;
    border-radius:999px;
    font-size:1rem;
    font-weight:500;
    letter-spacing:.04em;
    transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--color-green);
    color:var(--color-cream-soft);
    box-shadow:0 10px 26px -10px rgba(35,58,44,0.55);
  }
  .btn-primary:hover{
    background:var(--color-green-deep);
    transform:translateY(-3px);
    box-shadow:0 16px 32px -10px rgba(35,58,44,0.55);
  }
  .btn-ghost{
    border:1.4px solid var(--color-green);
    color:var(--color-green-deep);
    background:transparent;
  }
  .btn-ghost:hover{
    background:var(--color-green);
    color:var(--color-cream-soft);
    transform:translateY(-3px);
  }
  .btn svg,.btn img{width:25px;height:25px;flex-shrink:0;}

  /* ============ SCROLL REVEAL ============ */
  [data-reveal]{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay:var(--d, 0s);
  }
  [data-reveal].is-visible{
    opacity:1;
    transform:none;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation:none !important; transition:none !important;}
    html{scroll-behavior:auto;}
    [data-reveal]{opacity:1 !important; transform:none !important;}
  }

  /* ============ HEADER ============ */
  .site-header{
    position:fixed;
    inset:0 0 auto 0;
    z-index:1000;
    background:rgba(247,241,231,0.9);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(35,58,44,0.08);
    transition:box-shadow .4s var(--ease), padding .3s var(--ease);
  }
  .site-header.is-scrolled{
    box-shadow:0 10px 30px -16px rgba(35,58,44,0.35);
  }
  .header-inner{
    max-width:var(--container);
    margin-inline:auto;
    padding:0.7rem clamp(1.25rem,4vw,3rem);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    transition:padding .3s var(--ease);
  }
  .site-header.is-scrolled .header-inner{padding-block:.7rem;}

  /* On desktop the docked logo+name should sit centered rather than left-aligned;
     matches the 800px breakpoint used for the logo docking animation in script.js */
  @media (min-width:800px){
    .header-inner{justify-content:center;}
  }

  .header-brand{
    display:flex;
    align-items:center;
    gap:.7rem;
  }
  .logo-slot{
    width:42px;height:42px;
    flex-shrink:0;
  }
  .logo-slot img{
    width:100%;height:100%;
    display:block;
    opacity:0;
    transition:opacity .4s var(--ease);
  }
  .header-brand.is-docked .logo-slot img{
    opacity:1;
  }
  .logo-text-docked{
    font-family:var(--font-sans);
    font-size:1.08rem;
    line-height:1.15;
    color:var(--color-green-deep);
    opacity:0;
    text-transform: uppercase;
    transform:translateX(-8px);
    transition:opacity .4s var(--ease), transform .4s var(--ease);
  }
  .header-brand.is-docked .logo-text-docked{
    opacity:1;
    transform:none;
  }
  .logo-text-docked em{
    display:block;
    font-style:normal;
    font-family:var(--font-sans);
    font-size:.66rem;
    letter-spacing:.28em;
    color:var(--color-terracotta-text);
    margin-top:.2rem;
  }

  /* the one visible logo graphic: lives in the hero, docks into the header slot on scroll */
  .logo-fly{
    position:fixed;
    top:0;left:0;
    width:260px;height:260px;
    transform:translate(calc(50vw - 130px), 90px);
    z-index:1100;
    display:block;
    cursor:pointer;
    will-change:transform;
    transition:opacity .4s var(--ease);
  }
  .logo-fly img,.logo-fly svg{width:100%;height:100%;display:block;object-fit:contain;}
  @media (prefers-reduced-motion: reduce){
    .logo-fly{transition:none;}
  }

  .burger{
    position:absolute;
    top:0.7rem;right:1.4rem;
    width:44px;height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    border-radius:50%;
    transition:background .3s;
  }
  .burger:hover{background:rgba(35,58,44,0.08);}
  .burger span{
    width:22px;height:2px;
    background:var(--color-green-deep);
    border-radius:2px;
    transition:transform .4s var(--ease), opacity .3s var(--ease);
  }
  .burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7.6px) rotate(45deg);}
  .burger[aria-expanded="true"] span:nth-child(2){opacity:0;}
  .burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.6px) rotate(-45deg);}

  /* ============ NAV OVERLAY ============ */
  .nav-backdrop{
    position:fixed;inset:0;
    background:rgba(35,58,44,0.35);
    opacity:0;
    pointer-events:none;
    transition:opacity .4s var(--ease);
    z-index:1400;
  }
  .nav-backdrop.is-open{opacity:1;pointer-events:auto;}

  .nav-overlay{
    position:fixed;
    top:0;right:0;bottom:0;
    width:min(420px, 88vw);
    background:var(--color-terracotta-text);
    z-index:1500;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:3rem clamp(2rem,6vw,4rem);
    transform:translateX(100%);
    transition:transform .55s var(--ease);
  }
  .nav-overlay.is-open{transform:translateX(0);}
  .nav-overlay ul{display:flex;flex-direction:column;gap:.4rem;}
  .nav-overlay li{
    opacity:0;
    transform:translateY(14px);
    transition:opacity .5s var(--ease), transform .5s var(--ease);
    transition-delay:0s;
  }
  .nav-overlay.is-open li{opacity:1;transform:none;}
  .nav-overlay.is-open li:nth-child(1){transition-delay:.12s;}
  .nav-overlay.is-open li:nth-child(2){transition-delay:.18s;}
  .nav-overlay.is-open li:nth-child(3){transition-delay:.24s;}
  .nav-overlay.is-open li:nth-child(4){transition-delay:.30s;}
  .nav-overlay.is-open li:nth-child(5){transition-delay:.36s;}

  .nav-overlay a{
    font-family:var(--font-display);
    font-style:italic;
    font-size:clamp(1.7rem,4vw,2.3rem);
    color:var(--color-cream);
    display:inline-block;
    padding:.35rem 0;
    position:relative;
  }
  .nav-overlay a::after{
    content:"";
    position:absolute;
    left:0;bottom:.28rem;
    width:0;height:1.4px;
    background:var(--color-sage);
    transition:width .4s var(--ease);
  }
  .nav-overlay a:hover::after,.nav-overlay a:focus-visible::after{width:100%;}

  .nav-overlay-contact{
    margin-top:2.6rem;
    padding-top:1.8rem;
    border-top:1px solid rgba(247,241,231,0.18);
    display:flex;
    flex-direction:column;
    gap:.5rem;
    font-size:.92rem;
    color:var(--color-cream);
  }
  .nav-overlay-contact a{transition:color .3s;}
  .nav-overlay-contact a:hover{color:var(--color-white);}

  .nav-close{
    position:absolute;
    top:1.4rem;right:1.4rem;
    width:44px;height:44px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--color-cream);
    transition:background .3s;
  }
  .nav-close:hover{background:rgba(247,241,231,0.12);}
  .nav-close svg{width:20px;height:20px;}

  /* ============ DECOR ============ */
  .leaf-decor{
    position:absolute;
    color:var(--color-green);
    opacity:.35;
    pointer-events:none;
  }
  .hill{
    position:absolute;
    left:0;right:0;bottom:-2px;
    width:100%;
    display:block;
    color:var(--color-blush);
  }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:2rem 1.5rem 9rem;
    overflow:hidden;
    background:
      radial-gradient(60% 50% at 50% 8%, rgba(215,155,110,0.14), transparent 70%),
      var(--color-cream);
  }
  .hero-ring{
    position:absolute;
    top:6%;
    left:50%;
    transform:translateX(-50%);
    width:min(60vw,640px);
    height:min(60vw,640px);
    border:1px solid rgba(189,123,76,0.25);
    border-radius:50%;
      display: none;
  }
  .hero-inner{
    position:relative;
    z-index:2;
    max-width:680px;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .hero-mark-slot{width:260px;height:260px;margin-bottom:3.6rem;visibility:hidden;}
  .hero-kicker{
    font-family:var(--font-sans);
    font-size:clamp(1.5rem,2.73vw,2rem);
    letter-spacing:.4em;
    text-transform:uppercase;
    color:var(--color-terracotta-text);
    margin-bottom:.6rem;
  }
  .hero h1{
    font-size:clamp(3.2rem,6vw,4.4rem);
    letter-spacing:.1em;
    line-height: 0.7;
    margin-top: 20px;
  }
  .hero-sub{
    margin-top:1.6rem;
    font-family:var(--font-sans);
    font-size:1rem;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--color-ink);
    font-weight: 100;
  }
  .hero-sub strong{
    display:block;
    font-style:normal;
    font-size:1.5rem;
    letter-spacing:.2em;
    color:var(--color-terracotta-text);
    margin-top:.55rem;
    line-height:1.4;
    font-weight: 100;
  }
  .hero-tagline{
    font-family:var(--font-display);
    font-style:italic;
    font-size:clamp(1.15rem,2vw,1.4rem);
    color:var(--color-green-deep);
    line-height:1.65;
  }
  .hero-cta{
    margin-top:3.6rem;
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    justify-content:center;
  }
  .scroll-cue{
    position:absolute;
    bottom:2.6rem;left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.5rem;
    color:var(--color-green);
    font-size:.7rem;
    letter-spacing:.2em;
    text-transform:uppercase;
    opacity:.7;
    z-index: 10;
  }
  .scroll-cue svg{width:16px;height:22px;animation:bob 2.4s ease-in-out infinite;}
  @keyframes bob{0%,100%{transform:translateY(0);}50%{transform:translateY(7px);}}
  .leaf-hero{
    position:absolute;
    left:clamp(1rem,4vw,4rem);
    bottom:clamp(6rem,14vh,9rem);
    width:110px;height:150px;
    width:25%;height:auto;
    max-width: 350px;
    color:var(--color-green);
    opacity:.1;
    z-index:1;
  }

  /* ============ ABOUT ============ */
  .about{
    position:relative;
    padding:clamp(5rem,10vw,8rem) 0;
    background:var(--color-cream-soft);
  }
  .about-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:clamp(2.5rem,6vw,5rem);
    align-items:center;
  }
  .about-grid img{
    width:100%;
    aspect-ratio:3.5/5;
    object-fit:cover;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
    display:block;
  }
  .photo-placeholder{
    aspect-ratio:4/5;
    border-radius:var(--radius-lg);
    border:1.5px dashed rgba(189,123,76,0.55);
    background:
      linear-gradient(160deg, var(--color-blush-soft), var(--color-cream) 70%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:.9rem;
    color:var(--color-terracotta);
    text-align:center;
    padding:2rem;
    position:relative;
    overflow:hidden;
  }
  .photo-placeholder svg{width:44px;height:44px;}
  .photo-placeholder span{
    font-size:.84rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--color-green-deep);
    max-width:200px;
  }
  .about-text .eyebrow{margin-bottom:.7rem;}
  .about-text h2{
    font-size:clamp(2.25rem,3.8vw,3.2rem);
    font-style:italic;
    line-height:1.25;
  }
  .about-text p{
    margin-top:1.4rem;
    color:#4d4b44;
    font-size:1.1rem;
  }
  .about-signoff{
    margin-top:2rem;
    display:flex;
    align-items:center;
    gap:.7rem;
    font-family:var(--font-display);
    font-style:italic;
    font-size:1.28rem !important;
    color:var(--color-green-deep);
  }
  .about-signoff img{width:25px;height:25px;flex-shrink:0;border-radius: 0;object-fit:unset;}

  /* ============ SERVICES ============ */
  .services{
    padding:clamp(5rem,10vw,8rem) 0;
    position:relative;
  }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.8rem;
  }
  .service-card{
    background:var(--color-white);
    border-radius:var(--radius-lg);
    padding:2.6rem 2.1rem;
    box-shadow:var(--shadow-soft);
    transition:transform .45s var(--ease), box-shadow .45s var(--ease);
    display:flex;
    flex-direction:column;
    gap:1.1rem;
  }
  .service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lift);
  }
  .service-icon{
    width:70px;height:70px;
    border-radius:50%;
    background:var(--color-blush-soft);
    display:flex;align-items:center;justify-content:center;
    color:var(--color-green);
  }
  .service-icon img{width:45px;height:45px;display:block;}
  .service-card h3{
    font-size:1.44rem;
    font-style:italic;
  }
  .service-card p{
    color:#4d4b44;
    font-size:1.04rem;
  }
  .service-signoff{
    margin-top:2rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.7rem;
    text-align:center;
    font-family:var(--font-display);
    font-style:italic;
    font-size:1.28rem !important;
    color:var(--color-green-deep);
  }
  .service-signoff img{width:25px;height:25px;flex-shrink:0;border-radius: 0;object-fit:unset;text-align:center;}

  /* ============ OFFER ============ */
  .offer{
    padding:clamp(5rem,10vw,8rem) 0 0;
    background:var(--color-terracotta-text);
    color:var(--color-cream-soft);
    position:relative;
    overflow:hidden;
  }
  .offer .eyebrow{color:var(--color-cream);}
  .offer .section-head h2{color:var(--color-cream);}
  .offer .section-head p{color:var(--color-cream-soft);}
  .offer .divider span{background:rgba(198,219,199,0.4);}
  .offer .divider i{background:var(--color-sage);}

  .offer-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:clamp(2rem,5vw,4rem);
    padding-bottom:clamp(3.5rem,8vw,6rem);
  }
  .offer-col h3{
    display:flex;
    align-items:center;
    gap:.8rem;
    color:var(--color-cream);
    font-size:1.6rem;
    font-style:italic;
    margin-bottom:1.5rem;
  }
  .offer-col-icon{
    width:70px;height:70px;
    border-radius:50%;
    background:rgba(247,241,231,0.08);
    display:flex;align-items:center;justify-content:center;
    color:var(--color-sage);
    flex-shrink:0;
  }
  .offer-col-icon img{width:45px;height:45px;display:block;}
  .offer-col ul{display:flex;flex-direction:column;gap:.95rem;}
  .offer-col li{
    display:flex;
    align-items:flex-start;
    gap:.75rem;
    font-size:1.05rem;
    color:var(--color-cream-soft);
    line-height:1.5;
  }
  .offer-col li svg{
    width:16px;height:16px;
    margin-top:.25rem;
    color:var(--color-sage);
    flex-shrink:0;
  }
  .offer-divider{
    width:1px;
    background:rgba(247,241,231,0.15);
  }

  .offer-statement{
    background:var(--color-blush-soft);
    color:var(--color-ink);
    border-radius:var(--radius-lg) var(--radius-lg) 0 0;
    padding:clamp(3rem,6vw,4.5rem) clamp(1.5rem,5vw,3rem);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:1rem;
  }
  .offer-statement-icon{
    width:70px;height:70px;
    border-radius:50%;
    background:var(--color-white);
    display:flex;align-items:center;justify-content:center;
    color:var(--color-green);
  }
  .offer-statement-icon img{width:45px;height:45px;display:block;}
  .offer-statement h3{
    font-size:1.7rem;
    font-style:italic;
  }
  .offer-statement p{
    max-width:560px;
    color:#4d4b44;
    font-size: 1.1rem;
  }

  /* ============ INFO STRIP ============ */
  .info-strip{
    background:var(--color-cream-soft);
    padding:clamp(3.5rem,7vw,5rem) 0;
  }
  .info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
    text-align:center;
  }
  .info-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.9rem;
    padding:1.5rem 1rem;
  }
  .info-icon{
    width:70px;height:70px;
    border-radius:50%;
    border:1.4px solid var(--color-terracotta-soft);
    display:flex;align-items:center;justify-content:center;
    color:var(--color-green);
  }
  .info-icon svg,.info-icon img{width:45px;height:45px;}
  .info-item h4{
    font-size:1.1rem;
    letter-spacing:.03em;
    color:var(--color-green-deep);
  }
  .info-item p{
    font-size:.97rem;
    color:#5a5850;
    max-width:220px;
	margin-top: -12px;

  }
  .info-item p a{
	text-decoration: underline;
  }

  /* ============ CONTACT ============ */
  .contact{
    padding:clamp(5rem,10vw,8rem) 0;
    position:relative;
  }
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:clamp(2.5rem,6vw,4rem);
    align-items:stretch;
  }
  .contact-card{
    background:var(--color-white);
    border-radius:var(--radius-lg);
    padding:clamp(2.2rem,4vw,3rem);
    box-shadow:var(--shadow-soft);
  }
  .contact-card h3{
    font-size:1.7rem;
    font-style:italic;
    margin-bottom:.3rem;
  }
  .contact-card .role{
    font-size:.88rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--color-terracotta-text);
    margin-bottom:1.8rem;
    display:block;
  }
  .contact-list{display:flex;flex-direction:column;gap:1.3rem;}
  .contact-list li{
    display:flex;
    align-items:flex-start;
    gap:1rem;
  }
  .contact-list .ic{
    width:40px;height:40px;
    border-radius:50%;
    background:var(--color-blush-soft);
    color:var(--color-green);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .contact-list .ic svg{width:18px;height:18px;}
  .contact-list a,.contact-list span.txt{
    font-size:1.05rem;
    color:var(--color-ink);
    padding-top:.5rem;
  }
  .contact-list a{transition:color .3s;}
  .contact-list a:hover{color:var(--color-terracotta-text);}
  .contact-note{
    margin-top:.05rem;
    font-size:.84rem;
    color:#6f6455;
    font-style:italic;
  }
  .contact-card .btn{margin-top:2rem;width:100%;justify-content:center;}

  .map-embed{
    border-radius:var(--radius-lg);
    border:1px solid rgba(51,80,62,0.12);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    min-height:280px;
    height:100%;
    transition:box-shadow .4s var(--ease);
  }
  .map-embed:hover,
  .map-embed:focus-within{
    box-shadow:var(--shadow-lift);
  }
  .map-embed iframe{
    display:block;
    width:100%;
    height:100%;
    min-height:280px;
    border:0;
    filter:grayscale(0.55) sepia(0.12) saturate(1.15) brightness(1.02);
    transition:filter .5s var(--ease);
  }
  .map-embed:hover iframe,
  .map-embed:focus-within iframe{
    filter:none;
  }
  .map-embed-consent{
    height:100%;
    min-height:280px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1rem;
    text-align:center;
    padding:2.2rem 1.8rem;
    background:
      repeating-linear-gradient(135deg, rgba(51,80,62,0.04) 0 14px, transparent 14px 28px),
      var(--color-blush-soft);
  }
  .map-embed-consent svg{width:38px;height:38px;color:var(--color-green);}
  .map-embed-consent p{
    font-size:.97rem;
    color:#4d4b44;
    max-width:280px;
    line-height:1.6;
  }
  .map-embed-external{
    font-size:.86rem;
    color:var(--color-terracotta-text);
    text-decoration:underline;
    text-underline-offset:3px;
  }
  .map-embed-external:hover{color:var(--color-green-deep);}
  @media (prefers-reduced-motion: reduce){
    .map-embed, .map-embed iframe{transition:none;}
  }

  /* ============ FOOTER ============ */
  .site-footer{
    background:var(--color-terracotta-text);
    color:var(--color-cream-soft);
    padding:clamp(3rem,6vw,4rem) 0 2rem;
  }
  .footer-top{
    display:flex;
    flex-wrap:wrap;
    gap:2rem;
    justify-content:space-between;
    align-items:center;
    padding-bottom:2.2rem;
    border-bottom:1px solid rgba(247,241,231,0.14);
  }
  .footer-logo{display:flex;align-items:center;gap:.7rem;}
  .footer-logo-mark{width:42px;height:42px;flex-shrink:0;display:block;}
  .footer-logo-mark img{width:100%;height:100%;display:block;}
  .footer-logo-text{
    font-family:var(--font-sans);
    font-size:1.08rem;
    line-height:1.15;
    color:var(--color-cream);
    text-transform:uppercase;
  }
  .footer-logo-text em{
    display:block;
    font-style:normal;
    font-family:var(--font-sans);
    font-size:.66rem;
    letter-spacing:.28em;
    color:rgba(247,241,231,0.75);
    margin-top:.2rem;
  }
  .footer-nav{
    display:flex;
    flex-wrap:wrap;
    gap:1.6rem;
    font-size:.97rem;
  }
  .footer-nav a{transition:color .3s;}
  .footer-nav a:hover{color:var(--color-white);}
  .footer-bottom{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    justify-content:space-between;
    padding-top:1.6rem;
    font-size:.86rem;
    color:var(--color-cream-soft);
  }
  .footer-bottom a{transition:color .3s;}
  .footer-bottom a:hover{color:var(--color-white);}
  .footer-legal{display:flex;gap:1.4rem;}

  /* ============ BACK TO TOP ============ */
  .to-top{
    position:fixed;
    right:1.6rem;bottom:1.6rem;
    width:48px;height:48px;
    border-radius:50%;
    background:var(--color-green);
    color:var(--color-cream);
    display:flex;align-items:center;justify-content:center;
    box-shadow:var(--shadow-soft);
    opacity:0;
    transform:translateY(12px);
    pointer-events:none;
    transition:opacity .4s var(--ease), transform .4s var(--ease), background .3s;
    z-index:900;
  }
  .to-top.is-visible{opacity:1;transform:none;pointer-events:auto;}
  .to-top:hover{background:var(--color-green-deep);}
  .to-top svg{width:18px;height:18px;}

  /* ============ RESPONSIVE ============ */

@media (min-height:1190px) {
  .hero h1{margin-top: 0;}
}
  @media (max-width:980px){
    .about-grid{grid-template-columns:1fr;}
    .photo-placeholder{max-width:380px;margin-inline:auto;width:100%;}
    .about-grid img{max-width:380px;margin-inline:auto;}
    .service-grid{grid-template-columns:1fr 1fr;}
    .offer-grid{grid-template-columns:1fr;gap:3rem;}
    .offer-divider{width:100%;height:1px;}
    .contact-grid{grid-template-columns:1fr;}
    .info-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:640px){
    .service-grid{grid-template-columns:1fr;}
    .info-grid{grid-template-columns:1fr;}
    /*.hero{padding-top:4rem;}*/
    .logo-text-docked{font-size:1.1rem;}
  }

/*TRENNER ELEMENT*/
.icon-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.25rem;
  margin: 2.5rem auto;
  max-width: 480px;
}
.icon-divider-line{
  flex: 1 1 0;
  min-width: 20px;
  height: 1px;
  background-color: var(--color-green);
}
.icon-divider-icon{
  width: 40px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 480px){
  .icon-divider{ gap: 0.9rem; }
  .icon-divider-icon{ width: 26px; }
}

/* Pages without a hero (e.g. Impressum, Datenschutz): show the logo + name plainly, no docking animation */
.header-brand.is-static{
  gap:.65rem;
}
.header-brand.is-static .logo-slot-static{
  display:block;
  width:42px;
  height:42px;
  flex-shrink:0;
}
.header-brand.is-static .logo-text-docked{
  opacity:1;
  transform:none;
}

/* ============ RECHTLICHES (Impressum, Datenschutz) ============ */
.legal-page{
  padding:clamp(8rem,14vw,11rem) 0 clamp(5rem,10vw,8rem);
}
.legal-page .eyebrow{
  display:block;
  margin-bottom:.7rem;
}
.legal-page h1{
  font-size:clamp(2.4rem,4vw,3.4rem);
  font-style:italic;
  max-width:720px;
}
.legal-intro{
  max-width:720px;
  margin-top:1.3rem;
  margin-bottom:2.8rem;
  color:#4d4b44;
  font-size:1.1rem;
  line-height:1.75;
}
.legal-body{
  max-width:720px;
  color:#4d4b44;
}
.legal-body h2{
  font-size:1.55rem;
  font-style:italic;
  color:var(--color-green-deep);
  margin-top:2.8rem;
  margin-bottom:.9rem;
}
.legal-body h2:first-child{margin-top:0;}
.legal-body h3{
  font-family:var(--font-sans);
  font-size:1.15rem;
  font-style:normal;
  font-weight:500;
  color:var(--color-green-deep);
  margin-top:1.8rem;
  margin-bottom:.5rem;
}
.legal-body p{
  margin-bottom:1.1rem;
  line-height:1.75;
}
.legal-body ul{
  margin:0 0 1.1rem 0;
  padding-left:1.3rem;
  line-height:1.75;
}
.legal-body li{margin-bottom:.4rem;}
.legal-body a{
  color:var(--color-terracotta-text);
  text-decoration:underline;
  text-underline-offset:3px;
}
.legal-body a:hover{color:var(--color-green-deep);}
.legal-body strong{color:var(--color-green-deep);font-weight:600;}
.legal-placeholder{
  background:var(--color-blush-soft);
  border-radius:4px;
  padding:.05em .4em;
  font-style:normal;
}
@media (max-width: 430px){
    .hero h1 {
        line-height:1;
    }
}