@charset "UTF-8";

:root {
    --hof-red: #a72f31;
    --hof-red-dark: #8f2327;
    --hof-cream: #fcf7eb;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--hof-red);
    background: #ffffff;
}

.site-header {
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: 148px;
    background: #ffffff;
    border-bottom: 1px solid rgba(167, 47, 49, 0.08);
    box-shadow: 0 10px 28px rgba(98, 75, 46, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 148px;
    padding-top: 14px;
    padding-bottom: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: 215px;
    height: auto;
    transition: transform 180ms ease;
}

.brand:hover img,
.brand:focus img {
    transform: translateY(-2px);
}

.brand:focus-visible,
.contact-bar a:focus-visible,
.main-nav .nav-link:focus-visible,
.visit-button:focus-visible,
.hero-button:focus-visible,
.features-link:focus-visible {
    outline: 3px solid rgba(167, 47, 49, 0.22);
    outline-offset: 5px;
}

.header-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-end;
}

.contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 38px;
    padding: 0 22px;
    border: 1px solid rgba(167, 47, 49, 0.08);
    border-radius: 999px;
    background: var(--hof-cream);
    color: var(--hof-red);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(98, 75, 46, 0.05);
}

.contact-bar span,
.contact-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.contact-bar a:hover,
.contact-bar a:focus {
    color: var(--hof-red-dark);
}

.contact-bar i {
    font-size: 14px;
}

.main-nav {
    position: relative;
    width: 100%;
    padding: 28px 0 0;
}

.main-nav .navbar-collapse {
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.main-nav .navbar-nav {
    align-items: center;
    gap: 36px;
}

.main-nav .nav-link {
    position: relative;
    padding: 0 0 10px;
    color: var(--hof-red);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 180ms ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
    color: var(--hof-red-dark);
}

.main-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--hof-red);
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after,
.main-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.visit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 4px 18px 6px;
    border: 2px solid var(--hof-red);
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-family: "Freehand", cursive;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(167, 47, 49, 0.08);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.visit-button:hover,
.visit-button:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--hof-red);
    border-radius: 8px;
    padding: 7px 9px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(167, 47, 49, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28167, 47, 49, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    background: var(--hof-cream);
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1fr);
    align-items: center;
    gap: 56px;
    min-height: 660px;
    padding-top: 62px;
    padding-bottom: 66px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding-left: 108px;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: -34px;
    left: -16px;
    z-index: -1;
    width: 230px;
    height: 342px;
    opacity: 0.86;
    background: url("../img/aehre.png") center / contain no-repeat;
}

.hero-kicker,
.hero-copy h1 {
    display: block;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    line-height: 1;
}

.hero-kicker {
    margin-bottom: 12px;
    font-size: 40px;
}

.hero-copy h1 {
    margin: 0 0 30px;
    font-size: 62px;
    font-weight: 400;
}

.hero-copy p {
    max-width: 520px;
    margin: 0 0 32px;
    color: #5f544b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 19px 10px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hof-red);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-button:hover,
.hero-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    box-shadow: 0 18px 34px rgba(167, 47, 49, 0.22);
    transform: translateY(-2px);
}

.hero-images {
    position: relative;
    justify-self: end;
    width: min(100%, 620px);
    min-height: 560px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 6px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.14);
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-large {
    top: -52px;
    right: 40px;
    z-index: 1;
    width: 485px;
    aspect-ratio: 1;
}

.hero-image-medium {
    right: -4px;
    bottom: 30px;
    z-index: 2;
    width: 315px;
    aspect-ratio: 1;
}

.hero-image-small {
    left: 20px;
    bottom: 4px;
    z-index: 3;
    width: 292px;
    aspect-ratio: 1;
}

.features {
    position: relative;
    overflow: hidden;
    background: var(--hof-cream);
}

.features::before,
.features::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.features::before {
    left: 0;
    bottom: -10px;
    width: 330px;
    height: 190px;
    opacity: 0.88;
    background-image: url("../img/schuppen-links.png");
}

.features::after {
    right: 0;
    bottom: -16px;
    width: 330px;
    height: 280px;
    opacity: 0.86;
    background-image: url("../img/aehren-rechts.png");
}

.features-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 560px;
    padding-top: 70px;
    padding-bottom: 68px;
}

.features h2 {
    max-width: 780px;
    margin: 0 0 46px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.feature-cards {
    width: 100%;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.feature-cards > [class*="col-"] {
    display: flex;
}

.feature-card {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 16px 16px 30px;
    border: 0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(98, 75, 46, 0.1);
    text-align: center;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(167, 47, 49, 0.08);
    border-radius: inherit;
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    min-height: 62px;
    margin: 6px 8px 16px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.08;
}

.feature-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: clamp(180px, 14vw, 220px);
    object-fit: cover;
    border-radius: 18px;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin: 24px 16px 0;
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.feature-card:hover,
.feature-card:focus-within {
    box-shadow: 0 22px 44px rgba(98, 75, 46, 0.15);
    transform: translateY(-4px);
}

.features-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 42px;
    margin-top: 48px;
    padding: 9px 18px 10px;
    border: 2px solid var(--hof-red);
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(167, 47, 49, 0.08);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.features-link i {
    font-size: 18px;
    transform: rotate(-18deg);
    transform-origin: center;
}

.features-link:hover,
.features-link:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.rearing {
    overflow: hidden;
    background: #ffffff;
}

.rearing-container {
    padding-top: 78px;
    padding-bottom: 90px;
}

.rearing h2 {
    max-width: 820px;
    margin: 0 auto;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.rearing h2 span {
    display: block;
    margin-top: 8px;
    font-size: 38px;
}

.rearing-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 46px;
    width: 100%;
    margin: 62px 0 0;
}

.rearing-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, 3fr) minmax(0, 9fr);
    align-items: center;
    gap: clamp(42px, 5vw, 82px);
    min-height: 250px;
}

.rearing-row:nth-child(2) {
    width: calc(100% - 92px);
    margin-left: 92px;
}

.rearing-row:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 178px;
    bottom: -118px;
    left: clamp(72px, calc(12.5% - 54px), 122px);
    z-index: 0;
    width: 108px;
    pointer-events: none;
    opacity: 0.14;
    background-image: url("../img/kuhspuren.svg");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 86px auto;
    transform: rotate(6deg);
    transform-origin: center top;
}

.rearing-image,
.rearing-copy {
    position: relative;
    z-index: 1;
}

