/* ===== TOKENS ===== */
:root {
  /* Colors */
  --ink:        #2a2622;
  --ink-soft:   #3d3935;
  --paper:      #f4efe7;
  --paper-deep: #ece5d8;
  --sand:       #d8cdb9;
  --stone:      #8b7f72;
  --moss:       #5b6a55;
  --gold:       #a98a5f;
  --shadow:     0 30px 80px -40px rgba(40,30,20,.35);

  /* Typography */
  --font-sans:    'Roboto', 'Helvetica Neue', system-ui, sans-serif;
  --font-display: 'Amatic SC', Georgia, serif;

  /* Section rhythm */
  --section-y-lg: clamp(72px, 14vh, 160px);

  /* Content widths */
  --content-max: 1280px;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

blockquote { margin: 0; } /* reset browser default 1em 40px */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.72;
  letter-spacing: .004em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
  user-select: none;
}

::selection { background: var(--sand); color: var(--ink); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.4;
}

/* ===== GLOBAL EDITORIAL TEXT-WRAP ===== */
h1, h2, h3, h4, blockquote { text-wrap: balance; }
p { text-wrap: pretty; }
.hero h1 span { display: block; }

/* ===== NAVIGATION ===== */
.nav-shell {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 28px 12px;
  text-align: center;
  pointer-events: none;
  transition: padding .5s ease;
}
.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background .5s ease, backdrop-filter .5s ease;
  pointer-events: none;
}
.nav-shell.is-scrolled::before {
  background: linear-gradient(to bottom, rgba(244,239,231,.96) 0%, rgba(244,239,231,.86) 70%, rgba(244,239,231,0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner { position: relative; pointer-events: auto; }

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 3px 0;
  color: #fff;
  text-decoration: none;
  transition: color .4s ease;
}
.logo .mark-img {
  width: clamp(140px, 15vw, 200px);
  height: clamp(52px, 5.8vw, 76px);
  background: currentColor;
  -webkit-mask: url('assets/logo.png') center / contain no-repeat;
          mask: url('assets/logo.png') center / contain no-repeat;
  transition: width .3s ease, height .3s ease;
}
.logo .mark {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  opacity: .72;
  line-height: 1.3;
}
.nav-shell.is-scrolled .logo { color: var(--ink); }
.nav-shell.is-scrolled .logo .mark-img {
  width: clamp(100px, 9.5vw, 140px);
  height: clamp(38px, 3.6vw, 50px);
}

.navlinks {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 8px;
  color: #fff;
  transition: color .4s ease;
}
.navlinks a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .01em;
  color: inherit;
  text-decoration: none;
  opacity: .85;
  transition: opacity .25s ease;
  white-space: nowrap;
}
.navlinks a:hover { opacity: 1; }
.navlinks .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
  flex-shrink: 0;
}
.nav-shell.is-scrolled .navlinks { color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 130svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 0; /* creates stacking context without forcing GPU compositor layer */
  margin-bottom: -2px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/soca.jpg') center 20% / cover no-repeat;
  z-index: -2;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20,18,14,0) 0%, rgba(20,18,14,.07) 60%, rgba(20,18,14,.14) 100%),
    linear-gradient(to bottom, rgba(20,18,14,.06) 0%, rgba(20,18,14,.02) 35%, rgba(20,18,14,.1) 100%);
}
.hero-content {
  max-width: 960px;
  padding: 0 clamp(16px, 4vw, 48px);
  margin-bottom: 30svh;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 100px);
  line-height: 1.06;
  letter-spacing: .01em;
  margin: 0;
  text-shadow: 0 2px 36px rgba(0,0,0,.25);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: -24px;
  height: calc(clamp(160px, 30vh, 360px) + 24px);
  background: linear-gradient(to bottom, rgba(244,239,231,0) 0%, rgba(244,239,231,.6) 52%, var(--paper) 80%);
  z-index: 1;
  pointer-events: none;
}

/* ===== FLOAT QUOTE ===== */
.float-quote {
  position: relative;
  text-align: center;
  padding: clamp(32px, 6vh, 80px) clamp(20px, 4vw, 48px) clamp(56px, 11vh, 130px);
  background: var(--paper);
}
.float-quote .display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.75vw, 37px);
  letter-spacing: .04em;
  word-spacing: .02em;
  line-height: 1.14;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
}
/* Vertical rhythm lines — visible on all screen sizes */
.float-quote::before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(48px, 6vh, 80px);
  background: linear-gradient(to bottom, transparent, var(--stone));
  margin: 0 auto clamp(28px, 4vh, 52px);
}
.float-quote::after {
  content: "";
  display: block;
  width: 1px;
  height: clamp(48px, 6vh, 80px);
  background: linear-gradient(to top, transparent, var(--stone));
  margin: clamp(28px, 4vh, 52px) auto 0;
}

