:root {
    --gold: #ac906d;
    --gold-dk: #8f7558;
    --gold-lt: #c8b698;
    --gold-dim: rgba(172, 144, 109, 0.14);
    --gold-border: rgba(172, 144, 109, 0.22);

    --ink: #1e1b16;
    --text: #3a3530;
    --text-soft: #6b6560;
    --bg: #faf8f5;
    --cream: #f4f0e8;
    --white: #ffffff;
    --border: #e4ddd4;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-1: 0.8rem;
    --fs-2: 1rem;
    --fs-3: 1.25rem;
    --fs-4: 1.5625rem;
    --fs-5: 1.9531rem;
    --fs-6: 2.4414rem;
    --fs-7: 3.0518rem;
    --fs-ornament: 3.8147rem;

    --lh-flat: 1;
    --lh-display: 1.15;
    --lh-heading: 1.3;
    --lh-lead: 1.4;
    --lh-compact: 1.5;
    --lh-body: 1.75;

    --ls-display: -0.01em;
    --ls-eyebrow: 0.4em;
    --ls-label: 0.16em;

    --text-xs: var(--fs-1);
    --text-s: var(--fs-1);
    --text-base: var(--fs-2);
    --text-l: var(--fs-3);
    --text-xl: var(--fs-4);
    --text-2xl: clamp(var(--fs-5), 1.1394rem + 1.4468vw, var(--fs-6));
    --text-3xl: clamp(var(--fs-6), 1.4239rem + 1.8084vw, var(--fs-7));

    --sp-xs: clamp(0.25rem, 0.5vw, 0.5rem);
    --sp-s: clamp(0.5rem, 1vw, 0.75rem);
    --sp-m: clamp(1rem, 2vw, 1.5rem);
    --sp-l: clamp(1.5rem, 3vw, 2.5rem);
    --sp-xl: clamp(2.5rem, 5vw, 4rem);
    --sp-2xl: clamp(4rem, 8vw, 7rem);
    --sp-3xl: clamp(5rem, 10vw, 9rem);

        --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --header-h: 144px;
    --header-h-small: 96px;
    --container: 1200px;
    --gutter: clamp(16px, 4vw, 32px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-2);
    line-height: var(--lh-body);
    color: var(--text);
    background: var(--bg);
}

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

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

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}


.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--sp-3xl);
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-m);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: var(--text-s);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s var(--ease-out),
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gold-dk);
    box-shadow: 0 6px 20px rgba(172, 144, 109, 0.28);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}


#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.97);
    border-bottom: 1px solid transparent;
    transition:
        transform 0.7s var(--ease-out-expo),
        box-shadow 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out);
}

#site-header.is-scrolled {
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--border);
}

#site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.4s var(--ease-out-expo);
}

.is-scrolled .header-inner {
    height: var(--header-h-small);
}

.site-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-s);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.25s;
}

.site-logo:hover { opacity: 0.8; }

.site-logo-img {
    height: 118px;
    width: auto;
    flex-shrink: 0;
    display: block;
    transition: height 0.4s var(--ease-out-expo);
}

#site-header.is-scrolled .site-logo-img { height: 76px; }

.logo-sub {
    font-size: var(--text-s);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: var(--ls-label);
    line-height: var(--lh-flat);
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: var(--sp-m);
    border-left: 1px solid var(--gold-border);
}

#site-header.is-scrolled .logo-sub {
    font-size: var(--text-xs);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-center a {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-center a:hover { color: var(--gold); }
.nav-center a:hover::after { width: 100%; }

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
}

.nav-contact-email,
.nav-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-contact-email {
    font-size: var(--text-xs);
    color: var(--text-soft);
}

.nav-contact-email:hover { color: var(--gold); }

.nav-contact-phone {
    font-size: var(--text-s);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0;
}

.nav-contact-phone:hover { color: var(--gold-dk); }

.nav-contact svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.99);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 var(--gutter) 24px;
}

.mobile-menu.is-open { display: block; }

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 20px;
}

.mobile-menu ul a {
    display: block;
    padding: 14px 0;
    font-size: var(--text-l);
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-menu ul a:hover { color: var(--gold); }

.mobile-menu ul li:last-child a { border-bottom: none; }

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-s);
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-contact a[href^="tel"] {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gold);
}