.rearing-image {
    justify-self: center;
    overflow: hidden;
    width: min(100%, 250px);
    aspect-ratio: 1;
    margin: 0;
    border: 6px solid var(--hof-cream);
    border-radius: 50%;
    background: var(--hof-cream);
    box-shadow: 0 18px 34px rgba(98, 75, 46, 0.12);
}

.rearing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rearing-row:nth-child(1) .rearing-image img {
    object-position: center 48%;
}

.rearing-row:nth-child(3) .rearing-image img {
    object-position: 44% center;
}

.rearing-copy {
    max-width: 920px;
}

.rearing-copy h3 {
    margin: 0 0 16px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.08;
}

.rearing-copy p {
    margin: 0;
    color: #5f544b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.animals {
    overflow: hidden;
    background: var(--hof-cream);
}

.animals-container {
    padding-top: 76px;
    padding-bottom: 86px;
}

.animals h2 {
    margin: 0 auto;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.animals h2 span {
    display: block;
    margin-top: 8px;
    font-size: 36px;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 34px;
    margin-top: 58px;
}

.animal-profile {
    min-width: 0;
    text-align: center;
}

.animal-photo {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.18;
    margin: 0;
    border: 6px solid #ffffff;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.1);
}

.animal-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animal-profile:nth-child(1) .animal-photo img {
    object-position: 42% center;
}

.animal-profile:nth-child(2) .animal-photo img {
    object-position: 66% center;
}

.animal-profile:nth-child(5) .animal-photo img {
    object-position: 38% center;
}

.animal-name {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(78%, 238px);
    aspect-ratio: 1.91;
    margin: -58px auto 0;
    padding: 18px 24px 28px;
    color: var(--hof-red);
    background-image: url("../img/holzschild.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: "Freehand", cursive;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.discover {
    overflow: hidden;
    background: #ffffff;
}

.discover-container {
    padding-top: 78px;
    padding-bottom: 92px;
}

.discover h2 {
    max-width: 920px;
    margin: 0 auto;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.discover h2 span {
    display: block;
    margin-top: 8px;
    font-size: 36px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-top: 58px;
}

.discover-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.1);
}

.discover-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.33;
    height: clamp(220px, 18vw, 270px);
    object-fit: cover;
}

.discover-card:nth-child(1) img {
    object-position: center 42%;
}

.discover-card:nth-child(3) img {
    object-position: 52% 22%;
}

.discover-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 26px 28px;
}

.discover-copy h3 {
    margin: 0 0 15px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
}

.discover-copy p {
    margin: 0 0 24px;
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.discover-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 38px;
    margin-top: auto;
    padding: 8px 16px 9px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hof-red);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.discover-button i {
    font-size: 13px;
}

.discover-button:hover,
.discover-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
}

.farm-contact {
    overflow: hidden;
    background: var(--hof-red);
}

.farm-contact-container {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    align-items: center;
    gap: 56px;
    min-height: 450px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.farm-contact-copy {
    max-width: 520px;
}

.farm-contact h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.08;
}

.farm-contact-copy p {
    margin: 0 0 32px;
    color: var(--hof-cream);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.farm-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    color: #ffffff;
    font-style: normal;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.farm-contact-list span,
.farm-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.farm-contact-list a:hover,
.farm-contact-list a:focus {
    color: var(--hof-cream);
}

.farm-contact-list i {
    flex: 0 0 22px;
    color: var(--hof-cream);
    font-size: 18px;
    text-align: center;
}

.farm-contact-visual {
    position: relative;
    min-height: 330px;
}

.farm-contact-field {
    position: absolute;
    inset: 22px 0 0 auto;
    width: min(100%, 610px);
    height: 300px;
    border: 7px solid #ffffff;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 22px 48px rgba(67, 20, 21, 0.24);
}

.farm-contact-cow {
    position: absolute;
    right: 18px;
    bottom: -18px;
    z-index: 1;
    width: min(72%, 430px);
    height: auto;
    filter: drop-shadow(0 22px 22px rgba(67, 20, 21, 0.28));
}

.unser-hof-page {
    overflow: hidden;
    background: #ffffff;
}

.unser-hof-hero {
    position: relative;
    background: var(--hof-cream);
}

.unser-hof-hero::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -42px;
    width: 330px;
    height: 280px;
    pointer-events: none;
    opacity: 0.7;
    background: url("../img/aehren-rechts.png") center / contain no-repeat;
}

.unser-hof-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 82px;
}

.unser-hof-kicker,
.unser-hof-hero h1,
.unser-hof-section h2,
.unser-hof-section-title,
.unser-hof-card h3,
.unser-hof-feature h3,
.unser-hof-placeholder h2 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.unser-hof-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.unser-hof-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.unser-hof-lead {
    margin: 0 0 30px;
    color: #5f544b;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
}

.unser-hof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.unser-hof-button,
.unser-hof-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 18px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.unser-hof-button {
    color: #ffffff;
    background: var(--hof-red);
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
}

.unser-hof-button-secondary {
    border: 2px solid var(--hof-red);
    color: var(--hof-red);
    background: #ffffff;
}

.unser-hof-button:hover,
.unser-hof-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.unser-hof-button-secondary:hover,
.unser-hof-button-secondary:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.unser-hof-hero-image {
    overflow: hidden;
    margin: 0;
    border: 7px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.14);
}

.unser-hof-hero-image img,
.unser-hof-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unser-hof-hero-image img {
    aspect-ratio: 1.24;
}

.unser-hof-strip {
    background: #ffffff;
}

.unser-hof-strip .container {
    padding-top: 56px;
    padding-bottom: 58px;
}

.unser-hof-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 14px 30px rgba(98, 75, 46, 0.08);
}

.unser-hof-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.unser-hof-card p,
.unser-hof-section p,
.unser-hof-feature p,
.unser-hof-placeholder p,
.unser-hof-list {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.unser-hof-card p,
.unser-hof-section p,
.unser-hof-feature p,
.unser-hof-placeholder p {
    margin: 0;
}

.unser-hof-section {
    background: var(--hof-cream);
}

.unser-hof-section .container {
    padding-top: 78px;
    padding-bottom: 82px;
}

.unser-hof-section h2,
.unser-hof-section-title,
.unser-hof-placeholder h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.unser-hof-section-title {
    text-align: center;
}

.unser-hof-section h2 span {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.unser-hof-media {
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    margin: 0;
    border: 7px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(98, 75, 46, 0.1);
}

.unser-hof-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.unser-hof-list li {
    position: relative;
    padding-left: 30px;
}

.unser-hof-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hof-red);
}

.unser-hof-features {
    background: #ffffff;
}