/* ===== IMAGE FLOW (shared) ===== */
.image-flow {
  position: relative;
  z-index: 0; /* creates stacking context without forcing GPU compositor layer */
  /* overflow: visible (default) — fades extend 24px beyond the section box
     so no hard paint boundary can form at the section edge */
  background-color: var(--paper);
  margin-top: -2px;
  margin-bottom: -2px;
}
.image-flow .img-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Disable fixed parallax on touch devices — iOS/Android behave poorly */
@media (hover: none), (max-width: 960px) {
  .image-flow .img-layer { background-attachment: scroll; }
}
.image-flow .scrim {
  position: absolute; inset: 0;
  pointer-events: none;
}
.image-flow .top-fade {
  position: absolute; left: 0; right: 0; top: -24px;
  height: calc(clamp(120px, 28vh, 300px) + 24px);
  background: linear-gradient(to top, rgba(244,239,231,0), rgba(244,239,231,.7) 50%, var(--paper) 72%);
  pointer-events: none;
  z-index: 3;
}
.image-flow .bot-fade {
  position: absolute; left: 0; right: 0; bottom: -24px;
  height: calc(clamp(160px, 32vh, 360px) + 24px);
  background: linear-gradient(to bottom, rgba(244,239,231,0), rgba(244,239,231,.7) 50%, var(--paper) 72%);
  pointer-events: none;
  z-index: 3;
}

/* Two adjacent image sections — reduce default margin-top overlap (extended fades handle the transition) */
.image-flow + .image-flow {
  margin-top: -4px;
}

/* ===== SECTION: NEBEL ===== */
.section-nebel { min-height: clamp(600px, 120vh, 1400px); }
.section-nebel .img-layer {
  background-image: url('assets/nebel.jpg');
  background-position: center 30%;
}
.section-nebel .scrim {
  background: linear-gradient(to bottom, rgba(244,239,231,.02) 0%, rgba(244,239,231,.1) 40%, rgba(244,239,231,.26) 100%);
}
.section-nebel .content {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  row-gap: clamp(40px, 7vh, 90px);
  padding: clamp(80px, 18vh, 200px) clamp(20px, 6vw, 80px) clamp(100px, 20vh, 240px);
}
.section-nebel .lede {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 50px);
  line-height: 1.1;
  letter-spacing: .005em;
  max-width: 26ch;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.section-nebel .lede em { font-style: italic; color: var(--moss); }
.section-nebel .q-a {
  display: grid;
  gap: 16px;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.72;
  color: var(--ink);
  max-width: 40ch;
}
.section-nebel .q-a p { margin: 0; }
.section-nebel .q-mid {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.15;
  margin: 0;
  max-width: 26ch;
  color: var(--ink);
  text-wrap: balance;
}
.section-nebel .q-mid em { font-style: italic; }
.section-nebel .q-body {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.78;
  color: var(--ink);
  margin: 0;
  max-width: 44ch;
}
.section-nebel .q-pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 50px);
  line-height: 1.1;
  letter-spacing: .005em;
  color: var(--ink);
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}
.section-nebel .q-pull em { color: var(--moss); }

/* ===== SECTION: SONNENAUFGANG ===== */
.section-sun { min-height: clamp(500px, 100vh, 1200px); }
.section-sun .img-layer {
  background-image: url('assets/sonnenaufgang.jpg');
  background-position: center 40%;
}
.section-sun .scrim {
  background: linear-gradient(to bottom, rgba(244,239,231,.72) 0%, rgba(244,239,231,.38) 45%, rgba(244,239,231,.78) 100%);
}
.section-sun .content {
  position: relative; z-index: 4;
  padding: clamp(80px, 18vh, 180px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: clamp(28px, 5vh, 64px);
}
.section-sun .sun-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 50px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: .01em;
}
.section-sun .sun-list {
  list-style: none;
  padding: 0; margin: 0;
  max-width: 560px;
  display: grid;
  gap: clamp(18px, 3vh, 28px);
  justify-items: center;
}
.section-sun .sun-list p {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.78;
  color: var(--ink);
  margin: 0;
  font-weight: 300;
  max-width: 44ch;
}
.section-sun .sun-list em { font-style: italic; color: var(--moss); }
.section-sun .sun-closer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 38px);
  color: var(--ink);
  margin: 0;
  letter-spacing: .005em;
  line-height: 1.2;
  text-wrap: balance;
}

