/* ── Lokale Fonts ── */
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:300; font-display:swap; src:url('fonts/cormorant-garamond-300.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:300; font-display:swap; src:url('fonts/cormorant-garamond-300italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:400; font-display:swap; src:url('fonts/cormorant-garamond-regular.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:400; font-display:swap; src:url('fonts/cormorant-garamond-italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:500; font-display:swap; src:url('fonts/cormorant-garamond-500.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic;  font-weight:500; font-display:swap; src:url('fonts/cormorant-garamond-500italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal;  font-weight:600; font-display:swap; src:url('fonts/cormorant-garamond-600.woff2') format('woff2'); }
@font-face { font-family:'Montserrat';          font-style:normal;  font-weight:300; font-display:swap; src:url('fonts/montserrat-300.woff2') format('woff2'); }
@font-face { font-family:'Montserrat';          font-style:normal;  font-weight:400; font-display:swap; src:url('fonts/montserrat-regular.woff2') format('woff2'); }
@font-face { font-family:'Montserrat';          font-style:normal;  font-weight:500; font-display:swap; src:url('fonts/montserrat-500.woff2') format('woff2'); }
@font-face { font-family:'Montserrat';          font-style:normal;  font-weight:600; font-display:swap; src:url('fonts/montserrat-600.woff2') format('woff2'); }

:root {
    --cream:       #F2EDE4;
    --dark:        #1A2820;
    --copper:      #B5784A;
    --sage:        #5C7068;
    --sage-light:  #7D9487;
    --sage-pale:   #C8D5CE;
    --white:       #FAFAF7;
    --text:        #2C3830;
    --text-light:  #3E5248;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    font-weight: 400;
    line-height: 1.85;
    font-size: 16px;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid rgba(26,40,32,0.12);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}
.nav-brand-logo {
    height: 52px;
    width: auto;
    mix-blend-mode: multiply;
    flex-shrink: 0;
}
.nav-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.nav-brand-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--copper);
    text-transform: uppercase;
}
.nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1;
}
@media (max-width: 600px) {
    .nav-brand-logo { height: 40px; }
    .nav-brand-name { font-size: 18px; }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--copper);
    border-bottom-color: var(--copper);
}
.nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: var(--dark);
    color: var(--cream) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: none !important;
    transition: background 0.25s !important;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--sage) !important; color: var(--cream) !important; }

/* ── MAIN CONTENT AREA ── */
main {
    min-height: 100vh;
    padding-top: 84px;
    position: relative;
    overflow: hidden;
}

/* ── Hintergrund-Logo rechts neben dem Inhalt ── */
main.has-logo::after {
    content: '';
    position: absolute;
    left: calc(50% + 450px);
    top: 280px;
    width: 200px;
    height: 364px;
    background: url('logo.png') no-repeat center / contain;
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 1100px) {
    main.has-logo::after { display: none; }
}

/* ── LAYOUT ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 48px; }

/* ── DECORATIVE ── */
.label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.label::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--copper);
    opacity: 0.7;
}
.divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 56px 0;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(26,40,32,0.14);
}
.divider span {
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--copper);
    white-space: nowrap;
}

/* ── TYPOGRAPHY ── */
.h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 28px;
}
.h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 22px;
}
.h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.35;
}
.body-text {
    font-size: 16px;
    line-height: 1.92;
    color: var(--text);
    font-weight: 400;
}
.body-text p + p { margin-top: 18px; }
.lead {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 400;
}

/* ── HIGHLIGHT ── */
.pull-quote {
    border-left: 2px solid var(--copper);
    padding: 24px 32px;
    margin: 44px 0;
    background: rgba(181,120,74,0.05);
}
.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.65;
    font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dark);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}
.btn:hover { background: var(--sage); }
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    padding: 13px 38px;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* ── PAGE HEADER ── */
.page-header {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(26,40,32,0.1);
}