.unser-hof-features .container {
    padding-top: 74px;
    padding-bottom: 78px;
}

.unser-hof-feature {
    height: 100%;
    padding: 18px 18px 28px;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.unser-hof-feature img {
    display: block;
    width: 100%;
    height: clamp(220px, 18vw, 270px);
    object-fit: cover;
    border-radius: 18px;
}

.unser-hof-feature h3 {
    margin: 22px 0 12px;
    font-size: 30px;
}

.unser-hof-placeholder {
    background: var(--hof-red);
}

.unser-hof-placeholder .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.unser-hof-placeholder h2,
.unser-hof-placeholder p {
    color: #ffffff;
}

.unser-hof-placeholder-note {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.unsere-rinder-page {
    overflow: hidden;
    background: #ffffff;
}

.rinder-hero {
    position: relative;
    background: #ffffff;
}

.rinder-hero::before {
    content: "";
    position: absolute;
    left: -48px;
    bottom: -36px;
    width: 300px;
    height: 174px;
    pointer-events: none;
    opacity: 0.42;
    background: url("../img/schuppen-links.png") center / contain no-repeat;
}

.rinder-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 84px;
}

.rinder-kicker,
.rinder-hero h1,
.rinder-section h2,
.rinder-card h3,
.rinder-profile h3,
.rinder-note h2,
.rinder-stage h3 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.rinder-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.rinder-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.rinder-lead,
.rinder-section p,
.rinder-card p,
.rinder-profile p,
.rinder-stage p,
.rinder-note p,
.rinder-list {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.rinder-lead {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.75;
}

.rinder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rinder-button,
.rinder-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 18px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.rinder-button {
    color: #ffffff;
    background: var(--hof-red);
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
}

.rinder-button-secondary {
    border: 2px solid var(--hof-red);
    color: var(--hof-red);
    background: #ffffff;
}

.rinder-button:hover,
.rinder-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.rinder-button-secondary:hover,
.rinder-button-secondary:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.rinder-hero-image,
.rinder-media {
    overflow: hidden;
    margin: 0;
    border: 7px solid var(--hof-cream);
    border-radius: 28px;
    background: var(--hof-cream);
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.13);
}

.rinder-hero-image img,
.rinder-media img,
.rinder-profile img,
.rinder-stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rinder-hero-image img {
    aspect-ratio: 1.42;
}

.rinder-cards,
.rinder-herd {
    background: var(--hof-cream);
}

.rinder-cards .container,
.rinder-herd .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.rinder-card,
.rinder-profile,
.rinder-stage {
    height: 100%;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.rinder-card {
    padding: 28px;
}

.rinder-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.rinder-card p,
.rinder-section p,
.rinder-profile p,
.rinder-stage p,
.rinder-note p {
    margin: 0;
}

.rinder-section {
    background: #ffffff;
}

.rinder-section .container {
    padding-top: 78px;
    padding-bottom: 84px;
}

.rinder-section h2,
.rinder-note h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.rinder-section h2 span {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.rinder-media {
    height: 100%;
    min-height: 360px;
}

.rinder-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.rinder-list li {
    position: relative;
    padding-left: 30px;
}

.rinder-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hof-red);
}

.rinder-section-title {
    margin: 0 0 34px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.rinder-profile {
    overflow: hidden;
}

.rinder-profile img {
    height: clamp(220px, 18vw, 270px);
}

.rinder-profile-copy {
    padding: 24px 24px 28px;
}

.rinder-profile h3 {
    margin: 0 0 12px;
    font-size: 31px;
}

.rinder-stages {
    background: #ffffff;
}

.rinder-stages .container {
    padding-top: 76px;
    padding-bottom: 82px;
}

.rinder-stage {
    display: grid;
    grid-template-columns: minmax(180px, 5fr) minmax(0, 7fr);
    overflow: hidden;
}

.rinder-stage img {
    min-height: 230px;
}

.rinder-stage-copy {
    padding: 28px;
}

.rinder-stage h3 {
    margin: 0 0 14px;
    font-size: 31px;
}

.rinder-note {
    background: var(--hof-red);
}

.rinder-note .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.rinder-note h2,
.rinder-note p {
    color: #ffffff;
}

.rinder-note-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hoffuehrung-page {
    overflow: hidden;
    background: #ffffff;
}

.tour-hero {
    position: relative;
    background: var(--hof-cream);
}

.tour-hero::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 320px;
    height: 272px;
    pointer-events: none;
    opacity: 0.62;
    background: url("../img/aehren-rechts.png") center / contain no-repeat;
}

.tour-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 84px;
}

.tour-kicker,
.tour-hero h1,
.tour-section h2,
.tour-card h3,
.tour-step h3,
.tour-note h2,
.tour-info h3 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.tour-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.tour-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.tour-lead,
.tour-section p,
.tour-card p,
.tour-step p,
.tour-note p,
.tour-info p,
.tour-list {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.tour-lead {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.75;
}

.tour-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tour-button,
.tour-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 18px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tour-button {
    color: #ffffff;
    background: var(--hof-red);
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
}

.tour-button-secondary {
    border: 2px solid var(--hof-red);
    color: var(--hof-red);
    background: #ffffff;
}

.tour-button:hover,
.tour-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.tour-button-secondary:hover,
.tour-button-secondary:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.tour-hero-image,
.tour-media {
    overflow: hidden;
    margin: 0;
    border: 7px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.13);
}

.tour-hero-image img,
.tour-media img,
.tour-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-image img {
    aspect-ratio: 1.34;
    object-position: center 42%;
}

.tour-cards {
    background: #ffffff;
}

.tour-cards .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.tour-card {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.tour-card img {
    height: clamp(190px, 15vw, 230px);
}

.tour-card-copy {
    padding: 24px 24px 28px;
}

.tour-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
}

.tour-card p,
.tour-section p,
.tour-step p,
.tour-note p,
.tour-info p {
    margin: 0;
}

.tour-section {
    background: var(--hof-cream);
}

.tour-section .container {
    padding-top: 78px;
    padding-bottom: 84px;
}

.tour-section h2,
.tour-note h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.tour-section h2 span {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.tour-media {
    height: 100%;
    min-height: 360px;
}

.tour-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tour-list li {
    position: relative;
    padding-left: 30px;
}

.tour-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hof-red);
}

.tour-steps {
    background: #ffffff;
}

.tour-steps .container {
    padding-top: 76px;
    padding-bottom: 82px;
}

.tour-section-title {
    margin: 0 0 34px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.tour-step {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.tour-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--hof-red);
    font-size: 15px;
    font-weight: 900;
}