/* ===== SECTION: OAK ===== */
.section-oak { min-height: clamp(400px, 80vh, 900px); }
.section-oak .img-layer {
  background-image: url('assets/oak.jpg');
  background-position: center;
}
.section-oak .scrim {
  background: linear-gradient(to bottom, rgba(20,18,14,.50) 0%, rgba(20,18,14,.55) 50%, rgba(20,18,14,.60) 100%);
}
.section-oak .top-fade { background: linear-gradient(to top, rgba(244,239,231,0), rgba(244,239,231,.7) 50%, var(--paper) 72%); }
.section-oak .bot-fade { background: linear-gradient(to bottom, rgba(244,239,231,0), rgba(244,239,231,.7) 50%, var(--paper) 72%); }
.section-oak .content {
  position: relative; z-index: 4;
  padding: clamp(80px, 20vh, 200px) clamp(20px, 8vw, 100px);
  text-align: center;
  color: #fff;
}
.section-oak .quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.1;
  letter-spacing: .005em;
  max-width: 26ch;
  margin: 0 auto;
  text-shadow: 0 2px 28px rgba(0,0,0,.3);
  text-wrap: balance;
}
.section-oak .quote-sub {
  display: block;
  font-size: .55em;
  opacity: .82;
  margin-top: .25em;
}
.section-oak .quote-attr {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 300;
  font-size: .26em;
  letter-spacing: .02em;
  opacity: .68;
  margin-top: .9em;
}

/* ===== SECTION: HALTUNG (Editorial) ===== */
.editorial {
  background: var(--paper);
  padding: var(--section-y-lg) clamp(20px, 8vw, 100px);
}
.editorial .inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.editorial .inner .eyebrow { display: block; margin-bottom: 14px; }
.editorial h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 50px);
  line-height: 1.1;
  margin: 0 auto clamp(28px, 5vh, 52px);
  color: var(--ink);
  letter-spacing: .005em;
  max-width: 24ch;
}
.editorial h2 em { font-style: normal; color: var(--moss); }
.editorial .text p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.82;
  margin: 0 auto 1.4em;
  color: var(--ink-soft);
  max-width: 52ch;
}
.editorial .pull {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.5;
  color: var(--ink);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: clamp(20px, 3.5vh, 32px) 0;
  margin: clamp(28px, 4vh, 48px) auto;
  max-width: 34ch;
  text-align: center;
}