/* ── SECTION ── */
.section { padding: 72px 0; }
.section + .section { padding-top: 0; }

.section-band {
    background: var(--white);
    padding: 64px 0;
    margin: 0 -48px;
    padding-left: 48px;
    padding-right: 48px;
}

/* ── GRID ── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.grid-about {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: start;
}

/* ── CARD ── */
.card {
    background: var(--white);
    border: 1px solid rgba(26,40,32,0.1);
    padding: 36px;
}
.card .h3 { margin-bottom: 14px; }
.card p {
    font-size: 16px;
    line-height: 1.88;
    color: var(--text-light);
    font-weight: 400;
}

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
    background: var(--sage-pale);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--sage);
}
.photo-placeholder span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── TIMELINE/QUALIFICATIONS ── */
.qual-list { list-style: none; margin-top: 8px; }
.qual-list li {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(26,40,32,0.08);
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    font-weight: 400;
}
.qual-list li:last-child { border-bottom: none; }
.qual-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--copper);
    min-width: 80px;
    font-weight: 600;
    padding-top: 3px;
    flex-shrink: 0;
}

/* ── OSTEOPATHIE SUB-SECTIONS ── */
.ost-block {
    padding: 52px 0;
    border-bottom: 1px solid rgba(26,40,32,0.08);
}
.ost-block:last-child { border-bottom: none; }

/* ── TREATMENT LIST ── */
.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 48px;
    margin: 28px 0;
}
.treatment-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 400;
}
.treatment-item::before {
    content: '–';
    color: var(--copper);
    flex-shrink: 0;
}

/* ── LEGAL NOTICE ── */
.legal-notice {
    background: rgba(26,40,32,0.04);
    border-left: 2px solid var(--sage-pale);
    padding: 20px 26px;
    margin: 32px 0;
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-light);
}

/* ── INFO BOX ── */
.info-box {
    background: var(--white);
    border: 1px solid rgba(26,40,32,0.1);
    padding: 36px;
    margin-bottom: 24px;
}
.info-box .h3 { margin-bottom: 14px; }
.info-box p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 400;
}
.info-box p + p { margin-top: 12px; }
.info-box a { color: var(--copper); text-decoration: none; }
.info-box a:hover { text-decoration: underline; }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 52px;
}
.contact-detail {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}
.contact-detail strong { font-weight: 600; color: var(--text); }
.contact-detail.copper { color: var(--copper); }
.contact-block { margin-bottom: 36px; }
.contact-block .h3 { margin-bottom: 14px; }
.contact-block p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 400;
}
.transport-item {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 400;
}
.transport-item strong { color: var(--text); font-weight: 600; }

.map-placeholder {
    width: 100%;
    height: 220px;
    background: var(--sage-pale);
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(26,40,32,0.1);
}
.map-placeholder span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
}
.map-placeholder a {
    font-size: 12px;
    color: var(--copper);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.map-placeholder a:hover { text-decoration: underline; }

/* ── FORM ── */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--white);
    border: 1px solid rgba(26,40,32,0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s;
    appearance: none;
    border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { height: 140px; resize: vertical; }
.form-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 22px;
    font-weight: 400;
}

/* ── IMPRESSUM / DATENSCHUTZ ── */
.impressum-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin: 36px 0 12px;
}
.impressum-content h2:first-child { margin-top: 0; }
.impressum-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 400;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 36px 48px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
footer p {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 13px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}
.footer-links a:hover { color: var(--copper); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-inner { padding: 0 24px; }
    .container  { padding: 0 24px; }
    .nav-links  { gap: 16px; }
    .nav-links a { font-size: 10px; letter-spacing: 0.12em; }
    .nav-cta { display: none; }
    .grid-2, .contact-grid, .treatment-grid { grid-template-columns: 1fr; }
    .grid-about { grid-template-columns: 1fr; }
    .photo-placeholder { aspect-ratio: 4/3; order: -1; }
    footer { padding: 28px 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-band { margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
}