.tour-step h3 {
    margin: 0 0 12px;
    font-size: 30px;
}

.tour-info-band {
    background: var(--hof-cream);
}

.tour-info-band .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.tour-info {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(98, 75, 46, 0.08);
}

.tour-info h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.tour-note {
    background: var(--hof-red);
}

.tour-note .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.tour-note h2,
.tour-note p {
    color: #ffffff;
}

.tour-note-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hofladen-page {
    overflow: hidden;
    background: #ffffff;
}

.shop-hero {
    position: relative;
    background: #ffffff;
}

.shop-hero::before {
    content: "";
    position: absolute;
    left: -42px;
    bottom: -34px;
    width: 290px;
    height: 168px;
    pointer-events: none;
    opacity: 0.38;
    background: url("../img/schuppen-links.png") center / contain no-repeat;
}

.shop-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 84px;
}

.shop-kicker,
.shop-hero h1,
.shop-section h2,
.shop-card h3,
.shop-product h3,
.shop-info h3,
.shop-note h2 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.shop-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.shop-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.shop-lead,
.shop-section p,
.shop-card p,
.shop-product p,
.shop-info p,
.shop-note p,
.shop-list {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.shop-lead {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.75;
}

.shop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.shop-button,
.shop-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 18px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.shop-button {
    color: #ffffff;
    background: var(--hof-red);
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
}

.shop-button-secondary {
    border: 2px solid var(--hof-red);
    color: var(--hof-red);
    background: #ffffff;
}

.shop-button:hover,
.shop-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.shop-button-secondary:hover,
.shop-button-secondary:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.shop-hero-image,
.shop-media {
    overflow: hidden;
    margin: 0;
    border: 7px solid var(--hof-cream);
    border-radius: 28px;
    background: var(--hof-cream);
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.13);
}

.shop-hero-image img,
.shop-media img,
.shop-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-image img {
    aspect-ratio: 1.32;
}

.shop-cards,
.shop-products {
    background: var(--hof-cream);
}

.shop-cards .container,
.shop-products .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.shop-card,
.shop-product,
.shop-info {
    height: 100%;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.shop-card,
.shop-info {
    padding: 28px;
}

.shop-card h3,
.shop-product h3,
.shop-info h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.shop-card p,
.shop-section p,
.shop-product p,
.shop-info p,
.shop-note p {
    margin: 0;
}

.shop-section {
    background: #ffffff;
}

.shop-section .container {
    padding-top: 78px;
    padding-bottom: 84px;
}

.shop-section h2,
.shop-note h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.shop-section h2 span {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.shop-media {
    height: 100%;
    min-height: 360px;
}

.shop-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.shop-list li {
    position: relative;
    padding-left: 30px;
}

.shop-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hof-red);
}

.shop-section-title {
    margin: 0 0 34px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.shop-product {
    overflow: hidden;
}

.shop-product img {
    height: clamp(200px, 16vw, 250px);
}

.shop-product-copy {
    padding: 24px 24px 28px;
}

.shop-info-band {
    background: #ffffff;
}

.shop-info-band .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.shop-note {
    background: var(--hof-red);
}

.shop-note .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.shop-note h2,
.shop-note p {
    color: #ffffff;
}

.shop-note-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mithelfen-page {
    overflow: hidden;
    background: #ffffff;
}

.help-hero {
    position: relative;
    background: var(--hof-cream);
}

.help-hero::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 320px;
    height: 272px;
    pointer-events: none;
    opacity: 0.62;
    background: url("../img/aehren-rechts.png") center / contain no-repeat;
}

.help-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 84px;
}

.help-kicker,
.help-hero h1,
.help-section h2,
.help-card h3,
.help-area h3,
.help-step h3,
.help-note h2,
.help-info h3 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.help-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.help-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.help-lead,
.help-section p,
.help-card p,
.help-area p,
.help-step p,
.help-note p,
.help-info p,
.help-list {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.help-lead {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.75;
}

.help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.help-button,
.help-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 18px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.help-button {
    color: #ffffff;
    background: var(--hof-red);
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
}

.help-button-secondary {
    border: 2px solid var(--hof-red);
    color: var(--hof-red);
    background: #ffffff;
}

.help-button:hover,
.help-button:focus {
    color: #ffffff;
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.help-button-secondary:hover,
.help-button-secondary:focus {
    color: #ffffff;
    background: var(--hof-red);
    transform: translateY(-2px);
}

.help-hero-image,
.help-media {
    overflow: hidden;
    margin: 0;
    border: 7px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.13);
}

.help-hero-image img,
.help-media img,
.help-area img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-hero-image img {
    aspect-ratio: 1.32;
    object-position: 52% 22%;
}

.help-cards,
.help-areas {
    background: #ffffff;
}

.help-cards .container,
.help-areas .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.help-card,
.help-area,
.help-step,
.help-info {
    height: 100%;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.help-card,
.help-step,
.help-info {
    padding: 28px;
}

.help-card h3,
.help-area h3,
.help-step h3,
.help-info h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.help-card p,
.help-section p,
.help-area p,
.help-step p,
.help-note p,
.help-info p {
    margin: 0;
}

.help-section {
    background: var(--hof-cream);
}

.help-section .container {
    padding-top: 78px;
    padding-bottom: 84px;
}

.help-section h2,
.help-note h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.help-section h2 span {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.help-media {
    height: 100%;
    min-height: 360px;
}

.help-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.help-list li {
    position: relative;
    padding-left: 30px;
}

.help-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hof-red);
}

.help-section-title {
    margin: 0 0 34px;
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
}

.help-area {
    overflow: hidden;
}

.help-area img {
    height: clamp(200px, 16vw, 250px);
}

.help-area-copy {
    padding: 24px 24px 28px;
}

.help-steps {
    background: var(--hof-cream);
}

.help-steps .container {
    padding-top: 76px;
    padding-bottom: 82px;
}

.help-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--hof-red);
    font-size: 15px;
    font-weight: 900;
}

.help-info-band {
    background: #ffffff;
}

.help-info-band .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.help-note {
    background: var(--hof-red);
}

.help-note .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.help-note h2,
.help-note p {
    color: #ffffff;
}

.help-note-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.kontakt-page {
    overflow: hidden;
    background: #ffffff;
}

.contact-hero {
    position: relative;
    background: var(--hof-cream);
}

.contact-hero::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 320px;
    height: 272px;
    pointer-events: none;
    opacity: 0.62;
    background: url("../img/aehren-rechts.png") center / contain no-repeat;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 84px;
}