/* ===== SECTION: ÜBER MICH ===== */
.about {
  padding: clamp(28px, 4vh, 56px) clamp(20px, 6vw, 80px) clamp(48px, 9vh, 105px);
  background: linear-gradient(to bottom, var(--paper) 0%, var(--paper-deep) 100%);
}
.about .grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  text-align: center;
}
.about .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .col .eyebrow { display: block; margin-bottom: 12px; }
.about .col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
}
.about .col p {
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 .9em;
  max-width: 34ch;
}
.about .col .accent-text {
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink);
  margin-top: 14px;
  max-width: 30ch;
}
.about ul.cv {
  list-style: none;
  padding: 0; margin: 0;
  max-width: 34ch;
  width: 100%;
}
.about ul.cv li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(155,143,126,.22);
  display: flex;
  gap: 12px;
  align-items: baseline;
  text-align: left;
}
.about ul.cv li:last-child { border-bottom: none; }
.about ul.cv li .yr {
  font-style: italic;
  color: var(--gold);
  flex: 0 0 3.6em;
  font-size: 13.5px;
  font-weight: 400;
}
.about ul.cv li span:last-child {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
.about .portrait-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about .portrait {
  width: min(380px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.about .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about .portrait::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
}
.about .portrait-wrap::before {
  content: "";
  position: absolute;
  width: 112%; aspect-ratio: 1;
  border: 1px solid var(--sand);
  border-radius: 50%;
  top: -4%; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 0;
}
.about .name-mark {
  margin-top: 28px;
  text-align: center;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink);
}
.about .name-mark .small {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}

/* ===== SECTION: NATUR & TIERE ===== */
.natur {
  background: var(--paper-deep);
  overflow: hidden;
  padding-top: clamp(32px, 5vh, 64px);
}
.natur-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: stretch;
  min-height: clamp(360px, 60vh, 680px);
}
.natur-text {
  padding: clamp(24px, 4vh, 48px) clamp(20px, 6vw, 80px) var(--section-y-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.natur-text .eyebrow { display: block; margin-bottom: 14px; }
.natur h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.1;
  margin: 0 0 clamp(18px, 2.5vh, 28px);
  color: var(--ink);
  max-width: 100%;
}
.natur .body-text {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.82;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 16px;
}
.natur .note {
  font-style: italic;
  font-size: clamp(13.5px, 1vw, 15px);
  color: var(--stone);
  max-width: 42ch;
  line-height: 1.72;
  margin: 0;
}
.natur-img { overflow: hidden; display: flex; flex-direction: column; }
.natur-img img {
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  min-height: 0;
}
.natur-img img:first-child { flex: none; height: auto; object-fit: unset; } /* Ziegen — vollständig */
.natur-img img:last-child  { flex: none; height: auto; object-fit: unset; } /* Praxis — vollständig */

/* ===== SECTION: ANGEBOTE ===== */
.offers {
  padding: clamp(28px, 5.5vh, 58px) clamp(20px, 6vw, 80px) clamp(90px, 17vh, 200px);
  background: var(--paper-deep);
}
.offers .head {
  text-align: center;
  margin-bottom: clamp(36px, 6vh, 72px);
}
.offers .head .eyebrow { display: block; margin-bottom: 12px; }
.offers .head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 auto;
  color: var(--ink);
  max-width: 22ch;
}
.offers .head h2 em { font-style: normal; color: var(--moss); }
.offers .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--content-max);
  margin: 0 auto;
  background: rgba(155,143,126,.2);
}
.offers .card {
  background: var(--paper-deep);
  padding: clamp(28px, 4vh, 52px) clamp(20px, 3vw, 40px) clamp(24px, 3.5vh, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background .5s ease;
}
.offers .card:hover { background: var(--paper); }
.offers .card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.offers .card p {
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}

/* ===== SECTION: KONTAKT ===== */
.contact {
  padding: clamp(48px, 8vh, 96px) clamp(20px, 6vw, 80px) calc(var(--section-y-lg) * 1.3);
  background: linear-gradient(to bottom, var(--paper-deep) 0%, var(--paper) 40%);
}
.contact .wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.12;
  margin: 0 0 clamp(10px, 1.5vh, 20px);
  color: var(--ink);
  max-width: 26ch;
}
.contact .lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0;
  max-width: 44ch;
}
.contact .detail {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 11px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 4px;
}
.contact .detail dt {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 2px;
  font-weight: 400;
}
.contact .detail dd { margin: 0; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--moss);
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 3px;
  border: 1px solid rgba(91,106,85,.2);
  transition: all .3s ease;
  font-size: 14px;
}
.contact-email:hover { background: rgba(91,106,85,.06); border-color: var(--moss); }
.contact-email svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact .cal {
  margin-top: 36px;
  padding: 28px 24px;
  border: 1px solid var(--sand);
  background: rgba(255,255,255,.3);
}
.contact .cal h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 24px);
  margin: 0 0 6px;
  line-height: 1.1;
}
.contact .cal p { font-size: clamp(13.5px, 1vw, 15.5px); color: var(--ink-soft); margin: 0 0 18px; }
.contact .cal .calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  border-radius: 2px;
  overflow: hidden;
}

/* ===== CONTACT FORM ===== */
.contact-form-col { display: flex; flex-direction: column; }
.contact-form { display: grid; gap: 16px; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .field { display: flex; flex-direction: column; }
.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 16px; /* min 16px — prevents iOS auto-zoom */
  padding: 11px 12px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: white;
  color: var(--ink);
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(91,106,85,.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--stone); opacity: .52; }
.contact-form textarea { resize: vertical; min-height: 340px; }
.contact-form .submit-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contact-form .check input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  font-size: 16px;
  margin-top: 1px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  background: white;
  transition: all .2s ease;
  padding: 0;
}
.contact-form .check input[type="checkbox"]:checked { background: var(--moss); border-color: var(--moss); }
.contact-form .check a { color: var(--moss); }

/* Form feedback message */
.form-msg {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 4px;
  width: 100%;
}
.form-msg.ok { background: rgba(91,106,85,.10); color: var(--moss); }
.form-msg.err { background: rgba(160,40,40,.07); color: #8b2525; }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  padding: 13px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, gap .3s ease;
  min-height: 48px;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); gap: 20px; }
