:root {
    --background: #fbf7f1;
    --background-soft: #fffdf9;
    --primary: #f6cf76;
    --primary-light: #f8e9c3;
    --secondary: #f28572;
    --tertiary: #73bd7c;
    --tertiary-light: #a9d8ae;
    --ink: #7b7057;
    --muted: #8f8673;
    --line: rgba(123, 112, 87, 0.16);
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--ink);
    font-family: Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

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

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 247, 241, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner,
.section,
.footer-inner {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.brand-mark {
    height: 50px;
    width: 50px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 5px;
}

.brand strong {
    font-size: 18px;
}

.brand span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    transition: color 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--ink);
}

.mobile-nav {
    display: none;
}

.mobile-nav summary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
    padding: 0 14px;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    background: var(--background);
    padding: 14px 20px 20px;
}

.mobile-panel a {
    border-radius: 6px;
    padding: 13px 12px;
    font-size: 15px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 750;
    padding: 0 20px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.dark {
    background: var(--ink);
    color: var(--white);
}

.button.warm {
    background: var(--primary);
    color: var(--ink);
}

.button.light {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.button.soft {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100svh - 80px);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero.small {
    min-height: 540px;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(123, 112, 87, 0.62) 0%, rgba(123, 112, 87, 0.4) 46%, rgba(123, 112, 87, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    align-items: center;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 56px 0;
}

.hero-copy {
    max-width: 860px;
    animation: public-rise 680ms ease-out both;
    text-shadow: 0 2px 18px rgba(88, 75, 49, 0.28);
}

.eyebrow {
    color: var(--tertiary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--primary);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.03;
    margin-bottom: 0;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.7;
    margin: 24px 0 0;
    max-width: 620px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.section {
    padding: 88px 0;
}

.section.white {
    width: 100%;
    max-width: none;
    background: var(--white);
}

.section.white > .section-inner,
.section-inner {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.split {
    display: grid;
    align-items: center;
    gap: 56px;
    grid-template-columns: 0.95fr 1.05fr;
}

.split.top {
    align-items: start;
}

.intro {
    max-width: 760px;
}

.intro.center {
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    margin: 14px 0 0;
}

.intro p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 22px 0 0;
}

.choice-grid,
.card-grid,
.steps-grid {
    display: grid;
    gap: 16px;
}

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

.choice {
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 30px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.choice:hover {
    border-color: rgba(115, 189, 124, 0.55);
    box-shadow: 0 20px 50px rgba(123, 112, 87, 0.12);
    transform: translateY(-4px);
}

.choice .icon,
.info-card .icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 6px;
    background: var(--tertiary-light);
    font-size: 20px;
}

.choice h3,
.info-card h3 {
    font-size: 26px;
    line-height: 1.18;
    margin: 34px 0 0;
}

.choice p,
.info-card p,
.step p,
.note p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
    margin: 16px 0 0;
}

.read-more {
    display: inline-flex;
    gap: 8px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 800;
}

.image-frame {
    overflow: hidden;
    border-radius: 8px;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transition: transform 700ms ease;
}

.image-frame.tall img {
    aspect-ratio: 4 / 5;
}

.image-frame:hover img {
    transform: scale(1.03);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 30px;
}

.metric strong {
    display: block;
    font-size: 42px;
    line-height: 1;
}

.metric span {
    color: var(--muted);
    display: block;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.info-card,
.step,
.note,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 28px;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
}

.step {
    background: var(--background);
}

.step strong {
    color: var(--tertiary);
    display: block;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.tag {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-size: 15px;
    font-weight: 750;
    padding: 16px;
}

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

.note.warm {
    background: var(--primary-light);
}

.cta-band {
    background: var(--ink);
    color: var(--white);
}

.cta-inner {
    display: grid;
    align-items: center;
    gap: 32px;
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 58px 0;
}

.cta-inner h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.14;
    margin: 12px 0 0;
    max-width: 740px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
    margin: 16px 0 0;
    max-width: 720px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-inner {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.25fr 0.8fr 0.9fr 1.15fr;
    padding: 48px 0;
}

.site-footer p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 0;
}

.site-footer strong {
    display: block;
    font-size: 15px;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.footer-links a,
.site-footer a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"],
.site-footer a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding: 18px 0 28px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    align-items: center;
    gap: 56px;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: calc(100svh - 80px);
}

.appointment-page {
    padding-top: 64px;
}

.appointment-page .contact-layout {
    align-items: start;
    min-height: auto;
}

.contact-hero-section {
    padding-bottom: 58px;
    padding-top: 70px;
}

.contact-hero-copy {
    max-width: 760px;
}

.contact-hero-copy h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.06;
    margin: 12px 0 0;
}

.contact-hero-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 20px 0 0;
}

.contact-form-section {
    padding: 64px 0;
}

.contact-section-layout,
.contact-info-layout {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.contact-section-layout {
    display: grid;
    align-items: start;
    gap: 58px;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.contact-section-copy {
    max-width: 390px;
}

.contact-section-copy h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.14;
    margin: 12px 0 0;
}

.contact-section-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 14px 0 0;
}

.contact-main {
    display: grid;
}

.contact-info-section {
    padding: 64px 0 76px;
}

.contact-info-layout {
    display: grid;
    align-items: start;
    gap: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-detail-group {
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.contact-detail-group h2 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 18px;
}

.contact-detail-group dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.contact-detail-group dl div {
    display: grid;
    gap: 4px;
}

.contact-detail-group dt {
    color: var(--tertiary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail-group dd {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-group a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-detail-group p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-card + .contact-card {
    margin-top: 16px;
}

.contact-form + .contact-card {
    margin-top: 16px;
}

.contact-card h2 {
    font-size: 26px;
    margin: 20px 0 0;
}

.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 26px;
}

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

.form-field {
    display: grid;
    gap: 7px;
    margin-bottom: 13px;
}

.form-field label {
    font-size: 14px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--background-soft);
    color: var(--ink);
    font: inherit;
    min-height: 46px;
    padding: 10px 13px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(115, 189, 124, 0.85);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(115, 189, 124, 0.14);
}

.form-help,
.form-error {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.form-error {
    color: #9f2f25;
    font-weight: 700;
}

.form-message {
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 18px;
    padding: 13px 14px;
}

.form-message.success {
    background: rgba(115, 189, 124, 0.16);
    color: #275c31;
}

.form-message.error {
    background: rgba(242, 133, 114, 0.16);
    color: #7d241b;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .button {
    margin-top: 4px;
    width: 100%;
}

.policy-hero {
    padding-bottom: 54px;
}

.policy-layout {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

.policy-updated {
    color: var(--ink) !important;
    font-size: 14px !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-content {
    width: min(100% - 40px, 940px);
    margin: 0 auto;
    counter-reset: policy-article;
}

.policy-block {
    border-top: 1px solid var(--line);
    counter-increment: policy-article;
    counter-reset: policy-paragraph;
    padding: 34px 0;
}

.policy-block:first-child {
    border-top: 0;
    padding-top: 0;
}

.policy-block h2 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.18;
    margin: 0;
}

.policy-block h2::before {
    content: "Artikel " counter(policy-article);
    display: block;
    color: var(--tertiary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.policy-block p {
    color: var(--muted);
    counter-increment: policy-paragraph;
    font-size: 17px;
    line-height: 1.8;
    margin: 14px 0 0;
    min-height: 30px;
    padding-left: 58px;
    position: relative;
}

.policy-block p::before {
    content: counter(policy-article) "." counter(policy-paragraph);
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.policy-block a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

@keyframes public-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media (max-width: 900px) {
    .nav,
    .header-cta {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .split,
    .choice-grid,
    .steps-grid,
    .card-grid.two,
    .form-grid,
    .cta-inner,
    .footer-inner,
    .contact-layout,
    .contact-section-layout,
    .contact-info-layout {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .appointment-page,
    .contact-hero-section {
        padding-top: 46px;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 54px 0;
    }

    .contact-section-layout,
    .contact-info-layout {
        gap: 30px;
    }

    .hero,
    .hero-content {
        min-height: 620px;
    }

    .cta-inner .button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .section,
    .section.white > .section-inner,
    .section-inner,
    .hero-content,
    .cta-inner,
    .footer-inner,
    .contact-hero-copy,
    .contact-section-layout,
    .contact-info-layout {
        width: min(100% - 28px, 1180px);
    }

    .footer-bottom,
    .policy-content {
        width: min(100% - 28px, 1180px);
    }

    .policy-block p {
        padding-left: 46px;
    }

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

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

    .hero,
    .hero-content {
        min-height: 590px;
    }

    h1 {
        font-size: 42px;
    }

    .actions,
    .button {
        width: 100%;
    }

    .metrics,
    .tag-grid {
        grid-template-columns: 1fr;
    }
}
