/* -------- Self-hosted fonts (DSGVO) -------- */
@font-face {
  font-family: 'Alice';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/alice-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: 'Alice';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/alice-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: 'Quicksand';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/quicksand-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: 'Quicksand';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/quicksand-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;
}

:root{
  --sage:        #8a9d72;
  --sage-soft:   #b7c4a6;
  --brown:       #6a5b4a;
  --brown-soft:  #8a7866;
  --cream:       #fefcf9;
  --beige:       #fff6ee;
  --white:       #ffffff;

  --font-display: 'Alice', 'Cormorant Garamond', 'Garamond', serif;
  --font-body:    'Quicksand', 'Nunito', system-ui, sans-serif;

  --max-w: 1024px;
  --pad-x: clamp(20px, 5vw, 50px);
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }

/* -------- Mask-based icons (single-color from SVG) -------- */
.mask-icon{
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  flex: none;
}
.brand-logo{
  display: inline-block;
  width: 72px;
  height: 72px;
  background-color: currentColor;
  -webkit-mask: url(assets/icons/logo.svg) center/contain no-repeat;
          mask: url(assets/icons/logo.svg) center/contain no-repeat;
  flex: none;
}
.brand-logo--sage{ color: var(--sage); }
.brand-logo--cream{ color: var(--cream); }
.brand-logo--sm{ width: 46px; height: 46px; }

/* -------- Brand header -------- */
.brand{
  background: var(--cream);
  padding: 34px var(--pad-x) 26px;
  display: grid;
  place-items: center;
}
.brand-inner{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-align: left;
}
.brand-word{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-name{
  font-family: var(--font-display);
  color: var(--sage);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1.1;
  margin: 0;
}
.brand-tag{
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--sage);
  font-size: 18px;
  letter-spacing: .045em;
  margin: 4px 0 0;
}

/* -------- Nav -------- */
.nav{
  background: var(--sage);
  color: var(--cream);
}
.nav ul{
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 14px var(--pad-x);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 56px);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .035em;
}
.nav a{
  position: relative;
  padding: 4px 2px;
  transition: opacity .2s ease;
}
.nav a:hover{ opacity: .8; }
.nav a::after{
  content:"";
  position:absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .25s ease, left .25s ease;
}
.nav a:hover::after{ width: 100%; left: 0; }

/* -------- Hero -------- */
.hero{
  position: relative;
  background: var(--beige);
  padding: 60px var(--pad-x);
  min-height: 449px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-flowers{
  position: absolute;
  top: 0; bottom: 0;
  width: 268px;
  pointer-events: none;
}
.hero-flowers img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-flowers--left{
  left: 0;
  transform: scaleX(-1);
}
.hero-flowers--right{ right: 0; }
.hero-copy{
  position: relative;
  max-width: 620px;
  text-align: center;
  padding: 24px 0;
}
.h-display{
  font-family: var(--font-display);
  color: var(--brown);
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .022em;
  margin: 0 0 26px;
}
.h-display span{ display:block; }
.h-lead{
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brown);
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.45;
  margin: 0;
}

/* -------- Sage CTA band -------- */
.band{
  color: var(--cream);
  padding: 60px var(--pad-x);
  display: grid;
  place-items: center;
  text-align: center;
}
.band--sage{ background: var(--sage); }
.band-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.25;
  letter-spacing: .022em;
  margin: 0;
}
.band-title span{ display: block; }

/* -------- Split sections -------- */
.split{
  background: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 80px var(--pad-x);
}
.split-inner,
.split{
  max-width: none;
}
.split > * {
  max-width: 500px;
  justify-self: center;
}
.split--text-left > .split-text{ justify-self: end; }
.split--text-left > .split-photo{ justify-self: start; }
.split--sage{
  background: var(--sage);
  color: var(--cream);
}
.split--sage > .split-photo{ justify-self: end; }
.split--sage > .split-text{ justify-self: start; }