.contact-kicker,
.contact-hero h1,
.contact-section h2,
.contact-card h3,
.contact-form-panel h2,
.contact-note h2 {
    color: var(--hof-red);
    font-family: "Freehand", cursive;
    font-weight: 400;
    line-height: 1.05;
}

.contact-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.contact-hero h1 {
    margin: 0 0 26px;
    font-size: 58px;
}

.contact-lead,
.contact-section p,
.contact-card p,
.contact-note p,
.contact-list,
.contact-form-panel p {
    color: #5f544b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.72;
}

.contact-lead {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.75;
}

.contact-hero-image {
    overflow: hidden;
    margin: 0;
    border: 7px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(98, 75, 46, 0.13);
}

.contact-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.34;
    object-fit: cover;
}

.contact-info {
    background: #ffffff;
}

.contact-info .container {
    padding-top: 62px;
    padding-bottom: 70px;
}

.contact-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: var(--hof-cream);
    box-shadow: 0 16px 34px rgba(98, 75, 46, 0.09);
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.contact-card p,
.contact-section p,
.contact-note p,
.contact-form-panel p {
    margin: 0;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li,
.contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #5f544b;
    text-decoration: none;
}

.contact-list i {
    flex: 0 0 22px;
    padding-top: 4px;
    color: var(--hof-red);
    text-align: center;
}

.contact-list a:hover,
.contact-list a:focus {
    color: var(--hof-red);
}

.contact-section {
    background: var(--hof-cream);
}

.contact-section .container {
    padding-top: 78px;
    padding-bottom: 84px;
}

.contact-section h2,
.contact-form-panel h2,
.contact-note h2 {
    margin: 0 0 24px;
    font-size: 48px;
}

.contact-form-panel {
    height: 100%;
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(98, 75, 46, 0.11);
}

.contact-form-panel .wpcf7 {
    margin-top: 28px;
}

.contact-form-panel .wpcf7-form {
    display: grid;
    gap: 18px;
}

.contact-form-panel .form-row {
    display: grid;
    gap: 8px;
    margin: 0;
}

.contact-form-panel label,
.contact-form-panel .form-label {
    margin: 0;
    color: var(--hof-red);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.contact-form-panel .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border: 2px solid rgba(167, 47, 49, 0.16);
    border-radius: 8px;
    color: #5f544b;
    background: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    outline: none;
}

.contact-form-panel textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    border-color: var(--hof-red);
    box-shadow: 0 0 0 4px rgba(167, 47, 49, 0.1);
}

.contact-form-panel .wpcf7-list-item {
    margin: 0;
}

.contact-form-panel .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f544b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.55;
}

.contact-form-panel input[type="checkbox"] {
    flex: 0 0 auto;
    margin-top: 3px;
}

.contact-form-panel .wpcf7-submit {
    display: inline-flex;
    justify-self: start;
    min-height: 42px;
    padding: 9px 18px 10px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--hof-red);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(167, 47, 49, 0.16);
    transition: background 180ms ease, transform 180ms ease;
}

.contact-form-panel .wpcf7-submit:hover,
.contact-form-panel .wpcf7-submit:focus {
    background: var(--hof-red-dark);
    transform: translateY(-2px);
}

.contact-form-panel .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: var(--hof-red);
    font-size: 13px;
    font-weight: 800;
}

.contact-form-panel .wpcf7-response-output {
    margin: 4px 0 0;
    padding: 12px 14px;
    border-radius: 8px;
    color: #5f544b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-note {
    background: var(--hof-red);
}

.contact-note .container {
    padding-top: 68px;
    padding-bottom: 72px;
}

.contact-note h2,
.contact-note p {
    color: #ffffff;
}

.contact-note-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--hof-red);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer {
    background: var(--hof-cream);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 118px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.footer-credits {
    color: #5f544b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.footer-credits p {
    margin: 0;
}

.footer-links,
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-menu a {
    color: var(--hof-red);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--hof-red-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsive Breakpoints - bitte alles hier rein, und die Breakpoints nicht verändern! */
@media screen and (min-width: 1921px) {
    .container {max-width: 1440px;}
}

@media screen and (max-width: 1399px) {
    .hero,
    .hero-container {
        min-height: 620px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1fr);
        gap: 42px;
    }

    .hero-copy {
        padding-left: 88px;
    }

    .hero-copy h1 {
        font-size: 56px;
    }

    .hero-images {
        width: min(100%, 560px);
        min-height: 520px;
    }

    .hero-image-large {
        top: -34px;
        right: 22px;
        width: 430px;
    }

    .hero-image-medium {
        width: 285px;
    }

    .hero-image-small {
        left: 20px;
        width: 265px;
    }

    .features::before {
        width: 260px;
        height: 150px;
    }

    .features::after {
        width: 260px;
        height: 220px;
    }

    .features-container {
        padding-top: 62px;
    }

    .feature-card h3 {
        font-size: 28px;
    }

    .rearing-timeline {
        width: 100%;
    }

    .rearing-row {
        gap: clamp(38px, 4vw, 68px);
    }

    .animals-grid {
        gap: 42px 28px;
    }

    .discover-grid {
        gap: 28px;
    }

    .discover-copy {
        padding-right: 22px;
        padding-left: 22px;
    }

    .farm-contact-container {
        grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1fr);
        gap: 42px;
    }

    .farm-contact-field {
        height: 280px;
    }

    .farm-contact-cow {
        width: min(74%, 390px);
    }
}

