:root {
  --sand: #ece5d8;
  --paper: #f7f3ea;
  --ink: #233a37;
  --ink-soft: #3a524d;
  --sea: #5c7a6f;
  --sun: #cc7a52;
  --mist: #8a9a93;
  --line: rgba(35, 58, 55, 0.14);
  --shadow: 0 18px 50px -28px rgba(35, 58, 55, 0.45);
  --maxw: 1180px;
}

section#stimmen .fs-carousel-dots {
  display: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .hero-fallback {
  background: url("https://www.fasten-sylt.de/wp-content/uploads/fit-layouter/60.jpg")
    center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(35, 58, 55, 0.25) 0%,
    rgba(35, 58, 55, 0.2) 40%,
    rgba(35, 58, 55, 0.82) 100%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 64px;
}
.hero .eyebrow {
  color: #f2c9a8;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: #e9d9b6;
}
.hero p.lead {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  margin-bottom: 32px;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Tideline divider ---------- */
.tideline {
  display: block;
  width: 100%;
  height: 34px;
  color: var(--sand);
}
.tideline.paper {
  color: var(--paper);
}

/* ---------- Section scaffolding ---------- */
section {
  padding: 84px 0;
}
.section-head {
  max-width: 62ch;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  color: var(--sea);
}


.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 6px;
  margin:0 auto;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
}

/* ---------- 2-column alternating editorial rows ---------- */
.rows {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.row .media {
  position: relative;
}
.row .media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
/* signature: thin offset frame echoing a Strandkorb edge */
.row .media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--sea);
  border-radius: 6px;
  opacity: 0.55;
}
.row:nth-child(even) .media {
  order: 2;
}
.row:nth-child(even) .media::before {
  inset: 18px 18px -18px -18px;
}
.row .copy .kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 14px;
  display: block;
}

.row .copy h3 {
  color: var(--main-red-color);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.row .copy p:last-child {
  margin-bottom: 0;
}
.row .copy a.inline {
  color: var(--sea);
  font-weight: 500;
  border-bottom: 1px solid var(--sea);
  transition: color 0.2s;
}
.row .copy a.inline:hover {
  color: var(--sun);
  border-color: var(--sun);
}

/* ---------- Dark feature (Longevity) ---------- */
.feature {
  background: var(--ink);
  color: #eaf1 EC;
  color: #eaf1eb;
}
.feature .eyebrow {
  color: #f2c9a8;
}
.feature .row .copy h3 {
  color: #fff;
}
.feature .row .copy p {
  color: rgba(234, 241, 235, 0.82);
}
.feature .row .media::before {
  border-color: rgba(233, 217, 182, 0.5);
}
.feature .row .copy a.inline {
  color: #e9d9b6;
  border-color: #e9d9b6;
}

#intro article {
  background: white;
}

#intro article .copy {
  padding: 30px;
}

@media (max-width: 860px) {
  nav.main {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 28px 22px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 30;
  }
  nav.main.open {
    transform: none;
  }
  nav.main a {
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .topbar .left {
    display: none;
  }
  .row,
  .goal-grid,
  .voice-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .row {
    gap: 30px;
  }
  .row:nth-child(even) .media {
    order: 0;
  }
  .row .media::before,
  .row:nth-child(even) .media::before {
    inset: 14px -14px -14px 14px;
  }
  .rows {
    gap: 64px;
  }
  section {
    padding: 64px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