.split-text{ max-width: 480px; }
.h-section{
  font-family: var(--font-body);
  font-weight: 700;
  color: inherit;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.25;
  letter-spacing: .015em;
  margin: 0 0 22px;
}
.split--sage .h-section{ color: var(--cream); }
.split-text p{
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.55;
  margin: 0;
}

.split-photo{
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px -24px rgba(47, 42, 36, .25);
}
.split-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 430 / 320;
  transition: transform .8s ease;
}
.split-photo:hover img{ transform: scale(1.03); }

/* -------- Kontakt -------- */
.kontakt{
  background: var(--cream);
  padding: 80px 0 100px;
}
.kontakt-inner{
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.h-kontakt{
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--sage);
  font-size: clamp(32px, 4.2vw, 42px);
  letter-spacing: .025em;
  margin: 0 0 34px;
  line-height: 1.1;
}

.kontakt-list{
  display: grid;
  row-gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kontakt-list > li{
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 18px;
  align-items: start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--brown);
  line-height: 1.45;
}
.kontakt-list > li > div{ display: flex; flex-direction: column; gap: 2px; }
.kontakt-list a{
  color: inherit;
  transition: color .2s ease;
}
.kontakt-list a:hover{ color: var(--sage); }
.kontakt-meta{
  font-size: 14px;
  color: var(--brown-soft);
  letter-spacing: .01em;
}

/* Icons: small, sage-colored, consistent 28px optical size */
.kontakt-icon{
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  background-color: var(--sage);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left center;
          mask-position: left center;
}
.kontakt-icon--phone{
  -webkit-mask-image: url(assets/icons/phone.svg);
          mask-image: url(assets/icons/phone.svg);
}
.kontakt-icon--pin{
  -webkit-mask-image: url(assets/icons/pin.svg);
          mask-image: url(assets/icons/pin.svg);
}
.kontakt-icon--mail{
  -webkit-mask-image: url(assets/icons/mail.svg);
          mask-image: url(assets/icons/mail.svg);
}
.kontakt-icon--clock{
  -webkit-mask-image: url(assets/icons/clock.svg);
          mask-image: url(assets/icons/clock.svg);
}

.hours{
  display: grid;
  row-gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}
.hours li{
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: baseline;
}
.hours li > span:first-child{ color: var(--sage); font-weight: 500; }
.hours li > span:last-child{
  color: var(--brown);
  font-variant-numeric: tabular-nums;
}

.kontakt-map{
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(47, 42, 36, .25);
  aspect-ratio: 430 / 322;
  background: #eef1ea;
  position: relative;
}
.kontakt-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-consent{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  font: inherit;
  color: inherit;
  overflow: hidden;
}
.map-consent > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.92);
  transition: transform .6s ease, filter .3s ease;
}
.map-consent:hover > img{ transform: scale(1.03); filter: saturate(1) brightness(1); }
.map-consent-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(106,91,74,.45), rgba(106,91,74,.7));
  transition: background .3s ease;
}
.map-consent:hover .map-consent-overlay{
  background: linear-gradient(180deg, rgba(106,91,74,.2), rgba(106,91,74,.55));
}
.map-consent-overlay strong{
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--cream);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .04em;
  background: rgba(138,157,114,.85);
}
.map-consent-overlay > span{
  font-size: 13px;
  max-width: 320px;
  line-height: 1.4;
  opacity: .95;
}
.map-consent-overlay a{
  color: var(--cream);
  text-decoration: underline;
}