.mobile-contact a:hover { color: var(--gold); }

.skip-link {
    position: absolute;
    left: var(--gutter);
    top: -100px;
    z-index: 200;
    background: var(--ink);
    color: var(--bg);
    padding: 0.75rem 1.25rem;
    font-size: var(--text-s);
    text-decoration: none;
    transition: top 0.2s var(--ease-out);
}

.skip-link:focus-visible { top: 12px; }


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}


.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--header-h);
    background: linear-gradient(165deg, #f8f5f0 0%, var(--bg) 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 0;
    width: 45%;
    height: 120%;
    background: linear-gradient(135deg, rgba(172, 144, 109, 0.06), transparent 70%);
    transform: rotate(-6deg) translateX(10%);
    pointer-events: none;
}

.hero {
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-2xl) var(--sp-xl) var(--sp-2xl) var(--gutter);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-l);
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.2s var(--ease-out-expo) forwards;
}


.hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--ink);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    margin-bottom: var(--sp-l);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.85s 0.35s var(--ease-out-expo) forwards;
}

.hero-desc {
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--text-soft);
    line-height: var(--lh-body);
    max-width: 400px;
    margin-bottom: var(--sp-xl);
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 0.5s var(--ease-out-expo) forwards;
}

.hero-metrics {
    display: flex;
    gap: var(--sp-xl);
    margin-bottom: var(--sp-xl);
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.8s 0.62s var(--ease-out-expo) forwards;
}

.hero-metric {
    border-left: 2px solid var(--gold-border);
    padding-left: var(--sp-m);
}

.hero-metric-value {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--ink);
    line-height: var(--lh-heading);
}

.hero-metric-label {
    font-size: var(--text-xs);
    color: var(--text-soft);
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    gap: var(--sp-m);
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s var(--ease-out-expo) forwards;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-2xl) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) var(--sp-2xl) var(--sp-xl);
    gap: var(--sp-m);
    opacity: 0;
    animation: slideIn 0.9s 0.8s var(--ease-out-expo) forwards;
}

.hero-stat-card {
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--gold-border);
    box-shadow: 0 2px 12px rgba(172, 144, 109, 0.07);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
}

.hero-stat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 28px rgba(172, 144, 109, 0.14);
    border-color: var(--gold-lt);
}

.hero-stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: var(--text-l);
    font-weight: 400;
    color: var(--ink);
    line-height: var(--lh-heading);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
    }
}


.about-section {
    background: var(--white);
    padding-bottom: var(--sp-xl);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
    align-items: center;
}

.about-text .section-label {
    display: block;
}

.about-heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--ink);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    margin-bottom: var(--sp-l);
}

.about-body p {
    color: var(--text-soft);
    line-height: var(--lh-body);
    margin-bottom: var(--sp-m);
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-figure {
    aspect-ratio: 4 / 3;
    background: var(--cream);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-cell {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bento-cell:hover {
    border-color: var(--gold-border);
    box-shadow: 0 4px 20px rgba(172, 144, 109, 0.09);
}

.bento-cell--intro {
    grid-column: 1 / 3;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-intro-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--ink);
    line-height: var(--lh-heading);
}

.bento-cell--feature {
    position: relative;
}

.bento-num {
    font-family: var(--font-display);
    font-size: var(--fs-ornament);
    font-weight: 300;
    color: var(--gold-dim);
    line-height: var(--lh-flat);
    display: block;
    margin-bottom: var(--sp-m);
    user-select: none;
}

.bento-title {
    font-family: var(--font-display);
    font-size: var(--text-l);
    font-weight: 400;
    color: var(--ink);
    line-height: var(--lh-heading);
    margin-bottom: var(--sp-s);
}

.bento-text {
    font-size: var(--text-s);
    color: var(--text-soft);
    line-height: var(--lh-body);
}

.bento-cell--cta {
    background: var(--ink);
    border-color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--sp-l);
}

.bento-cell--cta:hover {
    border-color: var(--ink);
    box-shadow: 0 8px 32px rgba(30, 27, 22, 0.2);
}

.bento-cta-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--white);
    line-height: var(--lh-heading);
}