.btn:active { transform: scale(.98); }
.btn::after { content: "→"; letter-spacing: 0; font-size: 13px; }

/* ===== TESTIMONIALS ===== */
.testimonials { margin-top: auto; padding-top: clamp(32px, 5vh, 56px); }
.testimonials .eyebrow { display: block; margin-bottom: 20px; }
.testi-list { display: flex; flex-direction: column; gap: 16px; }
.testi {
  margin: 0;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 3px solid var(--moss);
  border-radius: 0 4px 4px 0;
}
.testi p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink);
  margin: 0 0 8px;
  font-style: italic;
}
.testi cite {
  font-size: 12px;
  font-style: normal;
  color: var(--stone);
  letter-spacing: .04em;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.newsletter h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 24px);
  margin: 0 0 8px;
  line-height: 1.1;
}
.newsletter p { font-size: clamp(13.5px, 1vw, 15.5px); color: var(--ink-soft); margin: 0 0 16px; max-width: 46ch; line-height: 1.72; }
.newsletter .nl-row {
  display: flex;
  border-bottom: 1.5px solid var(--ink);
  align-items: stretch;
}
.newsletter input[type="email"] {
  flex: 1; min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 11px 10px;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.newsletter input[type="email"]::placeholder { color: var(--stone); opacity: .5; }
.newsletter button {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 11px 13px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 400;
  transition: color .2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.newsletter button:hover { color: var(--moss); }
.newsletter .nl-hint { margin-top: 10px; font-size: 12px; line-height: 1.6; color: var(--stone); font-style: italic; }

/* ===== TESTIMONIAL SLIDER ===== */
.testi-slider-section { padding: 0; overflow: hidden; }
.testi-slider { position: relative; overflow: hidden; width: 100%; }
.testi-track {
  display: flex;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}
.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 13, 0.55);
}
.testi-slide-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 6vw, 60px);
  text-align: center;
}
.testi-slide-quote {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(56px, 7vw, 90px);
  line-height: 0.65;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  user-select: none;
  pointer-events: none;
}
.testi-slide blockquote { margin: 0; }
.testi-slide blockquote p {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 23px);
  font-style: italic;
  line-height: 1.68;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.testi-slide blockquote cite {
  display: block;
  font-size: clamp(12px, 0.9vw, 14px);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.testi-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.testi-dot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.30);
  position: relative;
  overflow: hidden;
  cursor: default;
  pointer-events: none;
}
.testi-dot.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform-origin: left center;
  transform: scaleX(0);
  animation: dotProgress 12s linear forwards;
}
@keyframes dotProgress {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { transition: none !important; }
  .testi-dot.is-active::after { animation: none; transform: scaleX(1); }
}
@media (max-width: 600px) {
  .testi-slide { min-height: 420px; }
  .testi-dot { width: 24px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(56px, 8vh, 100px) clamp(20px, 7vw, 100px) clamp(44px, 6vh, 72px);
  border-top: 1px solid rgba(40,38,32,.07);
}
footer .grid {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr .9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
footer .col h5 {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(40,38,32,.48);
  margin: 0 0 24px;
  font-weight: 500;
}
footer .col p,
footer .col address,
footer .col li {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
  font-style: normal;
  font-weight: 300;
  margin: 0;
}
footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
footer .col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
  transition: opacity .25s ease;
}
footer .col a:hover { opacity: 1; }
footer .col .mail {
  display: inline-block;
  margin-top: 16px;
  color: var(--moss);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}
footer .socials { display: flex; gap: 16px; margin-bottom: 24px; }
footer .socials a {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: .68;
}
footer .socials a:hover { opacity: 1; }
footer .socials svg { width: 20px; height: 20px; }
footer .copy { font-size: 12px; line-height: 1.7; color: rgba(40,38,32,.48); max-width: 32ch; margin: 0; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  .75s cubic-bezier(.16,.84,.44,1),
    transform .75s cubic-bezier(.16,.84,.44,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (min-width: 961px) {
  .hero-bg { background-position: 65% 20%; }
}

@media (max-width: 960px) {
  .about .grid { grid-template-columns: 1fr; }
  .about .portrait-wrap { order: -1; }
  .about { padding-bottom: clamp(16px, 3vh, 32px); }
  .about .grid > .col:last-child { margin-top: clamp(24px, 4vh, 48px); }
  .natur-inner { grid-template-columns: 1fr; }
  .natur-img { min-height: 280px; max-height: 400px; }
  .offers .cards { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-nebel { min-height: clamp(480px, 90vh, 900px); }
  .section-sun { min-height: clamp(480px, 90vh, 800px); }
  .section-oak { min-height: clamp(320px, 65vh, 600px); }
  .section-oak .quote { font-size: clamp(32px, 5vw, 48px); }
  .section-oak .quote-sub { font-size: .62em; }
  .section-oak .quote-attr { font-size: .32em; }
}

@media (max-width: 600px) {
  .nav-shell { padding: 12px 16px 6px; }
  .navlinks a { font-size: clamp(18px, 5vw, 22px); }
  .navlinks .dot { display: none; }
  .navlinks { gap: 2px 6px; }
  .hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .hero-content { margin-bottom: 0; }
  .about .grid { gap: 36px; }
  .about .col p { max-width: 100%; }
  .about ul.cv { max-width: 100%; }
  .natur-img { min-height: 240px; max-height: 340px; }
  .offers .cards { gap: 1px; }
  .contact-form .submit-row { flex-direction: column; }
  footer .grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 52px 20px 44px; }
  /* Mobile editorial typography */
  .float-quote { padding: clamp(44px, 9vh, 72px) clamp(20px, 6vw, 36px); }
  .float-quote .display { font-size: clamp(18px, 5vw, 23px); max-width: 20ch; }
  .section-nebel .lede { font-size: clamp(24px, 7vw, 30px); }
  .section-nebel .q-mid { font-size: clamp(20px, 6vw, 26px); }
  .section-nebel .q-pull { font-size: clamp(22px, 6.5vw, 28px); }
  .section-nebel .q-a { font-size: clamp(16px, 4.5vw, 20px); }
  .section-sun .sun-title { font-size: clamp(24px, 7vw, 30px); }
  .section-sun .sun-closer { font-size: clamp(20px, 6vw, 26px); }
  .section-oak .quote { font-size: clamp(30px, 8.5vw, 40px); }
  .section-oak .quote-sub { font-size: .65em; }
  .section-oak .quote-attr { font-size: .34em; }
  .editorial h2 { font-size: clamp(24px, 7vw, 30px); max-width: 100%; }
  .about .col h3 { font-size: clamp(22px, 6.5vw, 28px); }
  .natur h2 { font-size: clamp(22px, 6.5vw, 28px); max-width: 100%; }
  .offers .head h2 { font-size: clamp(24px, 7vw, 30px); max-width: 100%; }
  .offers .card h3 { font-size: clamp(20px, 6vw, 26px); }
  .contact h2 { font-size: clamp(22px, 6.5vw, 28px); max-width: 100%; }
  .editorial .pull { max-width: 100%; }
  .contact .lede { max-width: 100%; }
  /* Float-quote vertical lines — explicit on mobile */
  .float-quote::before,
  .float-quote::after { height: 48px; }
  .float-quote::before { margin-bottom: 28px; }
  .float-quote::after { margin-top: 28px; }
  /* Image sections — background visible on mobile */
  .section-nebel { min-height: clamp(440px, 85vh, 800px); }
  .section-sun { min-height: clamp(440px, 85vh, 700px); }
  .section-oak { min-height: clamp(300px, 60vh, 560px); }
  /* Taller bot-fade on small screens — extended 24px past section boundary */
  .image-flow .bot-fade { height: calc(clamp(180px, 34vh, 360px) + 24px); }
  .image-flow .top-fade { height: calc(clamp(140px, 30vh, 320px) + 24px); }
}

/* Landscape mobile — short viewport (e.g. iPhone landscape) */
@media (orientation: landscape) and (max-height: 560px) {
  .hero { min-height: 100svh; }
  .float-quote { padding: clamp(32px, 6vh, 56px) clamp(20px, 5vw, 40px); }
  .float-quote::before,
  .float-quote::after { height: 36px; }
  .float-quote::before { margin-bottom: 18px; }
  .float-quote::after { margin-top: 18px; }
  .float-quote .display { font-size: clamp(15px, 3.9vw, 22px); }
  .hero-content { margin-top: 0; margin-bottom: 0; }
  .section-nebel,
  .section-sun { min-height: clamp(400px, 70vw, 650px); }
  .section-oak { min-height: clamp(300px, 55vw, 500px); }
  .image-flow .top-fade,
  .image-flow .bot-fade { height: calc(clamp(60px, 16vh, 140px) + 24px); }
}

/* Safe-area insets for notch/Dynamic Island devices */
@supports (padding: env(safe-area-inset-left)) {
  .nav-shell {
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
  footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}