/* -------- Footer -------- */
.footer{
  background: var(--sage);
  color: var(--cream);
  padding: 40px 0 26px;
}
.footer-inner{
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name{
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0;
  letter-spacing: .02em;
  line-height: 1.1;
  transform: translateX(-8px);
}
.footer-tag{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  margin: 2px 0 0;
  opacity: .95;
}
.footer-social{
  display: grid;
  gap: 10px;
  color: var(--cream);
}
.footer-social a{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-social a:hover{ opacity: .85; transform: translateX(2px); }
.social-icon{
  display: inline-block;
  flex: none;
  width: 22px; height: 22px;
  background-color: var(--cream);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.social-icon--ig{
  -webkit-mask-image: url(assets/icons/instagram.svg);
          mask-image: url(assets/icons/instagram.svg);
}
.social-icon--fb{
  -webkit-mask-image: url(assets/icons/facebook.svg);
          mask-image: url(assets/icons/facebook.svg);
}
.social-icon--map{
  -webkit-mask-image: url(assets/icons/map-pin.svg);
          mask-image: url(assets/icons/map-pin.svg);
  width: 16px; height: 22px;
}
.footer-legal{
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-inline: var(--pad-x);
  font-size: 12px;
  letter-spacing: .05em;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  opacity: .85;
}
.footer-legal p{ margin: 0; }
.footer-legal-nav{
  display: flex;
  gap: 18px;
}
.footer-legal-nav a{
  transition: opacity .2s ease;
}
.footer-legal-nav a:hover{ opacity: .7; text-decoration: underline; }

/* -------- Legal pages (Impressum / Datenschutz) -------- */
.legal{
  background: var(--cream);
  padding: 72px 0 96px;
}
.legal-inner{
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  color: var(--brown);
}
.legal-title{
  font-family: var(--font-display);
  color: var(--sage);
  font-size: clamp(32px, 4.2vw, 42px);
  font-weight: 400;
  letter-spacing: .025em;
  margin: 0 0 32px;
}
.legal h2{
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--brown);
  font-size: 20px;
  margin: 32px 0 10px;
  letter-spacing: .015em;
}
.legal p,
.legal ul{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.legal ul{ padding-left: 22px; }
.legal ul li{ margin-bottom: 4px; }
.legal a{
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s ease;
}
.legal a:hover{ opacity: .75; }
.legal-placeholder{
  background: #fff6c8;
  border-left: 3px solid #caa634;
  padding: 10px 14px;
  border-radius: 3px;
}
.legal-placeholder em{ color: #8a6d1a; font-style: normal; font-weight: 600; }
.legal-updated{
  margin-top: 40px;
  font-size: 13px;
  color: var(--brown-soft);
  font-style: italic;
}

/* -------- Motion -------- */
@media (prefers-reduced-motion: no-preference){
  .reveal{
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.is-visible{
    opacity: 1;
    transform: none;
  }
  .hero-copy .h-display span,
  .hero-copy .h-lead{
    opacity: 0;
    animation: riseIn .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-copy .h-display span:nth-child(1){ animation-delay: .15s; }
  .hero-copy .h-display span:nth-child(2){ animation-delay: .35s; }
  .hero-copy .h-lead{ animation-delay: .6s; }
}
@keyframes riseIn{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: none; }
}

/* -------- Responsive -------- */
@media (max-width: 860px){
  .brand{ padding: 26px var(--pad-x) 20px; }
  .brand-logo{ width: 56px; height: 56px; }
  .brand-name{ font-size: 32px; }
  .brand-tag{ font-size: 15px; }

  .nav ul{
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
  }

  .hero{ padding: 40px 16px; min-height: 0; }
  .hero-flowers{ width: 120px; opacity: .7; }
  .hero-copy{ padding-block: 40px; }

  .band{ padding: 44px 20px; }

  .split{
    grid-template-columns: 1fr;
    padding: 56px var(--pad-x);
    gap: 28px;
  }
  .split > *{ justify-self: center !important; }
  /* photo above text on mobile */
  .split--text-left .split-text{ order: 2; }
  .split--text-left .split-photo{ order: 1; }

  .kontakt{ padding: 56px 0 70px; }
  .kontakt-inner{ grid-template-columns: 1fr; }
  .kontakt-list li{ font-size: 18px; }

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

@media (max-width: 480px){
  .brand{ padding: 22px 16px 18px; }
  .brand-logo{ width: 44px; height: 44px; }
  .brand-name{ font-size: 24px; }
  .brand-tag{ font-size: 12px; }

  .hero-flowers{ display: none; }

  .h-display{ font-size: 26px; }
  .band-title{ font-size: 26px; }
}

/* -------- Accessibility -------- */
a:focus-visible{
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}