.bento-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-s);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--gold-lt);
    text-decoration: none;
    transition: color 0.25s, gap 0.25s;
}

.bento-cta-link:hover {
    color: var(--white);
    gap: 16px;
}

.btn-arrow {
    display: inline-block;
}


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

.contact-cta {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.contact-cta-heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--ink);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    margin-bottom: var(--sp-m);
}

.contact-cta-text {
    color: var(--text-soft);
    line-height: var(--lh-body);
    margin-bottom: var(--sp-xl);
}

.contact-cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-m);
    flex-wrap: wrap;
}


.kontakt-hero {
    padding-top: calc(var(--header-h) + var(--sp-2xl));
    padding-bottom: var(--sp-xl);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.kontakt-hero-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--ink);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    margin-bottom: var(--sp-m);
}

.kontakt-hero-desc {
    color: var(--text-soft);
    line-height: var(--lh-body);
    max-width: 50ch;
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xl);
}

.kontakt-info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kontakt-info-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-s);
}

.kontakt-info-group a,
.kontakt-info-group span {
    font-size: var(--text-base);
    color: var(--text);
    line-height: var(--lh-compact);
}

.kontakt-info-group a:hover {
    color: var(--gold);
}

.kontakt-opening {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kontakt-opening-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--text-s);
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-block: 8px;
}

.kontakt-opening-row:last-child {
    border-bottom: none;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-m);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--text-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    transition: border-color 0.25s, box-shadow 0.25s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(172, 144, 109, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-m);
}


@media (max-width: 1100px) {
    .nav-contact-email { display: none; }
    .nav-center ul { gap: 28px; }
}

@media (max-width: 1024px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-cell--intro {
        grid-column: 1 / -1;
    }


}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: var(--sp-2xl);
    }

    .hero-left {
        padding: var(--sp-2xl) var(--gutter) var(--sp-l);
        padding-top: calc(var(--sp-2xl) + var(--header-h));
        padding-left: var(--gutter);
    }

    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        padding: var(--sp-l) var(--gutter) var(--sp-2xl);
        padding-right: var(--gutter);
    }

    .hero-stat-card {
        flex: 1;
        min-width: 220px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }


    .kontakt-layout {
        grid-template-columns: 1fr;
    }

    .nav-center,
    .nav-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header-inner {
        position: relative;
    }
}

@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .bento-cell--intro {
        grid-column: auto;
    }


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

    .contact-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}


.legal-page {
    padding-top: calc(var(--header-h) + var(--sp-2xl));
    background: var(--bg);
}

.legal-container {
    max-width: 800px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--ink);
    margin-bottom: var(--sp-l);
}

.legal-subtitle {
    font-family: var(--font-display);
    font-size: var(--text-l);
    font-style: italic;
    color: var(--text-soft);
    margin-top: calc(var(--sp-l) * -1 + var(--sp-xs));
    margin-bottom: var(--sp-l);
}

.legal-h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: var(--lh-heading);
    color: var(--ink);
    margin: var(--sp-l) 0 var(--sp-s);
}

.legal-block {
    color: var(--text);
    margin-bottom: var(--sp-m);
}

.legal-block p + p {
    margin-top: var(--sp-xs);
}

.legal-block a {
    color: var(--gold);
    text-decoration: none;
        overflow-wrap: anywhere;
    transition: color 0.25s var(--ease-out);
}

.legal-block a:hover {
    color: var(--gold-dk);
}

.legal-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: var(--sp-s) 0;
    line-height: var(--lh-body);
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: var(--sp-xl) 0;
}

.legal-stand {
    margin-top: var(--sp-xl);
    font-size: var(--text-s);
    color: var(--text-soft);
}


.kontakt-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: var(--sp-xl);
}

.kontakt-card-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-s);
}

.kontakt-card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 300;
    line-height: var(--lh-heading);
    color: var(--ink);
    margin-bottom: var(--sp-s);
}

.kontakt-card-text {
    color: var(--text);
    margin-bottom: var(--sp-m);
}

.kontakt-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-s);
    margin-bottom: var(--sp-l);
}

