/* ==========================================================================
   PhysioMed Pinneberg – Projekt-Styles (ergänzt css/main.css der Vorlage)
   ========================================================================== */

/* ── Schriften (lokal, DSGVO-konform) ─────────────────────── */
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/figtree-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/figtree-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/figtree-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/figtree-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/figtree-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Trirong"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/trirong-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Trirong"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/trirong-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Trirong"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/trirong-latin-700-normal.woff2") format("woff2"); }

/* ── Variablen ────────────────────────────────────────────── */
:root {
    --mainFont: "Figtree", var(--fallback);
    --headline: "Trirong", Georgia, "Times New Roman", serif;
    --mainColor: #44BED5;
    --mainColorRGB: 68, 190, 213;
    --mainColorLight: #6fcee0;
    --mainColorDark: #2a9fb6;
    --secondColor: #2a9fb6;
    --fontColor: #3c3c3c;
    --greyText: #5E5E5E;
    --headlineColor: #111;
    --backgroundColor: #F2F2F2;
    --backgroundColorRGB: 242, 242, 242;
    --formBorderColor: #d9d9d9;
    --baseFontSize: 17px;
    --baseLineheight: 160%;
    --maxWidth: 1240px;
    --maxWidthBig: 1400px;
    --headerHeight: 110px;
    --stickyHeaderHeightMobile: 84px;
    --radius: 14px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

body { font-family: var(--mainFont); color: var(--fontColor); }
:where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) { font-family: var(--headline); color: var(--headlineColor); font-weight: 600; line-height: 125%; }
h1, .h1 { font-size: var(--h1FontSize); margin: 0 0 .5em; }
h2, .h2 { font-size: var(--h2FontSize); margin: 0 0 .5em; }
h3, .h3 { font-size: var(--h3FontSize); margin: 0 0 .5em; }
h4, .h4 { font-size: var(--h4FontSize); margin: 1.4em 0 .5em; }
.h5 { font-size: var(--h5FontSize); }
.h6 { font-size: var(--h6FontSize); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.cont a:not([class]) { color: var(--mainColorDark); }
.cont a:not([class]):hover { color: var(--headlineColor); }
.text-center { text-align: center; }
.smalltext { font-size: 14px; color: var(--greyText); }
.frame-bg--ci a:not([class]) { color: #fff; text-decoration: underline; }
.frame-bg--ci :where(h1, h2, h3, h4, h5, h6, .h3, .h5) { color: #fff; }

/* Kicker = türkisfarbene, unterstrichene Überschrift aus dem Original */
.kicker {
    display: inline-block;
    font-family: var(--headline);
    font-weight: 500;
    font-size: clamp(1.3rem, 1rem + .9vw, 1.9rem);
    color: var(--mainColor);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    margin: 0 0 .7em;
    line-height: 1.3;
}
h1.kicker, h2.kicker { display: block; }
.frame-bg--ci .kicker { color: #fff; }
.section-head { max-width: 980px; margin: 0 auto clamp(2rem, 1rem + 2.5vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem); }
.lead { color: var(--greyText); font-weight: 600; font-size: clamp(1rem, .95rem + .3vw, 1.15rem); }
.frame-bg--ci .lead { color: #fff; }

/* Buttons */
.button, input[type=submit], button[type=submit] {
    background: var(--mainColor);
    border: 2px solid var(--mainColor);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(1rem, .9rem + .3vw, 1.2rem);
    padding: .7em 1.8em;
    text-decoration: none;
    line-height: 1.2;
    transition: var(--baseTransition);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}
.button:hover, .button:focus-visible, button[type=submit]:hover { background: var(--mainColorDark); border-color: var(--mainColorDark); color: #fff; }
:is(.frame-bg--ci, .foot, .px-banner) .button { background: #fff; border-color: #fff; color: var(--mainColor); }
:is(.frame-bg--ci, .foot) .button:hover { background: var(--mainColorDark); border-color: var(--mainColorDark); color: #fff; }
.banner-home .button { background: var(--mainColor); border-color: var(--mainColor); color: #fff; }
.banner-home .button:hover { background: #fff; color: var(--mainColor); border-color: #fff; }
button.is-loading { opacity: .6; cursor: wait; }
.textlink { color: var(--mainColor); font-family: var(--headline); font-size: 1.25rem; text-decoration: underline; text-underline-offset: 6px; }
.textlink:hover { color: var(--mainColorDark); }

/* Karten */
.card { background: #fff; box-shadow: var(--shadow); padding: clamp(1.5rem, .8rem + 3vw, 3.5rem); border-radius: 4px; }

/* ── Header ───────────────────────────────────────────────── */
.head { background: var(--mainColor); }
.head.is-sticky { box-shadow: 0 2px 15px rgba(0, 0, 0, .15); }
.head > .inner { margin-block: 10px; max-width: var(--maxWidth); }
.head > .inner .logo,
:is(.is-sticky) .head > .inner .logo { background: none; width: 174px; height: auto; }
.head > .inner .logo img { width: 100%; height: auto; display: block; }
:is(.is-sticky) .head > .inner .logo { width: 140px; }
.head .main-nav { margin-left: auto; }
.head .nav { gap: clamp(20px, 2vw, 44px); }
.head .nav li a { color: #fff; text-transform: none; font-weight: 400; font-size: 1.1rem; }
.head .nav > li:hover > a, .head .nav > li:focus-within > a { color: #fff; text-decoration: underline; text-underline-offset: 6px; }
.head .nav > li.act > a { text-decoration: underline; text-underline-offset: 6px; }
.head .nav > li.contact { display: none; }
.head .langswitchwrap { margin-left: clamp(16px, 2vw, 40px); color: #fff; }
.head .langswitchwrap .langswitch-toggle { color: #fff; font-size: 1.05rem; padding-left: 32px; }
.head .langswitchwrap .langswitch-toggle::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; background: url("../Images/icons/globus.png") no-repeat center/contain; }
.head .langswitchwrap .langswitch-toggle::after { background: #fff; }
.head .langswitchwrap .langswitch { min-width: 60px; left: 22px; width: auto; }
.head .langswitchwrap .langswitch li a { padding: 6px 12px; }
.hamburger-line { background: #fff; }
.tabtocontent { background: #fff !important; color: var(--mainColor) !important; }

@media (max-width: 1200px) {
    .head > .inner .logo { width: 128px; }
    .head .langswitchwrap { margin-left: auto; margin-right: 12px; }
    #main-nav { background: var(--mainColor); top: var(--stickyHeaderHeightMobile); }
    #main-nav .nav li a { background: var(--mainColor); border-bottom: 1px solid rgba(255, 255, 255, .3); font-size: 1.15rem; }
    .head .nav > li.contact { display: block; }
}

/* ── Banner ───────────────────────────────────────────────── */
.px-banner { min-height: clamp(260px, 30vw, 460px); }
.px-banner .image::after { background: rgba(0, 0, 0, .4); }
.px-banner .text { text-align: center; max-width: 1000px; }
.px-banner .text h1 { font-size: clamp(1.8rem, 1rem + 2.6vw, 3rem); margin-bottom: .5em; }
.px-banner .text p { font-weight: 500; font-size: clamp(.95rem, .9rem + .3vw, 1.15rem); }
.px-banner .text .button { margin-top: .8em; }
.banner-home.large-height { min-height: clamp(460px, 50vw, 715px); padding-bottom: 80px; }
.banner-boxed { min-height: clamp(240px, 32vw, 500px); }
.banner-team .image::after { display: none; }
.banner-team .image img { object-fit: cover; object-position: center 45%; }
.banner-jobs { min-height: clamp(420px, 40vw, 560px); padding-bottom: 120px; }
.banner-plain { min-height: clamp(260px, 30vw, 460px); }
.banner-plain .image::after { background: rgba(0, 0, 0, .15); }

/* Weiße Box, die in den Banner hineinragt */
.px-introbox, .px-infocards, .px-overlapcard { padding-top: 0 !important; }
.introbox {
    background: #fff; box-shadow: var(--shadow); text-align: center;
    padding: clamp(1.4rem, .8rem + 2vw, 2.4rem) clamp(1.2rem, .5rem + 4vw, 4rem);
    margin: calc(-1 * clamp(60px, 7vw, 110px)) auto 0; position: relative; z-index: 2; max-width: 1000px;
}
.introbox p { color: var(--greyText); font-weight: 500; }
.overlapcard { margin: calc(-1 * clamp(80px, 9vw, 140px)) auto 0; position: relative; z-index: 2; max-width: 1000px; }
.overlapcard .kicker + .mailform-wrap { margin-top: 1rem; }
.overlapcard > .kicker:not(:first-child) { margin-top: 2.5rem; }

/* ── Startseite: Infokarten ───────────────────────────────── */
.infocards {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff; box-shadow: var(--shadow);
    margin-top: -96px; position: relative; z-index: 2; padding: 22px 0;
}
.infocard { text-align: center; padding: 10px 18px; border-right: 1px solid #bdbdbd; }
.infocard:last-child { border-right: 0; }
.infocard img { width: 56px; height: 56px; margin: 0 auto 10px; }
.infocard h2 { font-family: var(--mainFont); font-weight: 700; font-size: 1.1rem; margin-bottom: .4em; }
.infocard p, .infocard a { color: var(--fontColor); text-decoration: none; font-size: .98rem; }
@media (max-width: 900px) {
    .infocards { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -60px; }
    .infocard:nth-child(2) { border-right: 0; }
    .infocard:nth-child(-n+2) { border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 10px; }
}
@media (max-width: 520px) {
    .infocards { grid-template-columns: 1fr; margin-top: -40px; }
    .infocard { border-right: 0; border-bottom: 1px solid #ddd; padding-bottom: 18px; margin-bottom: 10px; }
    .infocard:last-child { border-bottom: 0; margin-bottom: 0; }
}

/* ── Leistungs-Kacheln (Startseite) ───────────────────────── */
.service-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3px; margin-bottom: 2.5rem; }
.service-tile { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 3.6; color: var(--headlineColor); text-decoration: none; }
.service-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-tile-text {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .4em;
    text-align: center; padding: 1.2rem; background: rgba(255, 255, 255, .72); opacity: 0; transition: opacity .35s ease;
}
.service-tile-text .h5 { font-family: var(--mainFont); font-weight: 600; }
.service-tile:hover .service-tile-text, .service-tile:focus-visible .service-tile-text { opacity: 1; }
.service-tile:hover img { transform: scale(1.05); }
@media (hover: none) {
    .service-tile-text { opacity: 1; top: auto; background: rgba(255, 255, 255, .88); padding: .8rem; }
}
@media (max-width: 900px) { .service-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ── Team-Baum ────────────────────────────────────────────── */
.teamtree { position: relative; max-width: 950px; margin: 0 auto 2.5rem; container-type: inline-size; }
.teamtree-bg { width: 100%; height: auto; }
.teamtree-members { list-style: none; margin: 0; padding: 0; }
.cont .teamtree-members li { padding: 0; }
.cont .teamtree-members li::before { display: none; }
.cont .teamtree-members .teamtree-member { position: absolute; left: var(--x); top: var(--y); transform: translateX(-50%); width: 21%; text-align: center; }
.teamtree-member a { display: block; text-decoration: none !important; color: var(--headlineColor) !important; }
.teamtree-photo { display: block; width: 58%; margin: 0 auto -4px; aspect-ratio: 1; border-radius: 50%; border: 4px solid var(--mainColor); padding: 3px; background: #fff; position: relative; }
.teamtree-photo::before { content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--mainColor); box-shadow: inset 0 0 0 4px var(--mainColor), inset 0 0 0 7px #fff; }
.teamtree-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.teamtree-label { display: block; background: #fff; border: 3px solid var(--mainColor); border-radius: 6px; padding: .35em .5em; font-size: clamp(9px, 1.55cqi, 15px); line-height: 1.25; position: relative; }
.teamtree-label strong { display: block; font-weight: 600; font-size: 1.1em; }
.teamtree-label span { color: var(--greyText); }
.teamtree-member a:hover .teamtree-photo, .teamtree-member a:focus-visible .teamtree-photo { transform: scale(1.06); }
.teamtree-photo { transition: transform .3s ease; }
.teamtree-ribbon { position: absolute; left: 50%; bottom: 20%; transform: translateX(-50%); width: 56%; text-align: center; }
.teamtree-ribbon span { display: block; background: #fff; color: var(--mainColor); border: 3px solid var(--mainColor); font-size: clamp(14px, 2.6cqi, 26px); padding: .25em 1em; clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%); }
@media (max-width: 640px) {
    .teamtree-bg, .teamtree-ribbon { display: none; }
    .teamtree-members { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
    .cont .teamtree-members .teamtree-member { position: static; transform: none; width: auto; }
    .teamtree-label { font-size: 13px; }
}

/* ── Formulare ────────────────────────────────────────────── */
.mailform { display: flex; flex-direction: column; gap: 18px; }
.mailform .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 40px; }
.mailform .form-stack { display: flex; flex-direction: column; gap: 18px; }
.mailform label { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.mailform input[type=text], .mailform input[type=email], .mailform input[type=tel], .mailform textarea {
    width: 100%; background: var(--backgroundColor); border: 1px solid transparent; border-radius: 6px; padding: 13px 18px; font-size: 1rem; font-weight: 300; transition: border-color .2s;
}
.mailform input:focus, .mailform textarea:focus { outline: none; border-color: var(--mainColor); background: #fff; }
.mailform textarea { resize: vertical; min-height: 56px; }
.mailform .hp-fields { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mailform .field.privacy label { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.mailform .field.privacy input { margin-top: 5px; accent-color: var(--mainColor); }
.mailform .buttons { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; }
.mailform .buttons .button { margin: 0; }
.choice-group { border: 0; padding: 0; margin: 0; }
.choice-group legend { font-size: 1.05rem; margin-bottom: 10px; font-weight: 500; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.choice-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 40px; }
.choice { display: flex !important; gap: 10px; align-items: flex-start; margin: 0 0 6px !important; font-size: .98rem !important; cursor: pointer; }
.choice input { margin-top: 5px; accent-color: var(--mainColor); flex-shrink: 0; }
.file-input { position: relative; display: flex; align-items: stretch; background: var(--backgroundColor); border-radius: 6px; overflow: hidden; }
.file-input .file-name { flex: 1; padding: 13px 18px; font-weight: 300; color: #888; }
.file-input .file-name.has-file { color: var(--fontColor); font-weight: 500; }
.file-input .file-icon { background: var(--mainColor); display: flex; align-items: center; padding: 0 14px; }
.file-input input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-input:focus-within { outline: 2px solid var(--mainColor); }
.success_mail h3 { background: rgba(var(--mainColorRGB), .12); color: var(--headlineColor); padding: 40px 4%; text-align: center; border-radius: 6px; }
#contactform, .mailform { margin-top: 0; }
@media (max-width: 700px) {
    .mailform .form-grid, .choice-columns { grid-template-columns: 1fr; }
}

/* ── Warum PhysioMed ──────────────────────────────────────── */
.why { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.why-text h2 { font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.3rem); }
.why-image img { width: 100%; border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }

/* Checklisten */
.cont ul.checklist { margin: 1.5rem 0 2rem; padding: 0; }
.cont ul.checklist li { padding: 6px 0 6px 38px; font-weight: 600; }
.cont ul.checklist li::before { width: 26px; height: 26px; top: 6px; background: url("../Images/icons/check-blau.png") no-repeat center/contain; border-radius: 0; }
.cont ul.checklist--light li::before { background-image: url("../Images/icons/check-weiss.png"); filter: none; }
.cont ul.checklist--row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 30px; }
@media (max-width: 800px) { .cont ul.checklist--row { grid-template-columns: 1fr; } }

/* ── Kontaktblock mit Karte ───────────────────────────────── */
.contactinfo { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: stretch; }
.contactinfo-text h3 { font-family: var(--mainFont); font-weight: 700; font-size: 1.1rem; margin: 1.2em 0 .2em; }
.contactinfo-text h3:first-of-type { margin-top: .4em; }
.contactinfo-text a { color: var(--fontColor) !important; }
.map-consent { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, rgba(var(--mainColorRGB), .85), rgba(42, 159, 182, .95)), url("../Bilder/Video/praxis-poster.jpg") center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.map-consent-inner { max-width: 420px; padding: 2rem; }
.map-consent-inner img { margin: 0 auto 1rem; }
.map-consent-inner p { color: #fff; font-size: .95rem; }
.map-consent-inner a { color: #fff !important; text-decoration: underline; }
.map-consent .button { margin-top: 1rem; background: #fff; color: var(--mainColor); border-color: #fff; }
.map-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contactinfo { grid-template-columns: 1fr; } .map-consent { min-height: 320px; order: 2; } }

/* ── Abwechselnde Zeilen (Leistungen, Team) ───────────────── */
.px-sectiontitle { padding-bottom: 0 !important; }
.px-sectiontitle .kicker { margin: 0; }
.alt-row { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 1rem + 4vw, 6rem); align-items: center; }
.is-even .alt-row { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.is-even .alt-image { order: 2; }
.alt-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.alt-text h3 { font-family: var(--mainFont); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + .9vw, 2rem); }
.frame-bg--ci .alt-text p { color: #fff; }
.px-member .alt-row { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); align-items: start; }
.px-member.is-even .alt-row { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
.member-photo img { aspect-ratio: 1; }
.px-member h2 { font-family: var(--mainFont); font-weight: 600; margin-bottom: .1em; }
.member-role { font-weight: 600; opacity: .85; margin-bottom: 1.2em !important; }
.frame-bg--ci.px-member ul li::before { background: #fff; }
@media (max-width: 800px) {
    .alt-row, .is-even .alt-row, .px-member .alt-row, .px-member.is-even .alt-row { grid-template-columns: 1fr; }
    .is-even .alt-image { order: 0; }
    .member-photo { max-width: 340px; }
}

/* ── Partner ──────────────────────────────────────────────── */
.cont ul.partner-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: clamp(20px, 3vw, 40px); padding: 0; margin: 0; }
.cont ul.partner-grid li { padding: 0; aspect-ratio: 1; background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.cont ul.partner-grid li::before { display: none; }
.partner a { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; }
.partner img { width: 62%; height: auto; object-fit: contain; transition: transform .3s; }
.partner a:hover img { transform: scale(1.05); }
@media (max-width: 480px) { .cont ul.partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ── Rechtstexte ──────────────────────────────────────────── */
.legal h2.h4 { font-family: var(--mainFont); font-weight: 700; margin-top: 2em; }
.legal p, .legal li { overflow-wrap: anywhere; }

/* ── Footer ───────────────────────────────────────────────── */
.foot { background: var(--mainColor); padding: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0 1.2rem; }
.foot > .inner { max-width: var(--maxWidth); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 30px; }
.foot-logo img { width: min(100%, 300px); height: auto; }
.social { display: flex; gap: 16px; margin-top: 24px; }
.social-link { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.social-link:hover { transform: scale(1.08); }
.social-link img { width: 26px; height: 26px; }
.foot-title { font-family: var(--mainFont); font-weight: 500; font-size: clamp(1.15rem, 1rem + .4vw, 1.5rem); color: #fff; text-decoration: underline; text-underline-offset: 7px; margin-bottom: 1em; }
.foot p { color: #fff; }
.foot ul.foot-links, .foot ul.foot-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot ul.foot-contact img { margin-top: 4px; flex-shrink: 0; }
.foot .copy { border-top: 1px solid rgba(255, 255, 255, .6); margin-top: 2.5rem; padding-top: 1.2rem; text-align: center; font-size: 15px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 22px; }
.foot .copy .footnav .nav { display: flex; gap: 18px; list-style: none; padding: 0; margin: 0; }
.foot .copy .hhc { opacity: .8; }
@media (max-width: 1000px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── Sticky-Buttons ───────────────────────────────────────── */
.sticky-appointment {
    position: fixed; right: 0; top: 260px; z-index: 20;
    background: var(--mainColor); color: #fff; text-decoration: none; font-weight: 600; font-size: 1.05rem;
    border: 2px solid #fff; border-right: 0; border-radius: 999px 0 0 999px; padding: 12px 18px 12px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .15); transition: background .2s;
}
.sticky-appointment:hover { background: var(--mainColorDark); color: #fff; }
.stickybuttons { top: auto; bottom: 160px; transform: none; gap: 0; z-index: 20; pointer-events: auto; overflow: visible; background: var(--mainColor); border: 2px solid #fff; border-right: 0; border-radius: 14px 0 0 14px; padding: 8px 0; box-shadow: 0 4px 18px rgba(0, 0, 0, .15); }
.stickybuttons li a { background: transparent; box-shadow: none; max-width: none; transform: none; color: #fff; text-decoration: none; }
.stickybuttons li a .image { background: transparent; min-width: 52px; min-height: 42px; }
.stickybuttons li a .text { max-width: 0; overflow: hidden; white-space: nowrap; padding: 0; transition: max-width .35s ease, padding .35s ease; }
.stickybuttons:hover li a .text, .stickybuttons li a:focus-visible .text { max-width: 320px; padding: 6px 18px 6px 0; }
@media (max-width: 1024px) {
    .sticky-appointment { top: auto; bottom: 16px; right: auto; left: 16px; border: 2px solid #fff; border-radius: 999px; font-size: .95rem; padding: 10px 16px; }
    .stickybuttons { display: none; }
}

/* ── Scroll-Animation ─────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

a[href*="//"]::before {
    display: none;
}