@media screen and (max-width: 1199px) {
    .header-container {
        gap: 28px;
    }

    .brand img {
        width: 210px;
    }

    .contact-bar {
        gap: 16px;
        padding: 0 16px;
        font-size: 12px;
    }

    .main-nav .navbar-collapse {
        gap: 26px;
    }

    .main-nav .navbar-nav {
        gap: 26px;
    }

    .main-nav .nav-link {
        font-size: 14px;
    }

    .hero,
    .hero-container {
        min-height: 600px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
        gap: 34px;
    }

    .hero-copy {
        padding-left: 50px;
    }

    .hero-copy::before {
        top: -28px;
        left: -54px;
        width: 210px;
        height: 312px;
    }

    .hero-kicker {
        font-size: 34px;
    }

    .hero-copy h1 {
        font-size: 50px;
    }

    .hero-images {
        width: min(100%, 465px);
        min-height: 468px;
    }

    .hero-image-large {
        top: -24px;
        right: 18px;
        width: 365px;
    }

    .hero-image-medium {
        right: 0;
        bottom: 24px;
        width: 242px;
    }

    .hero-image-small {
        left: 0;
        bottom: 8px;
        width: 235px;
    }

    .features h2 {
        font-size: 40px;
    }

    .feature-card h3 {
        min-height: 56px;
        font-size: 25px;
    }

    .feature-card p {
        margin-right: 10px;
        margin-left: 10px;
        font-size: 14px;
    }

    .rearing h2 {
        font-size: 44px;
    }

    .rearing h2 span {
        font-size: 34px;
    }

    .rearing-row {
        grid-template-columns: minmax(220px, 3fr) minmax(0, 9fr);
        gap: clamp(34px, 4vw, 56px);
        min-height: 230px;
    }

    .rearing-row:nth-child(2) {
        width: calc(100% - 64px);
        margin-left: 64px;
    }

    .rearing-row:not(:last-child)::after {
        top: 162px;
        left: clamp(58px, calc(12.5% - 49px), 104px);
        width: 98px;
        background-size: 78px auto;
    }

    .rearing-image {
        width: min(100%, 220px);
    }

    .animals h2 {
        font-size: 44px;
    }

    .animals h2 span {
        font-size: 32px;
    }

    .animal-name {
        width: min(82%, 220px);
        font-size: 31px;
    }

    .discover h2 {
        font-size: 44px;
    }

    .discover h2 span {
        font-size: 32px;
    }

    .discover-copy h3 {
        font-size: 27px;
    }

    .discover-copy p {
        font-size: 14px;
    }

    .farm-contact-container {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
        gap: 34px;
    }

    .farm-contact h2 {
        font-size: 42px;
    }

    .farm-contact-field {
        height: 260px;
    }

    .farm-contact-cow {
        right: 4px;
        width: min(76%, 350px);
    }

    .unser-hof-hero h1 {
        font-size: 50px;
    }

    .unser-hof-section h2,
    .unser-hof-section-title,
    .unser-hof-placeholder h2 {
        font-size: 42px;
    }

    .unser-hof-section h2 span {
        font-size: 31px;
    }

    .rinder-hero h1 {
        font-size: 50px;
    }

    .rinder-section h2,
    .rinder-section-title,
    .rinder-note h2 {
        font-size: 42px;
    }

    .rinder-section h2 span {
        font-size: 31px;
    }

    .tour-hero h1 {
        font-size: 50px;
    }

    .tour-section h2,
    .tour-section-title,
    .tour-note h2 {
        font-size: 42px;
    }

    .tour-section h2 span {
        font-size: 31px;
    }

    .shop-hero h1 {
        font-size: 50px;
    }

    .shop-section h2,
    .shop-section-title,
    .shop-note h2 {
        font-size: 42px;
    }

    .shop-section h2 span {
        font-size: 31px;
    }

    .help-hero h1 {
        font-size: 50px;
    }

    .help-section h2,
    .help-section-title,
    .help-note h2 {
        font-size: 42px;
    }

    .help-section h2 span {
        font-size: 31px;
    }

    .contact-hero h1 {
        font-size: 50px;
    }

    .contact-section h2,
    .contact-form-panel h2,
    .contact-note h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 991px)  {
    .site-header,
    .header-container {
        min-height: 0;
    }

    .header-container {
        align-items: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .brand img {
        width: 190px;
    }

    .header-content {
        align-items: flex-end;
    }

    .contact-bar {
        display: none;
    }

    .main-nav {
        display: flex;
        justify-content: flex-end;
        padding-top: 0;
    }

    .main-nav .navbar-collapse {
        position: absolute;
        top: calc(100% + 12px);
        right: 12px;
        left: 12px;
        z-index: 30;
        align-items: flex-start;
        padding: 22px;
        border: 1px solid rgba(167, 47, 49, 0.12);
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .main-nav .navbar-nav {
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 20px;
    }

    .main-nav .nav-link {
        padding-bottom: 8px;
    }

    .hero,
    .hero-container {
        min-height: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .hero-copy {
        max-width: 650px;
        padding-left: 82px;
    }

    .hero-copy::before {
        top: -26px;
        left: -22px;
        width: 205px;
        height: 300px;
    }

    .hero-images {
        width: min(100%, 570px);
        min-height: 438px;
        margin: 0 auto;
    }

    .hero-image-large {
        top: 0;
        right: 48px;
        width: 350px;
    }

    .hero-image-medium {
        right: 18px;
        bottom: 0;
        width: 245px;
    }

    .hero-image-small {
        left: 22px;
        bottom: 0;
        width: 240px;
    }

    .features-container {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .features::before {
        opacity: 0.34;
    }

    .features::after {
        opacity: 0.34;
    }

    .feature-card {
        border-radius: 22px;
    }

    .feature-cards {
        --bs-gutter-y: 1.5rem;
    }

    .feature-card h3 {
        min-height: auto;
    }

    .rearing-container {
        padding-top: 64px;
        padding-bottom: 74px;
    }

    .rearing-timeline {
        width: 100%;
        margin-top: 52px;
    }

    .rearing-row {
        grid-template-columns: minmax(190px, 3fr) minmax(0, 9fr);
        gap: 32px;
        min-height: 198px;
    }

    .rearing-row:nth-child(2) {
        width: calc(100% - 42px);
        margin-left: 42px;
    }

    .rearing-row:not(:last-child)::after {
        top: 136px;
        bottom: -98px;
        left: clamp(52px, calc(12.5% - 43px), 80px);
        width: 86px;
        background-size: 68px auto;
    }

    .rearing-image {
        width: min(100%, 178px);
    }

    .rearing-copy h3 {
        font-size: 29px;
    }

    .animals-container {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .animals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 28px;
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .animal-photo {
        border-radius: 22px;
    }

    .discover-container {
        padding-top: 64px;
        padding-bottom: 76px;
    }

    .discover-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 640px;
        margin-right: auto;
        margin-left: auto;
    }

    .discover-card {
        border-radius: 22px;
    }

    .discover-card img {
        aspect-ratio: 1.65;
        height: clamp(270px, 44vw, 390px);
    }

    .farm-contact-container {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: 0;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .farm-contact-copy {
        max-width: 620px;
    }

    .farm-contact-visual {
        width: min(100%, 640px);
        min-height: 330px;
        margin: 0 auto;
    }

    .farm-contact-field {
        right: 0;
        left: 0;
        width: 100%;
    }

    .farm-contact-cow {
        right: 24px;
        width: min(70%, 390px);
    }

    .unser-hof-hero .container,
    .unser-hof-section .container,
    .unser-hof-features .container,
    .unser-hof-placeholder .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .unser-hof-hero::after {
        opacity: 0.28;
    }

    .unser-hof-media {
        min-height: 300px;
    }

    .rinder-hero .container,
    .rinder-section .container,
    .rinder-stages .container,
    .rinder-note .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .rinder-cards .container,
    .rinder-herd .container {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .rinder-media {
        min-height: 300px;
    }

    .rinder-stage {
        grid-template-columns: 1fr;
    }

    .rinder-stage img {
        min-height: 0;
        height: clamp(230px, 42vw, 340px);
    }

    .tour-hero .container,
    .tour-section .container,
    .tour-steps .container,
    .tour-note .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .tour-cards .container,
    .tour-info-band .container {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .tour-hero::after {
        opacity: 0.26;
    }

    .tour-media {
        min-height: 300px;
    }

    .shop-hero .container,
    .shop-section .container,
    .shop-note .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .shop-cards .container,
    .shop-products .container,
    .shop-info-band .container {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .shop-media {
        min-height: 300px;
    }

    .help-hero .container,
    .help-section .container,
    .help-steps .container,
    .help-note .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .help-cards .container,
    .help-areas .container,
    .help-info-band .container {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .help-hero::after {
        opacity: 0.26;
    }

    .help-media {
        min-height: 300px;
    }

    .contact-hero .container,
    .contact-section .container,
    .contact-note .container {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .contact-info .container {
        padding-top: 54px;
        padding-bottom: 60px;
    }

    .contact-hero::after {
        opacity: 0.26;
    }
}

@media screen and (max-width: 767px)  {
    .header-container {
        gap: 20px;
    }

    .brand img {
        width: 165px;
    }

    .hero-copy {
        max-width: 560px;
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
    }

    .hero-copy::before {
        display: none;
    }

    .hero-kicker {
        font-size: 31px;
    }

    .hero-copy h1 {
        margin-bottom: 24px;
        font-size: 45px;
    }

    .hero-copy p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-images {
        width: min(100%, 510px);
        min-height: 372px;
    }

    .hero-image-large {
        right: 28px;
        width: 300px;
    }

    .hero-image-medium {
        right: 8px;
        bottom: 4px;
        width: 205px;
    }

    .hero-image-small {
        left: 8px;
        bottom: 4px;
        width: 200px;
    }

    .features h2 {
        margin-bottom: 42px;
        font-size: 35px;
    }

    .features::before {
        width: 210px;
        height: 120px;
    }

    .features::after {
        width: 210px;
        height: 178px;
    }

    .feature-card {
        padding: 14px 14px 26px;
    }

    .features-link {
        margin-top: 38px;
    }

    .unser-hof-kicker {
        font-size: 31px;
    }

    .unser-hof-hero h1 {
        font-size: 43px;
    }

    .unser-hof-section h2,
    .unser-hof-section-title,
    .unser-hof-placeholder h2 {
        font-size: 34px;
    }

    .unser-hof-section h2 span {
        font-size: 26px;
    }

    .unser-hof-card,
    .unser-hof-feature {
        border-radius: 20px;
    }

    .unser-hof-card h3,
    .unser-hof-feature h3 {
        font-size: 25px;
    }

    .unser-hof-hero-image,
    .unser-hof-media {
        border-width: 5px;
        border-radius: 22px;
    }

    .rinder-kicker {
        font-size: 31px;
    }

    .rinder-hero h1 {
        font-size: 43px;
    }

    .rinder-section h2,
    .rinder-section-title,
    .rinder-note h2 {
        font-size: 34px;
    }

    .rinder-section h2 span {
        font-size: 26px;
    }

    .rinder-card,
    .rinder-profile,
    .rinder-stage {
        border-radius: 20px;
    }

    .rinder-card h3,
    .rinder-profile h3,
    .rinder-stage h3 {
        font-size: 25px;
    }

    .rinder-hero-image,
    .rinder-media {
        border-width: 5px;
        border-radius: 22px;
    }

    .rinder-profile img {
        height: clamp(210px, 54vw, 280px);
    }

    .tour-kicker {
        font-size: 31px;
    }

    .tour-hero h1 {
        font-size: 43px;
    }

    .tour-section h2,
    .tour-section-title,
    .tour-note h2 {
        font-size: 34px;
    }

    .tour-section h2 span {
        font-size: 26px;
    }

    .tour-card,
    .tour-step,
    .tour-info {
        border-radius: 20px;
    }

    .tour-card h3,
    .tour-step h3,
    .tour-info h3 {
        font-size: 25px;
    }

    .tour-hero-image,
    .tour-media {
        border-width: 5px;
        border-radius: 22px;
    }

    .tour-card img {
        height: clamp(200px, 52vw, 270px);
    }

    .shop-kicker {
        font-size: 31px;
    }

    .shop-hero h1 {
        font-size: 43px;
    }

    .shop-section h2,
    .shop-section-title,
    .shop-note h2 {
        font-size: 34px;
    }

    .shop-section h2 span {
        font-size: 26px;
    }

    .shop-card,
    .shop-product,
    .shop-info {
        border-radius: 20px;
    }

    .shop-card h3,
    .shop-product h3,
    .shop-info h3 {
        font-size: 25px;
    }

    .shop-hero-image,
    .shop-media {
        border-width: 5px;
        border-radius: 22px;
    }

    .shop-product img {
        height: clamp(200px, 52vw, 270px);
    }

    .help-kicker {
        font-size: 31px;
    }

    .help-hero h1 {
        font-size: 43px;
    }

    .help-section h2,
    .help-section-title,
    .help-note h2 {
        font-size: 34px;
    }

    .help-section h2 span {
        font-size: 26px;
    }

    .help-card,
    .help-area,
    .help-step,
    .help-info {
        border-radius: 20px;
    }

    .help-card h3,
    .help-area h3,
    .help-step h3,
    .help-info h3 {
        font-size: 25px;
    }

    .help-hero-image,
    .help-media {
        border-width: 5px;
        border-radius: 22px;
    }

    .help-area img {
        height: clamp(200px, 52vw, 270px);
    }

    .contact-kicker {
        font-size: 31px;
    }

    .contact-hero h1 {
        font-size: 43px;
    }

    .contact-section h2,
    .contact-form-panel h2,
    .contact-note h2 {
        font-size: 34px;
    }

    .contact-card,
    .contact-form-panel {
        border-radius: 20px;
    }

    .contact-card h3 {
        font-size: 25px;
    }

    .contact-hero-image {
        border-width: 5px;
        border-radius: 22px;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .rearing-container {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .rearing h2 {
        font-size: 37px;
    }

    .rearing h2 span {
        font-size: 29px;
    }

    .rearing-timeline {
        gap: 34px;
        margin-top: 44px;
    }

    .rearing-row {
        grid-template-columns: 132px minmax(0, 1fr);
        align-items: flex-start;
        gap: 24px;
        min-height: 0;
    }

    .rearing-row:nth-child(2) {
        width: 100%;
        margin-left: 0;
    }

    .rearing-row:not(:last-child)::after {
        top: 100px;
        bottom: -62px;
        left: 35px;
        width: 62px;
        opacity: 0.12;
        background-size: 50px auto;
    }

    .rearing-image {
        width: 118px;
        border-width: 4px;
    }

    .rearing-copy h3 {
        margin-bottom: 10px;
        font-size: 26px;
    }

    .rearing-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .animals-container {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .animals h2 {
        font-size: 37px;
    }

    .animals h2 span {
        font-size: 28px;
    }

    .animals-grid {
        gap: 36px 22px;
        margin-top: 44px;
    }

    .animal-photo {
        border-width: 4px;
        border-radius: 18px;
    }

    .animal-name {
        width: min(86%, 198px);
        margin-top: -46px;
        padding: 14px 20px 24px;
        font-size: 28px;
    }

    .discover-container {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .discover h2 {
        font-size: 37px;
    }

    .discover h2 span {
        font-size: 28px;
    }

    .discover-grid {
        margin-top: 44px;
    }

    .discover-copy {
        padding: 23px 22px 25px;
    }

    .farm-contact-container {
        padding-top: 56px;
        padding-bottom: 60px;
    }

    .farm-contact h2 {
        font-size: 36px;
    }

    .farm-contact-copy p {
        margin-bottom: 26px;
        font-size: 16px;
    }

    .farm-contact-list {
        font-size: 14px;
    }

    .farm-contact-visual {
        min-height: 290px;
    }

    .farm-contact-field {
        height: 240px;
        border-width: 5px;
        border-radius: 22px;
    }

    .farm-contact-cow {
        right: 8px;
        bottom: -8px;
        width: min(76%, 340px);
    }

    .footer-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        min-height: 0;
    }

    .footer-links,
    .footer-menu {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 575px)  {
    .header-container {
        gap: 12px;
    }

    .brand img {
        width: 142px;
    }

    .hero-container {
        gap: 32px;
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .hero-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-images {
        width: min(100%, 350px);
        min-height: 292px;
    }

    .hero-image {
        border-width: 3px;
    }

    .hero-image-large {
        right: 16px;
        width: 230px;
    }

    .hero-image-medium {
        right: 0;
        bottom: 6px;
        width: 156px;
    }

    .hero-image-small {
        left: 0;
        bottom: 8px;
        width: 154px;
    }

    .features-container {
        padding-top: 48px;
        padding-bottom: 44px;
    }

    .features h2 {
        font-size: 31px;
    }

    .feature-card h3 {
        font-size: 23px;
    }

    .features-link {
        gap: 12px;
        margin-top: 34px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 13px;
    }

    .rearing-container {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .rearing h2 {
        font-size: 32px;
    }

    .rearing h2 span {
        font-size: 24px;
    }

    .rearing-timeline {
        gap: 30px;
        margin-top: 38px;
    }

    .rearing-row {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 18px;
    }

    .rearing-row:not(:last-child)::after {
        top: 78px;
        bottom: -50px;
        left: 25px;
        width: 44px;
        background-size: 38px auto;
    }

    .rearing-image {
        width: 88px;
        border-width: 3px;
    }

    .rearing-copy h3 {
        font-size: 22px;
    }

    .rearing-copy p {
        font-size: 14px;
    }

    .animals-container {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .animals h2 {
        font-size: 32px;
    }

    .animals h2 span {
        font-size: 24px;
    }

    .animals-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 360px;
        margin-top: 38px;
    }

    .animal-name {
        width: min(80%, 210px);
        margin-top: -50px;
        font-size: 29px;
    }

    .discover-container {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .discover h2 {
        font-size: 32px;
    }

    .discover h2 span {
        font-size: 24px;
    }

    .discover-grid {
        margin-top: 38px;
    }

    .discover-card img {
        aspect-ratio: 1.38;
        height: clamp(230px, 58vw, 270px);
    }

    .discover-copy h3 {
        font-size: 24px;
    }

    .farm-contact-container {
        gap: 34px;
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .farm-contact h2 {
        font-size: 32px;
    }

    .farm-contact-list span,
    .farm-contact-list a {
        align-items: flex-start;
    }

    .farm-contact-visual {
        min-height: 250px;
    }

    .farm-contact-field {
        height: 210px;
    }

    .farm-contact-cow {
        width: min(86%, 300px);
    }

    .footer-container {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .footer-links,
    .footer-menu {
        gap: 10px 18px;
    }
}

@media screen and (max-width: 400px)  {
    .brand img {
        width: 126px;
    }

    .visit-button {
        font-size: 19px;
    }

    .hero-kicker {
        font-size: 28px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-images {
        width: min(100%, 305px);
        min-height: 252px;
    }

    .hero-image-large {
        right: 10px;
        width: 200px;
    }

    .hero-image-medium,
    .hero-image-small {
        width: 132px;
    }

    .features h2 {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .feature-card p {
        margin-right: 8px;
        margin-left: 8px;
    }

    .rearing h2 {
        font-size: 29px;
    }

    .rearing h2 span {
        font-size: 22px;
    }

    .rearing-row {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;
    }

    .rearing-row:not(:last-child)::after {
        top: 68px;
        left: 21px;
        width: 36px;
        background-size: 32px auto;
    }

    .rearing-image {
        width: 72px;
    }

    .rearing-copy h3 {
        font-size: 20px;
    }

    .animals h2 {
        font-size: 29px;
    }

    .animals h2 span {
        font-size: 22px;
    }

    .animal-name {
        width: min(84%, 196px);
        margin-top: -44px;
        font-size: 26px;
    }

    .discover h2 {
        font-size: 29px;
    }

    .discover h2 span {
        font-size: 22px;
    }

    .discover-copy {
        padding-right: 18px;
        padding-left: 18px;
    }

    .discover-copy h3 {
        font-size: 22px;
    }

    .farm-contact h2 {
        font-size: 29px;
    }

    .farm-contact-visual {
        min-height: 224px;
    }

    .farm-contact-field {
        height: 190px;
    }

    .farm-contact-cow {
        width: min(90%, 260px);
    }
}