.kontakt-checklist li {
    position: relative;
    padding-left: 1.6rem;
    font-size: var(--text-s);
    color: var(--text);
    line-height: var(--lh-compact);
}

.kontakt-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.kontakt-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-s);
}


.faq-list {
    max-width: 880px;
    margin-inline: auto;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-m);
    padding: var(--sp-m) 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: var(--text-l);
    font-weight: 400;
    line-height: var(--lh-heading);
    color: var(--ink);
    transition: color 0.25s var(--ease-out);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold); }

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.35em;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.35s var(--ease-out-expo), opacity 0.25s var(--ease-out);
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 1.5px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 1.5px;
    height: 20px;
}

.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 0 var(--sp-l);
    max-width: 68ch;
    color: var(--text);
}

@media (max-width: 640px) {
    :root {
        --header-h: 106px;
        --header-h-small: 80px;
    }

    .site-logo-img { height: 84px; }
    #site-header.is-scrolled .site-logo-img { height: 62px; }

    .logo-sub {
        font-size: var(--text-s);
        letter-spacing: var(--ls-label);
        padding-left: var(--sp-s);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-icon::before,
    .faq-icon::after {
        transition: none;
    }
}


.kontakt-hero-desc a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-border);
    transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.kontakt-hero-desc a:hover {
    color: var(--gold-dk);
    border-color: var(--gold-dk);
}


.principles {
    background: var(--white);
    padding-top: var(--sp-xl);
}

.principles-head {
    text-align: center;
    max-width: 46ch;
    margin: 0 auto var(--sp-xl);
}

.principles-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--ink);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
    position: relative;
}

.principles-grid::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--gold-dim);
}

.principle {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    text-align: center;
    padding-inline: var(--sp-s);
}

.principle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.principle-kw {
    font-family: var(--font-display);
    font-size: var(--text-l);
    font-weight: 400;
    line-height: var(--lh-heading);
    letter-spacing: 0;
    color: var(--ink);
    margin-bottom: 12px;
}

.principle-rule {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 12px;
}

.principle-txt {
    font-size: var(--text-s);
    line-height: var(--lh-compact);
    color: var(--text-soft);
    align-self: start;
}

@media (max-width: 900px) {
    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: var(--sp-xl) var(--sp-m);
    }

    .principles-grid::before {
        display: none;
    }

    .principle {
        grid-row: auto;
        grid-template-rows: none;
    }

    .principle-dot {
        margin-bottom: var(--sp-s);
    }
}

@media (max-width: 480px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-l);
    }

    .principle-txt {
        max-width: 34ch;
        margin-inline: auto;
    }
}


.svc {
    position: relative;
    padding: var(--sp-3xl) 0;
    background: var(--white);
    overflow: hidden;
}

.svc-wrap {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.svc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: end;
    margin-bottom: var(--sp-3xl);
    padding-top: var(--header-h);
}

.svc-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--sp-m);
}

.svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--gold);
}

.svc-eyebrow::before {
    content: '';
    width: 52px;
    height: 1px;
    background: var(--gold);
}

.svc-heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--ink);
}

.svc-header-right p {
    color: var(--text-soft);
    max-width: 460px;
    margin-left: auto;
}

.svc-list {
    display: flex;
    flex-direction: column;
}

.svc-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 0 var(--sp-xl);
    align-items: start;
    padding-block: var(--sp-xl);
    border-top: 1px solid var(--gold-border);
    position: relative;
    scroll-margin-top: calc(var(--header-h) + var(--sp-m));
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.svc-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.svc-item:last-child {
    border-bottom: 1px solid var(--gold-border);
}

.svc-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dk));
    transition: width 0.6s var(--ease-out-expo);
}

.svc-item:hover::after {
    width: 100%;
}

.svc-num {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    line-height: var(--lh-flat);
    color: var(--gold-dim);
    padding-top: 4px;
    user-select: none;
    transition: color 0.5s var(--ease-out);
}

.svc-item:hover .svc-num {
    color: var(--gold-lt);
}

.svc-title-col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-m);
    padding-top: 6px;
}

.svc-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--gold-dim);
    flex-shrink: 0;
    transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.svc-item:hover .svc-icon {
    background: var(--gold-border);
    transform: scale(1.08);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-dk);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-subtitle {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--gold);
}

