:root {
    --bg: #f6f0e8;
    --bg-soft: #fbf7f1;
    --surface: #fffdfa;
    --surface-strong: #f0e4d3;
    --ink: #231a15;
    --muted: #6d5b4e;
    --line: rgba(72, 50, 35, 0.14);
    --accent: #b9773f;
    --accent-deep: #8f5728;
    --forest: #22322b;
    --forest-soft: #32463c;
    --shadow: 0 20px 55px rgba(34, 23, 17, 0.16);
    --radius: 28px;
    --radius-small: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(185, 119, 63, 0.12), transparent 28%),
        linear-gradient(180deg, #f4eee5 0%, #f9f5ef 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
ul,
ol,
figure,
blockquote {
    margin: 0;
}

ul {
    padding-left: 1.2rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.sr-only,
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.topbar {
    background: linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(249, 240, 229, 0.95));
    border-bottom: 1px solid rgba(80, 60, 45, 0.1);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
}

.topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    min-height: 5.7rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.topbar-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.topbar-side-right {
    align-items: flex-end;
}

.topbar-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-deep);
}

.topbar-copy,
.topbar-phone {
    font-size: 0.95rem;
    color: #4f3d31;
}

.topbar-side-right {
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-end;
}

.brand-centered {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.brand-image {
    width: min(240px, 26vw);
    height: auto;
}

.topbar-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent), #d5965b);
    color: white;
    min-height: 3rem;
    padding: 0 1.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    box-shadow: 0 12px 30px rgba(143, 87, 40, 0.25);
}

.topbar-button:hover,
.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(143, 87, 40, 0.3);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.button-contrast {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.site-header {
    position: sticky;
    top: 5.7rem;
    z-index: 25;
    background: rgba(35, 26, 22, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 3.55rem;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    flex: 1;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: white;
}

.button-nav {
    min-height: 2.35rem;
    padding: 0 1.05rem;
    font-size: 0.76rem;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.flash {
    padding: 0.9rem 0;
    font-size: 0.96rem;
}

.flash-success {
    background: #edf7ef;
    color: #224c2c;
}

.flash-error {
    background: #fff1ef;
    color: #852d20;
}

.hero {
    color: white;
    background:
        linear-gradient(180deg, rgba(18, 12, 10, 0.14) 0%, rgba(18, 12, 10, 0.38) 40%, rgba(18, 12, 10, 0.72) 100%),
        var(--hero-image) center/cover no-repeat;
}

.hero-home {
    min-height: calc(100vh - 9.25rem);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6.4rem 0 3.8rem;
}

.hero-grid-centered {
    justify-items: center;
    text-align: center;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    line-height: 0.98;
    margin-bottom: 1.2rem;
    max-width: 12ch;
}

.hero-text,
.page-hero p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
    max-width: 38rem;
}

.eyebrow,
.card-kicker,
.footer-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.hero .eyebrow,
.page-hero-dark .eyebrow,
.section-accent .eyebrow,
.cta-band .eyebrow {
    color: #efc594;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 980px;
}

.fact-card {
    background: rgba(28, 19, 16, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-small);
    padding: 1.15rem 1.25rem;
    backdrop-filter: blur(8px);
}

.fact-card span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #efc594;
    margin-bottom: 0.8rem;
}

.fact-card p {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.92);
}

.section,
.page-hero {
    padding: 5.75rem 0;
}

.section-light {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.98)),
        radial-gradient(circle at top right, rgba(185, 119, 63, 0.08), transparent 22%);
}

.section-accent,
.page-hero-dark {
    background:
        radial-gradient(circle at top left, rgba(239, 197, 148, 0.12), transparent 24%),
        linear-gradient(180deg, #1f2d26 0%, #24332b 100%);
    color: white;
}

.page-hero {
    background:
        linear-gradient(180deg, rgba(24, 18, 15, 0.93), rgba(39, 29, 24, 0.86)),
        linear-gradient(135deg, rgba(185, 119, 63, 0.15), transparent 60%);
    color: white;
}

.page-hero-inner {
    max-width: 48rem;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
}

.section-heading h2,
.split-copy h2,
.quote-panel blockquote,
.info-panel h2,
.contact-panel h2,
.form-panel h2,
.site-footer h2,
.cta-band h2 {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
}

.feature-grid,
.experience-grid,
.footer-grid,
.contact-grid,
.gallery-grid {
    display: grid;
    gap: 1.4rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.experience-card,
.contact-panel,
.form-panel,
.quote-panel,
.info-panel,
.gallery-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 2.3rem 2rem 2.1rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 241, 0.96)),
        radial-gradient(circle at top center, rgba(185, 119, 63, 0.06), transparent 38%);
}

.feature-card h3,
.experience-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.85rem;
}

.feature-icon {
    display: inline-flex;
    width: 4.6rem;
    height: 4.6rem;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    border: 1px solid rgba(185, 119, 63, 0.24);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 236, 218, 0.92));
    position: relative;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.feature-icon-berg::before {
    left: 1rem;
    bottom: 1.3rem;
    width: 2.4rem;
    height: 1.5rem;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: skewX(-35deg) rotate(-10deg);
}

