:root {
  --green: #00523e;
  --dark: #00372b;
  --deep: #002d24;
  --red: #b41831;
  --ivory: #f7f4ec;
  --ivory2: #eee8da;
  --white: #fff;
  --ink: #20231f;
  --muted: #666860;
  --line: #d9d1c0;
  --max: 1180px;
  --shadow: 0 16px 42px rgba(42, 37, 25, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}
p {
  margin-top: 0;
}
.inner {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.review {
  min-height: 34px;
  padding: 7px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  background: var(--deep);
  color: #ffffffd9;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review b {
  color: #ffd7dd;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: #f7f4ecf5;
  backdrop-filter: blur(12px);
}
.nav-wrap {
  width: min(calc(100% - 48px), 1320px);
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 132px;
  height: 76px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: 0.95rem;
  white-space: nowrap;
}
.desktop-nav a:after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--green);
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  transform: scaleX(1);
}
.mobile-nav {
  display: none;
}
.eyebrow,
.kicker {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow {
  margin: 0;
  color: #fff;
}
.kicker {
  margin-bottom: 14px;
  color: var(--red);
}
.redline {
  display: block;
  width: 70px;
  height: 5px;
  margin: 22px 0 28px;
  background: var(--red);
}
.redline.small {
  width: 55px;
  height: 4px;
  margin: 18px 0 24px;
}
.redline.tiny {
  width: 34px;
  height: 3px;
  margin: 12px 0 14px;
}
.home-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      #00372bf0 0%,
      #00372bba 38%,
      #00372b24 74%,
      #0000000a 100%
    ),
    url("../../../Startseite/STRATO_Upload/V09/assets/images/01_Titelbild_Training.jpg")
      center 48% / cover no-repeat;
}
.home-hero-content {
  padding: 110px 0 96px;
}
.home-hero h1,
.detail-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.4rem);
}
.hero-lead {
  max-width: 730px;
  margin: 26px 0 38px;
  color: #fff;
  font:
    clamp(1.55rem, 3vw, 2.6rem) / 1.3 Georgia,
    serif;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  min-height: 51px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
}
.button.primary {
  border-color: var(--red);
  background: var(--red);
}
.section {
  padding: 88px 0;
}
.white {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: center;
  gap: 64px;
}
.intro-logo {
  width: min(100%, 320px);
  justify-self: end;
}
.lead {
  max-width: 880px;
  margin: 0;
  font-size: 1.25rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--ivory);
  box-shadow: 0 10px 28px #20231f17;
  transition: 0.18s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.service-card > img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