.svc-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 300;
    line-height: var(--lh-heading);
    color: var(--ink);
    transition: color 0.4s var(--ease-out);
}

.svc-item:hover .svc-title {
    color: var(--gold-dk);
}

.svc-desc-col {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
}

.svc-desc {
    color: var(--text);
    margin-bottom: var(--sp-m);
}

.svc-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-l);
}

.svc-points li {
    position: relative;
    padding-left: 1.6rem;
    font-size: var(--text-s);
    line-height: var(--lh-compact);
    color: var(--text-soft);
}

.svc-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.svc-cta:hover {
    gap: 20px;
    color: var(--gold-dk);
}

.svc-cta-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-border);
    display: grid;
    place-items: center;
    transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.svc-cta:hover .svc-cta-arrow {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08);
}

.svc-cta-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s var(--ease-out);
}

.svc-cta:hover .svc-cta-arrow svg {
    stroke: var(--white);
}

.svc-banner {
    background: var(--bg);
    padding: var(--sp-2xl) var(--gutter);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-dim);
}

.svc-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(172, 144, 109, 0.07), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(172, 144, 109, 0.05), transparent 50%);
    pointer-events: none;
}

.svc-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-inline: auto;
}

.svc-banner-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--ink);
    margin-bottom: var(--sp-s);
}

.svc-banner p {
    color: var(--text-soft);
    margin-bottom: var(--sp-l);
}

.svc-banner-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-s);
    flex-wrap: wrap;
}

.svc-banner-links a {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: var(--text-s);
    font-weight: 600;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
        transform 0.3s var(--ease-out);
}

.svc-banner-primary {
    background: var(--gold);
    color: var(--white);
}

.svc-banner-primary:hover {
    background: var(--gold-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(172, 144, 109, 0.3);
}

.svc-banner-secondary {
    background: transparent;
    color: var(--gold-dk);
    border: 1px solid var(--gold-border);
}

.svc-banner-secondary:hover {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold-dim);
}

@media (max-width: 1024px) {
    .svc-header {
        grid-template-columns: 1fr;
        gap: var(--sp-m);
        margin-bottom: var(--sp-2xl);
    }

    .svc-header-right p {
        margin-left: 0;
    }

    .svc-item {
        grid-template-columns: 56px 1fr;
        gap: 0 var(--sp-l);
    }

    .svc-desc-col {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .svc-item {
        grid-template-columns: 1fr;
        gap: var(--sp-m);
    }

    .svc-desc-col {
        grid-column: 1;
    }
}


.section-heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--ink);
}


.site-footer {
    position: relative;
    background: #3a3a3a;
    color: #a89d91;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 110%, rgba(172, 144, 109, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 48px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr;
    gap: 48px;
    padding-bottom: 36px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo img {
    height: 160px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 0.92;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: var(--fs-3);
    line-height: var(--lh-compact);
    color: #ac906d;
    max-width: 400px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-label {
    font-size: var(--fs-1);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: #ac906d;
    font-weight: 600;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: var(--fs-1);
    line-height: var(--lh-body);
    color: #a89d91;
}

.footer-details a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.footer-details a:hover {
    color: #e2d8cd;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(172, 144, 109, 0.25);
    color: #a89d91;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
    border-color: #ac906d;
    color: #ac906d;
    background: rgba(172, 144, 109, 0.06);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-rule {
    border: none;
    border-top: 1px solid rgba(172, 144, 109, 0.18);
    margin: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: var(--fs-1);
    color: #5e5a55;
}

.footer-made-by {
    font-size: var(--fs-1);
    color: #5e5a55;
}

.footer-made-by a {
    color: #5e5a55;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.footer-made-by a:hover {
    color: #a89d91;
}

.footer-made-by .heart {
    color: #84cc16;
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal a {
    text-decoration: none;
    font-size: var(--fs-1);
    color: #5e5a55;
    transition: color 0.25s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ac906d;
    transition: width 0.25s ease;
}

.footer-legal a:hover {
    color: #a89d91;
}

.footer-legal a:hover::after {
    width: 100%;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer-inner {
        padding: 36px 24px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo img {
        height: 80px;
    }
}