.feature-icon-sonne::before {
    inset: 1.2rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.feature-icon-sonne::after {
    inset: 0.75rem;
    border-radius: 50%;
    border: 1px dashed rgba(185, 119, 63, 0.7);
}

.feature-icon-familie::before {
    left: 1rem;
    right: 1rem;
    top: 1.25rem;
    bottom: 1.15rem;
    border: 2px solid var(--accent);
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
}

.feature-icon-familie::after {
    left: 1.65rem;
    right: 1.65rem;
    bottom: 1.95rem;
    height: 2px;
    background: var(--accent);
}

.feature-card p:last-child,
.experience-card p,
.split-copy p,
.legal-copy p,
.legal-copy li,
.contact-list span,
.site-footer p {
    color: var(--muted);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.split-grid-wide {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.split-media img,
.experience-card img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.split-media {
    min-height: 27rem;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-media-card {
    min-height: 22rem;
}

.split-copy {
    display: grid;
    gap: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #e3b27a);
    box-shadow: 0 0 0 4px rgba(185, 119, 63, 0.14);
}

.check-list-light li {
    color: rgba(255, 255, 255, 0.92);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-deep);
    font-weight: 600;
}

.text-link::after {
    content: "→";
}

.image-band {
    margin-top: 1.6rem;
}

.image-band img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-card {
    overflow: hidden;
}

.experience-card img {
    height: 18rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.experience-card-copy {
    padding: 1.7rem;
}

.quote-panel {
    padding: 3rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 230, 0.9)),
        radial-gradient(circle at top center, rgba(185, 119, 63, 0.08), transparent 25%);
}

.quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(185, 119, 63, 0.32);
}

.quote-panel blockquote {
    max-width: 16ch;
    margin: 0 auto 1rem;
}

.quote-source {
    color: var(--muted);
}

.ref-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.photo-stack {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 36rem;
    background: #d9c6b0;
}

.photo-stack figure {
    margin: 0;
    overflow: hidden;
}

.photo-stack-main {
    grid-row: 1 / span 2;
}

.photo-stack-main img,
.photo-stack-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-panel {
    padding: 3rem 2.7rem;
    background: linear-gradient(180deg, #362925 0%, #2b211d 100%);
    color: white;
    display: grid;
    align-content: center;
    gap: 1rem;
}

.why-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin-top: 0.5rem;
}

.why-item {
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #efc594;
}

.text-link-light {
    color: #efc594;
}

.cta-band {
    padding-top: 0;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #8f5728, #bc8048);
    color: white;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    max-width: 20ch;
}

.gallery-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.gallery-card {
    overflow: hidden;
    min-height: 21rem;
}

.gallery-card-large {
    grid-row: span 2;
    min-height: 43.5rem;
}

.info-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.1rem;
}

.info-panel-inline {
    margin-top: 2rem;
}

.contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
}

.contact-panel,
.form-panel {
    padding: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    margin: 1.4rem 0 1.6rem;
}

.contact-list li {
    display: grid;
    gap: 0.18rem;
}

.contact-list strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-deep);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: var(--ink);
}

.label-block,
.consent-row {
    margin-top: 1rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(66, 49, 37, 0.18);
    border-radius: 18px;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    font: inherit;
    color: var(--ink);
    background: rgba(255, 252, 248, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 10rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(185, 119, 63, 0.72);
    box-shadow: 0 0 0 4px rgba(185, 119, 63, 0.12);
}

small,
.form-error {
    color: #a44331;
}

.consent-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
}

.consent-row input {
    width: 1.15rem;
    min-height: 1.15rem;
    margin-top: 0.25rem;
}

.legal-copy {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.88);
    padding: 2.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-copy h2,
.legal-copy h3 {
    margin: 1rem 0 0;
    font-size: 1.55rem;
}

.site-footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #1e1917 0%, #171311 100%);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
}

.footer-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero-grid,
    .feature-grid,
    .split-grid,
    .contact-grid,
    .footer-grid,
    .gallery-grid,
    .experience-grid,
    .ref-panel {
        grid-template-columns: 1fr;
    }

    .gallery-card-large {
        grid-row: auto;
        min-height: 22rem;
    }

    .photo-stack {
        min-height: 28rem;
    }

    .info-panel,
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: 10.5ch;
    }
}

@media (max-width: 860px) {
    .topbar {
        position: static;
    }

    .site-header {
        top: 0;
    }

    .topbar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 1rem 0;
        text-align: center;
    }

    .topbar-side-right,
    .topbar-side-left {
        align-items: center;
    }

    .topbar-side-right {
        flex-direction: column;
    }

    .nav-toggle {
        display: inline-block;
        position: absolute;
        left: 0;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 1px) 1rem auto;
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        border-radius: 24px;
        background: rgba(30, 22, 19, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav .button-nav {
        justify-content: center;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-grid {
        padding: 4.5rem 0 3.5rem;
    }

    .hero-facts,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section,
    .page-hero {
        padding: 4.5rem 0;
    }

    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .topbar-inner {
        min-height: auto;
    }

    .brand-image {
        width: min(220px, 58vw);
    }

    .hero-copy h1,
    .page-hero h1,
    .section-heading h2,
    .split-copy h2,
    .contact-panel h2,
    .form-panel h2,
    .cta-band h2,
    .site-footer h2 {
        max-width: none;
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .form-panel,
    .feature-card,
    .info-panel,
    .legal-copy,
    .quote-panel {
        padding: 1.4rem;
    }

    .cta-band-inner {
        padding: 1.5rem;
    }

    .split-media,
    .gallery-card,
    .gallery-card-large {
        min-height: 18rem;
    }

    .why-panel {
        padding: 2rem 1.4rem;
    }

    .photo-stack {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 14rem);
        min-height: auto;
    }

    .photo-stack-main {
        grid-row: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