.service-card > div {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.cardline {
  width: 42px;
  height: 5px;
  margin: 0 0 18px;
}
.service-card h3 {
  margin: 0 0 13px;
  color: var(--dark);
  font-size: clamp(1.85rem, 2.7vw, 2.25rem);
  overflow-wrap: anywhere;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}
.service-card div > b {
  margin-top: auto;
  padding-top: 16px;
  color: var(--red);
  font-size: 2rem;
}
.feature-strip-section {
  padding: 0 0 88px;
}
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature-panel {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 28px #20231f20;
  isolation: isolate;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.feature-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    0deg,
    #002d24e8 0%,
    #002d2494 46%,
    #002d241f 100%
  );
}
.feature-panel-sales {
  background-image: url("assets/images/03_Pferde_Weide.jpg");
  background-position: center 55%;
}
.feature-panel-team {
  background-image: url("assets/images/02_Rehabilitation_Wald.jpg");
  background-position: center 45%;
}
.feature-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.feature-panel:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}
.feature-panel-content {
  width: 100%;
  padding: 34px;
  color: #fff;
}
.feature-panel-content small,
.feature-panel-content strong,
.feature-panel-content b {
  display: block;
}
.feature-panel-content small {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.feature-panel-content strong {
  font:
    clamp(2rem, 3vw, 2.8rem) / 1.1 Georgia,
    "Times New Roman",
    serif;
}
.feature-panel-content b {
  margin-top: 15px;
  color: #fff;
  font-size: 0.9rem;
}
.feature-panel-content b span {
  margin-left: 5px;
  color: #ffd7dd;
  font-size: 1.25rem;
}
.philosophy {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 64px;
}
.philosophy > img {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  object-fit: cover;
}
.team-link {
  margin-top: 32px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}
.team-link span > b,
.team-link small {
  display: block;
}
.team-link span > b {
  color: var(--dark);
  font:
    1.85rem Georgia,
    serif;
}
.team-link small {
  color: var(--muted);
}
.team-link > strong {
  color: var(--red);
  font-size: 2rem;
}
.statement {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(0deg, #002d24e6, #002d240d 70%),
    url("../../../Startseite/STRATO_Upload/V09/assets/images/03_Pferde_Weide.jpg")
      center 52% / cover no-repeat;
}
.statement .inner {
  padding-block: 90px 72px;
  color: #fff;
}
.statement h2 {
  max-width: 870px;
  color: #fff;
}
.statement p {
  margin: 20px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-grid address {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ivory);
  font-style: normal;
}
.contact-grid address h3 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: 2rem;
}
.contact-grid address p,
.contact-grid address small {
  color: var(--muted);
}
footer {
  padding: 52px 0;
  background: var(--dark);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-grid > div > strong {
  font:
    2.5rem Georgia,
    serif;
}
.footer-grid p {
  margin: 4px 0 0;
  color: #ffffffcc;
}
.footer-right {
  text-align: right;
}
.detail-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, #00372beb, #00372b59 70%),
    linear-gradient(0deg, #002d24b3, transparent 60%),
    var(--hero) var(--hero-position) / cover no-repeat;
}
.hero-content {
  padding-block: 90px 62px;
  color: #fff;
}
.hero-content > p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 1.2rem;
}
.status {
  margin-top: 30px;
  padding: 8px 13px;
  display: inline-flex;
  border: 1px dashed #ffffffb3;
  border-radius: 5px;
  background: #002d245c;
  color: #ffffffe6;
  font-size: 0.8rem;
}
.detail-section {
  background:
    radial-gradient(circle at 14% 18%, #ffffffc7, transparent 32%), var(--ivory);
}
.detail-intro {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}
.detail-intro .redline {
  margin-inline: auto;
}
.detail-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.detail-list {
  display: grid;
  gap: 14px;
}
.detail-card {
  min-height: 172px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff9e;
}
.placeholder {
  min-height: 150px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #00523e0a, #b4183109), var(--ivory2);
  color: #716f68;
}
.camera {
  color: var(--green);
  font-size: 2.4rem;
}
.placeholder b,
.placeholder small {
  display: block;
}
.placeholder b {
  color: var(--dark);
  font:
    1.1rem Georgia,
    serif;
}
.placeholder small {
  max-width: 200px;
  margin-top: 3px;
  font-size: 0.75rem;
}
.detail-copy {
  padding: 24px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
}
.number {
  color: var(--red);
  font:
    700 1.05rem Georgia,
    serif;
}
.detail-copy h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}
.detail-copy p {
  margin: 0;
  color: var(--muted);
}
.note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.note > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid;
  border-radius: 50%;
  font:
    italic 1rem Georgia,
    serif;
}
.note p {
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
}
.person {
  min-width: 0;
  padding: 12px 12px 20px;
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffffa8;
  text-align: center;
}
.person:nth-child(6) {
  grid-column: 5 / span 2;
}
.person:nth-child(7) {
  grid-column: 4 / span 2;
}
.person:nth-child(8) {
  grid-column: 6 / span 2;
}
.person .placeholder {
  min-height: 180px;
  padding: 16px 8px;
  flex-direction: column;
  text-align: center;
}
.person .placeholder small {
  max-width: 150px;
}
.person .redline {
  margin-inline: auto;
}
.person h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.35rem;
}
.person p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.person.assistenz {
  border-color: #00523e59;
}
.person.inhaber {
  background: #eee8da8f;
}
@media (max-width: 1120px) {
  .nav-wrap {
    width: min(calc(100% - 32px), 1320px);
  }
  .brand img {
    width: 112px;
  }
  .desktop-nav {
    gap: 14px;
  }
  .desktop-nav a {
    font-size: 0.85rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .person {
    grid-column: span 2;
  }
  .person:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .person:nth-child(5) {
    grid-column: 4 / span 2;
  }
  .person:nth-child(6) {
    grid-column: 3 / span 2;
  }
  .person:nth-child(7) {
    grid-column: 2 / span 2;
  }
  .person:nth-child(8) {
    grid-column: 4 / span 2;
  }
}
@media (max-width: 900px) {
  .review {
    justify-content: space-between;
    gap: 10px;
    font-size: 0.65rem;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    position: relative;
    display: block;
  }
  .mobile-nav summary {
    width: 47px;
    height: 47px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary i {
    width: 100%;
    height: 2px;
    background: var(--dark);
  }
  .mobile-nav nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(330px, calc(100vw - 32px));
    padding: 10px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }
  .mobile-nav nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }
  .mobile-nav nav a.active {
    background: #fff;
    color: var(--green);
  }
  .philosophy {
    grid-template-columns: 1fr;
  }
  .philosophy > img {
    height: 480px;
  }
  .detail-card {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  }
}
@media (max-width: 680px) {
  .inner {
    width: min(calc(100% - 32px), var(--max));
  }
  .review {
    padding-inline: 16px;
  }
  .review span:nth-child(2) {
    display: none;
  }
  .nav-wrap {
    min-height: 74px;
  }
  .brand img {
    width: 104px;
    height: 66px;
  }
  .home-hero {
    min-height: 650px;
    background-position: 58% 48%;
  }
  .home-hero-content {
    padding-block: 85px 75px;
  }
  .home-hero h1,
  .detail-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }
  .hero-lead {
    font-size: 1.55rem;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding-block: 68px;
  }
  .intro-grid,
  .service-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .intro-grid,
  .contact-grid {
    gap: 42px;
  }
  .intro-logo {
    width: 220px;
    justify-self: start;
  }
  .service-card {
    min-height: 0;
  }
  .service-card > img {
    height: 220px;
  }
  .feature-strip-section {
    padding-bottom: 68px;
  }
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .feature-panel {
    min-height: 245px;
  }
  .feature-panel-content {
    padding: 28px;
  }
  .philosophy {
    gap: 40px;
  }
  .philosophy > img {
    height: 360px;
  }
  .statement {
    min-height: 470px;
  }
  .statement .inner {
    padding-block: 72px 54px;
  }
  .footer-right {
    text-align: left;
  }
  .detail-hero {
    min-height: 540px;
    background-position: 56% center;
  }
  .hero-content {
    padding-block: 72px 50px;
  }
  .detail-intro {
    margin-bottom: 36px;
    text-align: left;
  }
  .detail-intro .redline {
    margin-inline: 0;
  }
  .detail-card {
    grid-template-columns: 1fr;
  }
  .placeholder {
    min-height: 138px;
  }
  .detail-copy {
    padding: 24px 22px 28px;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .person,
  .person:nth-child(n) {
    grid-column: auto;
  }
  .person:nth-child(6) {
    grid-column: 1/-1;
    width: calc(50% - 9px);
    justify-self: center;
  }
  .person .placeholder {
    min-height: 150px;
  }
}
@media (max-width: 420px) {
  .team-grid {
    gap: 12px;
  }
  .person {
    padding: 8px 8px 16px;
  }
  .person h3 {
    font-size: 1.08rem;
  }
  .person .placeholder {
    min-height: 135px;
  }
  .person:nth-child(6) {
    width: calc(50% - 6px);
  }
}
