@font-face {
    font-family: "Lora";
    src: url("/fonts/Lora-400.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Lora";
    src: url("/fonts/Lora-600.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Lora";
    src: url("/fonts/Lora-700.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Red Hat Text";
    src: url("/fonts/RedHatText-400.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Red Hat Text";
    src: url("/fonts/RedHatText-600.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Red Hat Text";
    src: url("/fonts/RedHatText-700.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    --ink: #1f2923;
    --ink-soft: #46534b;
    --muted: #68736c;
    --line: #e4e8e4;
    --blue: #bfd8e8;
    --blue-soft: #eef6fa;
    --blue-light: #f3f9fc;
    --blue-mid: #9ec4da;
    --blue-deep: #2c5e7f;
    --blue-dark: #20465f;
    --sage: #c6dabc;
    --sage-soft: #f2f7ef;
    --sage-deep: #65865e;
    --warm: #fbfaf6;
    --cream: #f6f3ec;
    --white: #ffffff;
    --danger: #a33f3f;
    --success: #28744a;
    --footer: #172019;

    --font-heading: "Lora", Georgia, serif;
    --font-body: "Red Hat Text", "Segoe UI", system-ui, sans-serif;
    --container: 1220px;
    --gutter: 24px;
    --section-space: 104px;
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 8px 22px rgba(31, 41, 35, 0.08);
    --shadow-lg: 0 24px 64px rgba(31, 41, 35, 0.16);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--warm);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--font-heading);
    line-height: 1.13;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.85rem, 6vw, 5.7rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.3rem;
    letter-spacing: -0.015em;
}

p {
    color: var(--ink-soft);
}

address {
    font-style: normal;
}

.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--blue-deep);
    border-radius: var(--radius-sm);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--blue-deep);
    outline-offset: 3px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--blue-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lead {
    color: var(--ink);
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.2;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn svg {
    width: 17px;
    height: 17px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    box-shadow: 0 8px 22px rgba(44, 94, 127, 0.2);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    box-shadow: 0 12px 30px rgba(44, 94, 127, 0.28);
}

.btn-outline {
    color: var(--blue-deep);
    background: transparent;
    border-color: rgba(44, 94, 127, 0.35);
}

.btn-outline:hover {
    background: var(--blue-light);
    border-color: var(--blue-deep);
}

.btn-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-light:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-quiet {
    color: var(--muted);
    background: transparent;
}

.btn-quiet:hover {
    color: var(--ink);
    background: rgba(31, 41, 35, 0.05);
}

.btn-large {
    min-height: 52px;
    padding-inline: 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-deep);
    font-weight: 700;
}

.text-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(4px);
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 76px;
    background: rgba(251, 250, 246, 0.96);
    border-bottom: 1px solid rgba(31, 41, 35, 0.07);
    backdrop-filter: blur(14px);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(31, 41, 35, 0.08);
}

.header-inner {
    display: flex;
    height: 76px;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    width: 44px;
    height: 40px;
}

.logo-text {
    display: grid;
    gap: 0;
    line-height: 1;
}

.logo-text strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.logo-text small {
    margin-top: 4px;
    color: var(--blue-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.8vw, 24px);
}

.nav-link {
    position: relative;
    padding-block: 28px;
    color: var(--ink-soft);
    font-size: 0.73rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--blue-deep);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-cta {
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: 76px;
    right: 0;
    left: 0;
    height: calc(100vh - 76px);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 22px var(--gutter) 30px;
    background: var(--warm);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.mobile-nav {
    display: grid;
    gap: 0;
}

.mobile-nav > a:not(.btn) {
    padding-block: 13px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav .btn {
    margin-top: 20px;
}

/* Hero */

.hero {
    position: relative;
    min-height: min(790px, 94vh);
    padding-top: 76px;
    color: var(--white);
    background: var(--ink);
}

.hero-media {
    position: absolute;
    inset: 76px 0 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 32, 27, 0.9) 0%, rgba(22, 32, 27, 0.66) 38%, rgba(22, 32, 27, 0.12) 72%),
        linear-gradient(0deg, rgba(22, 32, 27, 0.55) 0%, transparent 44%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: min(714px, calc(94vh - 76px));
    align-items: center;
    padding-top: 20px;
    padding-bottom: 128px;
}

.hero-copy {
    width: min(760px, 68%);
}

.hero-label {
    display: inline-flex;
    margin-bottom: 23px;
    padding: 9px 13px;
    color: var(--ink);
    background: var(--sage);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

.hero h1 span {
    display: table;
    margin-top: 8px;
    padding: 3px 10px 8px;
    color: var(--ink);
    background: var(--blue);
    text-shadow: none;
}

.hero-copy > p {
    max-width: 640px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-ribbon {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
}

.location-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ribbon-item {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    border-right: 1px solid var(--line);
    transition: background-color var(--transition);
}

.ribbon-item:first-child {
    border-left: 1px solid var(--line);
}

a.ribbon-item:hover {
    background: var(--blue-light);
}

.ribbon-item > svg {
    width: 24px;
    height: 24px;
    color: var(--blue-deep);
    stroke-width: 1.6;
}

.ribbon-item span {
    display: grid;
    gap: 4px;
    line-height: 1.2;
}

.ribbon-item small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ribbon-item strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

/* Introduction */

.intro-section {
    background: var(--warm);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(52px, 8vw, 104px);
}

.intro-image {
    position: relative;
    min-height: 580px;
}

.intro-image > img {
    width: 88%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.intro-image::after {
    position: absolute;
    z-index: -1;
    top: 42px;
    right: 0;
    width: 68%;
    height: 92%;
    background: var(--blue-light);
    border: 1px solid rgba(44, 94, 127, 0.08);
    content: "";
}

.image-note {
    position: absolute;
    right: 0;
    bottom: 40px;
    display: flex;
    width: 205px;
    min-height: 144px;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    color: var(--ink);
    background: var(--sage);
    box-shadow: var(--shadow-sm);
}

.image-note svg {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    color: var(--sage-deep);
}

.image-note span {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.intro-copy h2 {
    max-width: 620px;
    margin-bottom: 24px;
}

.intro-copy .lead {
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 31px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
}

.check-list svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
    padding: 3px;
    color: var(--blue-deep);
    background: var(--blue);
    border-radius: 50%;
    stroke-width: 2.4;
}

/* Services */

.services-section {
    background: var(--blue-light);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    max-width: 670px;
    margin-bottom: 0;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

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

.service-card {
    min-height: 280px;
    padding: 32px 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(44, 94, 127, 0.08);
    border-top: 3px solid transparent;
    box-shadow: 0 8px 22px rgba(31, 41, 35, 0.03);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    border-top-color: var(--blue-deep);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 28px;
    color: var(--blue-deep);
    background: var(--blue);
    border-radius: 50%;
}

.icon-box svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.7;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

.service-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 22px 26px;
    background: var(--white);
    border-left: 4px solid var(--sage-deep);
}

.service-note > svg {
    width: 24px;
    height: 24px;
    color: var(--sage-deep);
}

.service-note p {
    margin: 0;
}

.service-note a {
    color: var(--blue-deep);
    font-weight: 700;
    white-space: nowrap;
}

/* Process */

.process-section {
    background: var(--warm);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 58px;
}

.process-grid::before {
    position: absolute;
    top: 38px;
    right: 16.66%;
    left: 16.66%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--blue-mid) 0 8px, transparent 8px 17px);
    content: "";
}

.process-step {
    position: relative;
    padding: 0 24px;
    text-align: center;
}

.step-number {
    position: absolute;
    z-index: 2;
    top: -10px;
    left: calc(50% + 22px);
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--white);
    background: var(--blue-deep);
    border: 3px solid var(--warm);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
}

.step-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--blue-deep);
    background: var(--blue-light);
    border: 1px solid rgba(44, 94, 127, 0.15);
    border-radius: 50%;
}

.step-icon svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.55;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

/* Local signature */

.local-section {
    position: relative;
    overflow: hidden;
    padding-block: 68px;
    color: var(--white);
    background: var(--blue-deep);
}

.local-section::before,
.local-section::after {
    position: absolute;
    width: 680px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    transform: rotate(-7deg);
}

.local-section::before {
    top: -82px;
    left: -170px;
}

.local-section::after {
    right: -220px;
    bottom: -105px;
}

.local-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.local-mark {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    background: var(--sage);
    border-radius: 50%;
}

.local-mark span {
    color: var(--blue-deep);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.local-mark svg {
    position: absolute;
    right: -4px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    padding: 6px;
    color: var(--blue-deep);
    background: var(--white);
    border-radius: 50%;
}

.local-copy .eyebrow {
    color: var(--blue);
}

.local-copy h2 {
    max-width: 760px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(1.8rem, 3.1vw, 2.8rem);
}

.local-copy p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

/* Location */

.location-section {
    background: var(--sage-soft);
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    gap: 48px;
}

.location-copy h2 {
    margin-bottom: 28px;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.address-card > svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--blue-deep);
}

.address-card > div {
    display: grid;
    line-height: 1.5;
}

.address-card strong {
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.address-card span {
    color: var(--ink-soft);
}

.location-contact-list {
    display: grid;
    gap: 12px;
    margin-block: 22px 26px;
}

.location-contact-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(31, 41, 35, 0.1);
}

.location-contact-list a:hover strong {
    color: var(--blue-deep);
}

.location-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--blue-deep);
}

.location-contact-list span {
    display: grid;
    line-height: 1.3;
}

.location-contact-list small {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-contact-list strong {
    font-size: 0.96rem;
}

.map-card {
    min-height: 520px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    display: grid;
    height: 100%;
    min-height: 520px;
    place-items: center;
    align-content: center;
    padding: 38px;
    text-align: center;
    background:
        linear-gradient(rgba(243, 249, 252, 0.94), rgba(243, 249, 252, 0.94)),
        repeating-linear-gradient(45deg, var(--blue) 0 1px, transparent 1px 18px);
}

.map-placeholder > svg {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--blue-deep);
    stroke-width: 1.4;
}

.map-placeholder h3 {
    margin-bottom: 9px;
}

.map-placeholder p {
    max-width: 390px;
    margin-bottom: 22px;
    font-size: 0.9rem;
}

.map-placeholder a {
    margin-top: 14px;
    color: var(--blue-deep);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

/* FAQ */

.faq-section {
    background: var(--warm);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.faq-heading {
    position: sticky;
    top: 116px;
}

.faq-heading h2 {
    margin-bottom: 18px;
}

.faq-heading .btn {
    margin-top: 16px;
}

.accordion {
    border-top: 1px solid var(--line);
}

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

.faq-item h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
}

.faq-question {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.faq-question svg {
    width: 21px;
    height: 21px;
    color: var(--blue-deep);
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 48px 24px 0;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Contact */

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

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
    gap: clamp(48px, 8vw, 105px);
}

.contact-copy h2 {
    margin-bottom: 22px;
}

.contact-cards {
    display: grid;
    gap: 10px;
    margin-block: 30px 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 94, 127, 0.1);
    transition: border-color var(--transition), background-color var(--transition);
}

.contact-card:hover {
    background: var(--white);
    border-color: var(--blue-mid);
}

.contact-card > svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    color: var(--blue-deep);
}

.contact-card span {
    display: grid;
    gap: 2px;
    line-height: 1.3;
}

.contact-card small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: 0.92rem;
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
    background: var(--sage-soft);
    border-left: 3px solid var(--sage-deep);
}

.privacy-note svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--sage-deep);
}

.privacy-note p {
    margin: 0;
    font-size: 0.82rem;
}

.form-panel {
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(44, 94, 127, 0.09);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 3px rgba(44, 94, 127, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #929b96;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.privacy-checkbox input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--blue-deep);
}

.privacy-checkbox a {
    color: var(--blue-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.btn-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
}

.btn-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
}

.form-status.is-success {
    color: var(--success);
    background: #eef8f2;
    border: 1px solid #bddfc9;
}

.form-status.is-error {
    color: var(--danger);
    background: #fff1f1;
    border: 1px solid #efc4c4;
}

/* Portfolio */

.portfolio-strip {
    padding-block: 52px;
    background: var(--sage);
}

.portfolio-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.portfolio-inner .eyebrow {
    color: var(--sage-deep);
}

.portfolio-inner h2 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

/* Footer */

.site-footer {
    padding-top: 70px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--footer);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, minmax(0, 0.8fr));
    gap: 42px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: var(--blue);
}

.footer-brand > p {
    max-width: 280px;
    margin-top: 20px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h2 {
    margin-bottom: 10px;
    color: var(--blue);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column address,
.footer-link-button {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.79rem;
    line-height: 1.75;
}

.footer-column a:hover,
.footer-link-button:hover {
    color: var(--white);
}

.footer-link-button {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

.mobile-action-bar {
    display: none;
}

body.menu-open .mobile-action-bar {
    display: none;
}

/* Cookie consent */

.cookie-banner {
    position: fixed;
    z-index: 1800;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 22, 18, 0.56);
    backdrop-filter: blur(5px);
}

.cookie-banner.active {
    display: flex;
}

.cookie-panel {
    display: grid;
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    grid-template-columns: 1fr auto;
    gap: 34px;
    overflow-y: auto;
    padding: 34px;
    background: var(--warm);
    border: 1px solid rgba(31, 41, 35, 0.08);
    box-shadow: var(--shadow-lg);
}

.cookie-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.cookie-copy > p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-copy a {
    color: var(--blue-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.consent-option {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
}

.consent-option input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--blue-deep);
}

.consent-option span {
    display: grid;
    gap: 3px;
    line-height: 1.2;
}

.consent-option strong {
    font-size: 0.78rem;
}

.consent-option small {
    color: var(--muted);
    font-size: 0.67rem;
}

.consent-option-required {
    background: var(--sage-soft);
}

.cookie-actions {
    display: grid;
    width: 190px;
    align-content: center;
    gap: 9px;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Legal pages */

.legal-page {
    padding-top: 76px;
}

.legal-hero {
    padding-block: 72px 58px;
    background: var(--blue-light);
}

.legal-hero h1 {
    max-width: 850px;
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    overflow-wrap: anywhere;
}

.legal-hero p {
    margin-bottom: 0;
}

.legal-content {
    padding-block: 74px 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 230px) minmax(0, 760px);
    justify-content: center;
    gap: 72px;
}

.legal-layout > * {
    min-width: 0;
}

.legal-nav {
    position: sticky;
    top: 110px;
    display: grid;
    align-content: start;
    gap: 10px;
    height: fit-content;
    padding: 20px;
    background: var(--sage-soft);
    border-left: 3px solid var(--sage-deep);
}

.legal-nav strong {
    margin-bottom: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-nav a {
    color: var(--blue-deep);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.legal-copy h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    overflow-wrap: anywhere;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.legal-copy p,
.legal-copy li {
    font-size: 0.94rem;
}

.legal-copy a {
    color: var(--blue-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-copy ul {
    padding-left: 22px;
}

.legal-card {
    margin-block: 24px;
    padding: 24px;
    background: var(--blue-light);
    border-left: 4px solid var(--blue-deep);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1120px) {
    :root {
        --section-space: 88px;
    }

    .desktop-nav {
        gap: 13px;
    }

    .nav-link {
        font-size: 0.68rem;
    }

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

    .footer-column:last-child {
        grid-column: 3;
    }
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-copy {
        width: min(720px, 86%);
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(22, 32, 27, 0.88) 0%, rgba(22, 32, 27, 0.55) 60%, rgba(22, 32, 27, 0.22) 100%),
            linear-gradient(0deg, rgba(22, 32, 27, 0.58) 0%, transparent 52%);
    }

    .split-layout,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .split-layout {
        gap: 62px;
    }

    .intro-image {
        width: min(680px, 100%);
    }

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

    .local-inner {
        grid-template-columns: auto 1fr;
    }

    .local-inner > .btn {
        grid-column: 2;
        width: fit-content;
    }

    .location-layout {
        gap: 40px;
    }

    .location-copy {
        max-width: 700px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-heading {
        position: static;
        max-width: 650px;
    }

    .contact-copy {
        max-width: 700px;
    }

    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-card {
        align-items: flex-start;
    }

    .contact-card strong {
        font-size: 0.78rem;
        overflow-wrap: anywhere;
    }

    .cookie-panel {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-nav {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 18px;
        --section-space: 70px;
    }

    html {
        scroll-padding-top: 74px;
    }

    body {
        padding-bottom: 64px;
    }

    .site-header,
    .header-inner {
        height: 68px;
    }

    .mobile-menu {
        top: 68px;
        height: calc(100vh - 68px);
        max-height: calc(100vh - 68px);
    }

    .site-logo img {
        width: 39px;
        height: 36px;
    }

    .logo-text strong {
        font-size: 0.87rem;
    }

    .hero {
        min-height: 760px;
        padding-top: 68px;
    }

    .hero-media {
        inset: 68px 0 0;
    }

    .hero-media img {
        object-position: 61% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(22, 32, 27, 0.88) 0%, rgba(22, 32, 27, 0.55) 100%),
            linear-gradient(0deg, rgba(22, 32, 27, 0.78) 0%, transparent 62%);
    }

    .hero-inner {
        min-height: 692px;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 210px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-label {
        margin-bottom: 18px;
        font-size: 0.61rem;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: clamp(2.55rem, 11.2vw, 4rem);
    }

    .hero h1 span {
        margin-top: 6px;
        padding-inline: 6px;
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        min-width: 0;
        flex: 1 1 160px;
    }

    .location-ribbon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ribbon-item {
        min-height: 80px;
        gap: 12px;
        padding: 15px 18px;
    }

    .ribbon-item:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .ribbon-item:nth-child(3) {
        display: none;
    }

    .ribbon-item small {
        font-size: 0.6rem;
    }

    .ribbon-item strong {
        font-size: 0.86rem;
    }

    .split-layout {
        gap: 52px;
    }

    .intro-image {
        min-height: 460px;
    }

    .intro-image > img {
        width: 92%;
        height: 460px;
    }

    .image-note {
        width: 180px;
        min-height: 120px;
        bottom: 24px;
        padding: 19px;
    }

    .image-note span {
        font-size: 0.95rem;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .service-note {
        grid-template-columns: auto 1fr;
    }

    .service-note a {
        grid-column: 2;
    }

    .process-grid {
        gap: 38px;
    }

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

    .process-step {
        padding-inline: 10px;
    }

    .local-section {
        padding-block: 58px;
    }

    .local-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .local-mark {
        margin-inline: auto;
    }

    .local-inner > .btn {
        grid-column: 1;
        width: fit-content;
        margin-inline: auto;
    }

    .map-card,
    .map-placeholder,
    .map-card iframe {
        min-height: 420px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 26px 20px;
    }

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

    .portfolio-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .footer-column:last-child {
        grid-column: auto;
    }

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

    .mobile-action-bar {
        position: fixed;
        z-index: 1100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 64px;
        grid-template-columns: repeat(3, 1fr);
        background: var(--footer);
        box-shadow: 0 -8px 24px rgba(15, 22, 18, 0.2);
    }

    .mobile-action-bar a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        color: rgba(255, 255, 255, 0.82);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.65rem;
        font-weight: 700;
    }

    .mobile-action-bar a:first-child {
        color: var(--ink);
        background: var(--blue);
    }

    .mobile-action-bar svg {
        width: 18px;
        height: 18px;
    }

    .cookie-banner {
        align-items: flex-end;
        padding: 0;
    }

    .cookie-panel {
        max-height: 92vh;
        gap: 22px;
        padding: 24px 18px 22px;
    }

    .consent-options {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        grid-template-columns: 1fr;
    }

    .legal-page {
        padding-top: 68px;
    }

    .legal-hero {
        padding-block: 56px 46px;
    }
}

@media (max-width: 440px) {
    .hero-actions {
        display: grid;
    }

    .location-ribbon-grid {
        grid-template-columns: 1fr;
    }

    .ribbon-item {
        min-height: 66px;
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .ribbon-item:nth-child(2) {
        border-top: 1px solid var(--line);
    }

    .hero-inner {
        padding-bottom: 226px;
    }

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

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Hauptseiten-Ausrichtung 2026 – Standort-Onepager Vilshofen
   ========================================================================== */

:root {
    --brand: #bfd8e8;
    --brand-dark: #9ec4da;
    --brand-darker: #4f7e95;
    --brand-light: #dcebf4;
    --brand-lightest: #eef6fa;
    --sage: #c6dabc;
    --sage-light: #dce9d6;
    --sage-lightest: #f2f7ef;
    --sage-dark: #65865e;
    --teal: #7fa7a7;
    --teal-light: #edf5f4;
    --warm-white: #fbfaf6;
    --cream-light: #f8fbf7;
    --gray-900: #1f2923;
    --gray-800: #354139;
    --gray-700: #4f5c54;
    --gray-600: #68736c;
    --gray-500: #87918a;
    --gray-300: #c8cfca;
    --gray-200: #e1e6e2;
    --gray-100: #eff2ef;
    --gray-50: #f8faf8;
    --container-max: 1220px;
    --container-padding: 24px;
    --border-color: var(--gray-200);
    --border-light: rgba(31, 41, 35, 0.08);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --radius-full: 9999px;
    --shadow-md: 0 8px 26px rgba(31, 41, 35, 0.08);
    --shadow-xl: 0 22px 58px rgba(31, 41, 35, 0.13);
    --section-space: 96px;
}

html {
    font-size: 18px;
    scroll-padding-top: 100px;
}

body {
    overflow-x: hidden;
    color: var(--gray-900);
    background: var(--warm-white);
    line-height: 1.68;
}

.container {
    width: min(100% - (var(--container-padding) * 2), var(--container-max));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.14;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
}

p {
    color: var(--gray-600);
}

.section {
    padding-block: var(--section-space);
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-darker);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 46px;
}

.section-header-center {
    max-width: 820px;
    margin-right: auto;
    margin-bottom: 46px;
    margin-left: auto;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-desc,
.section-header > p {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--gray-600);
    font-size: 1.02rem;
}

.btn {
    min-height: 48px;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--brand-darker);
    border-color: var(--brand-darker);
    box-shadow: 0 12px 28px rgba(79, 126, 149, 0.2);
}

.btn-primary:hover {
    color: var(--white);
    background: #3f6d84;
    border-color: #3f6d84;
}

.btn-outline {
    color: var(--gray-900);
    background: transparent;
    border-color: rgba(31, 41, 35, 0.22);
}

.btn-outline:hover {
    color: var(--brand-darker);
    background: var(--white);
    border-color: var(--brand-darker);
}

/* Header – identische Grundstruktur zur Hauptseite */

.site-header {
    height: 94px;
    background: rgba(251, 250, 246, 0.98);
    border-bottom: 1px solid rgba(31, 41, 35, 0.07);
    box-shadow: 0 10px 34px rgba(31, 41, 35, 0.055);
    backdrop-filter: blur(14px);
}

.site-header.scrolled {
    box-shadow: 0 12px 36px rgba(31, 41, 35, 0.1);
}

.header-inner {
    height: 94px;
    gap: 18px;
}

.site-logo {
    min-width: 174px;
}

.site-logo .logo-img {
    width: auto;
    height: 64px;
}

.desktop-nav {
    gap: 3px;
}

.nav-link {
    padding: 10px 9px 13px;
    color: var(--gray-700);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.nav-link::after {
    right: 9px;
    bottom: 5px;
    left: 9px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--brand-darker);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-darker);
}

.header-cta {
    min-width: 126px;
    min-height: 50px;
    padding-inline: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 30px rgba(79, 126, 149, 0.22);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 41, 35, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
}

.menu-toggle[aria-expanded="true"] {
    border-color: rgba(79, 126, 149, 0.22);
    background: var(--brand-lightest);
}

.mobile-menu {
    top: 94px;
    height: calc(100vh - 94px);
    max-height: calc(100vh - 94px);
    padding: 28px var(--container-padding) 34px;
    background: var(--warm-white);
    border-top-color: rgba(31, 41, 35, 0.08);
    box-shadow: 0 22px 46px rgba(31, 41, 35, 0.12);
}

.mobile-nav > a:not(.btn) {
    padding-block: 16px;
    border-bottom-color: rgba(31, 41, 35, 0.08);
    font-size: 1.34rem;
    font-style: italic;
    font-weight: 400;
}

/* Hauptseiten-Hero */

.hero-hub {
    position: relative;
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 88px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(24, 37, 32, 0.7) 0%, rgba(24, 37, 32, 0.56) 38%, rgba(24, 37, 32, 0.18) 72%, rgba(24, 37, 32, 0.04) 100%),
        radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 36%),
        url("/images/hero.webp") 62% center / cover no-repeat;
}

.hero-hub::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(251, 250, 246, 0) 0%, var(--warm-white) 100%);
    content: "";
    opacity: 0.56;
    pointer-events: none;
}

.hero-hub-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: calc(100vh - 196px);
    align-items: center;
}

.hero-hub-text {
    max-width: 720px;
}

.hero-hub-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 11px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-hub-text h1 {
    display: flex;
    max-width: 720px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 4.5vw, 4.2rem);
    letter-spacing: -0.035em;
}

.hero-title-line {
    display: inline-block;
    max-width: 100%;
    padding: 0.01em 0.18em 0.09em;
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 38px rgba(31, 41, 35, 0.18);
    line-height: 0.98;
}

.hero-title-line--sage {
    background: rgba(101, 134, 94, 0.94);
}

.hero-title-line--blue {
    margin-left: 0.52em;
    background: rgba(79, 126, 149, 0.94);
}

.hero-title-line--soft {
    margin-left: 1.24em;
    color: var(--gray-900);
    background: rgba(191, 216, 232, 0.92);
}

.hero-hub-subtitle {
    max-width: 570px;
    margin-bottom: 20px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.92);
    border-left: 2px solid rgba(255, 255, 255, 0.48);
    font-size: 1rem;
    line-height: 1.58;
}

.hero-hub-facts {
    display: flex;
    max-width: 650px;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: 20px 0 24px;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.79rem;
}

.hero-hub-facts span {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.hero-hub-facts strong {
    color: var(--white);
}

.hero-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-hub-actions .btn {
    min-width: 184px;
    padding-block: 12px;
}

.hero-hub-actions .btn-primary {
    background: rgba(79, 126, 149, 0.96);
    border-color: rgba(79, 126, 149, 0.96);
}

.hero-hub-actions .btn-outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(8px);
}

.hero-hub-actions .btn-outline:hover {
    color: var(--gray-900);
    background: var(--white);
}

.hero-scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 50%;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-full);
    box-shadow: 0 18px 38px rgba(31, 41, 35, 0.2);
    transform: translateX(-50%);
}

.hero-scroll-cue::before,
.hero-scroll-cue::after {
    position: absolute;
    left: 50%;
    background: var(--gray-700);
    content: "";
    transform: translateX(-50%);
}

.hero-scroll-cue::before {
    top: 15px;
    width: 2px;
    height: 20px;
}

.hero-scroll-cue::after {
    top: 28px;
    width: 12px;
    height: 12px;
    background: transparent;
    border-right: 2px solid var(--gray-700);
    border-bottom: 2px solid var(--gray-700);
    transform: translateX(-50%) rotate(45deg);
}

/* Intro und Einstiegskarten */

.home-intro {
    position: relative;
    padding-top: 90px;
    padding-bottom: 86px;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--white) 100%);
}

.home-intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 68px;
    align-items: end;
}

.home-intro-copy h2 {
    max-width: 680px;
    margin-bottom: 0;
}

.home-intro-text {
    max-width: 710px;
    margin-bottom: 0;
    color: var(--gray-700);
    font-size: clamp(1.14rem, 1.8vw, 1.36rem);
    line-height: 1.72;
}

.home-entry-grid {
    display: grid;
    width: min(var(--container-max), calc(100% - (var(--container-padding) * 2)));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 46px auto 0;
}

.home-entry-card {
    position: relative;
    display: flex;
    min-height: 210px;
    justify-content: flex-end;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(31, 41, 35, 0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

.home-entry-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: var(--brand-darker);
    content: "";
}

.home-entry-card::after {
    position: absolute;
    top: -48px;
    right: -46px;
    width: 132px;
    height: 132px;
    background: rgba(255, 255, 255, 0.36);
    border-radius: var(--radius-full);
    content: "";
}

.home-entry-card--blue {
    background: linear-gradient(145deg, var(--white) 0%, var(--brand-lightest) 100%);
}

.home-entry-card--sage {
    background: linear-gradient(145deg, var(--white) 0%, var(--sage-lightest) 100%);
}

.home-entry-card--sage::before {
    background: var(--sage-dark);
}

.home-entry-card--map {
    background: linear-gradient(145deg, var(--white) 0%, var(--teal-light) 100%);
}

.home-entry-card--map::before {
    background: var(--teal);
}

.home-entry-card--team {
    background: linear-gradient(145deg, var(--white) 0%, #f7f1e8 100%);
}

.home-entry-card--team::before {
    background: #b58a56;
}

.home-entry-kicker {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--gray-600);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-entry-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.78rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.05;
    hyphens: auto;
}

.home-entry-card span:last-child {
    position: relative;
    z-index: 1;
    color: var(--gray-600);
    font-size: 0.86rem;
    line-height: 1.48;
}

.home-entry-card:hover {
    color: var(--gray-900);
    box-shadow: 0 22px 54px rgba(31, 41, 35, 0.11);
    transform: translateY(-3px);
}

/* Ambulanter Pflegebereich */

.pflegebereiche {
    background: var(--white);
}

.pflegebereiche-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pflegebereich-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    overflow: hidden;
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pflegebereich-image {
    height: 100%;
    min-height: 470px;
    overflow: hidden;
}

.pflegebereich-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pflegebereich-content {
    padding: 48px 48px 48px 0;
}

.pflegebereich-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pflegebereich-content h3 {
    margin-bottom: 14px;
    color: var(--gray-800);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.pflegebereich-content > p {
    margin-bottom: 24px;
    color: var(--gray-600);
    font-size: 0.98rem;
    line-height: 1.76;
}

.pflegebereich-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pflegebereich-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.89rem;
    font-weight: 600;
    line-height: 1.5;
}

.pflegebereich-features svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--brand-darker);
}

/* Leistungen */

.services-section {
    background: linear-gradient(180deg, var(--brand-lightest) 0%, var(--gray-50) 100%);
}

.services-section .section-header {
    margin-bottom: 42px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 270px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(31, 41, 35, 0.06);
}

.service-card::before {
    background: var(--brand-darker);
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
    background: var(--sage-dark);
}

.service-card:nth-child(3)::before,
.service-card:nth-child(6)::before {
    background: var(--teal);
}

.service-card .icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border-radius: var(--radius-full);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.service-card p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.89rem;
    line-height: 1.65;
}

.service-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ablauf */

.concept-refresh--soft {
    background: var(--gray-50);
}

.concept-refresh-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.concept-refresh-head h2 {
    margin-bottom: 18px;
}

.concept-refresh-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1rem;
}

.concept-pillars {
    display: grid;
    gap: 18px;
}

.concept-pillars--cols-3 {
    max-width: 1040px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
}

.concept-pillars article {
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.concept-pillars article > span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--brand-darker);
    background: var(--brand-lightest);
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
}

.concept-pillars h3 {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
}

.concept-pillars p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.64;
}

/* Vilshofen-Teaser und Standort */

.location-teaser {
    padding-top: 74px;
    padding-bottom: 74px;
    background: var(--white);
}

.home-concept-teaser {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(235, 243, 250, 0.94), rgba(232, 243, 237, 0.92)),
        var(--white);
    border: 1px solid rgba(160, 200, 230, 0.36);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.home-concept-teaser h2 {
    max-width: 820px;
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.home-concept-teaser p {
    max-width: 780px;
    margin-bottom: 0;
}

.main-location {
    background: var(--cream-light);
}

.location-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(40px, 6vw, 74px);
    align-items: center;
}

.location-copy h2 {
    margin-bottom: 28px;
}

.address-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.address-card > svg {
    color: var(--brand-darker);
}

.location-contact-list {
    gap: 10px;
}

.location-contact-list a {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.map-card {
    min-height: 500px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.map-placeholder {
    min-height: 500px;
    background:
        radial-gradient(circle at 30% 24%, rgba(191, 216, 232, 0.72), transparent 34%),
        linear-gradient(145deg, var(--white), var(--sage-lightest));
}

/* FAQ-Karten wie auf der Hauptseite */

.answers {
    background: var(--warm-white);
}

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

.answer-card {
    display: flex;
    min-height: 246px;
    flex-direction: column;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(31, 41, 35, 0.06);
}

.answer-card:nth-child(2),
.answer-card:nth-child(3) {
    background: var(--cream-light);
}

.answer-card h3 {
    margin-bottom: 12px;
    font-size: 1.24rem;
}

.answer-card p {
    margin-bottom: 22px;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.66;
}

.answer-card a {
    margin-top: auto;
    color: var(--brand-darker);
    font-size: 0.84rem;
    font-weight: 700;
}

/* Kontakt */

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

.contact-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: clamp(42px, 6vw, 76px);
    align-items: start;
}

.contact-copy h2 {
    margin-bottom: 18px;
}

.contact-copy > .lead {
    margin-bottom: 28px;
}

.contact-cards {
    gap: 10px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-card > svg {
    color: var(--brand-darker);
}

.privacy-note {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(31, 41, 35, 0.07);
    border-radius: var(--radius-md);
}

.form-panel {
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(31, 41, 35, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--gray-50);
    border-color: var(--gray-200);
    border-radius: var(--radius-md);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: var(--white);
    border-color: var(--brand-darker);
    box-shadow: 0 0 0 3px rgba(79, 126, 149, 0.12);
}

.portfolio-strip {
    padding-block: 58px;
    background: var(--warm-white);
    border-top: 1px solid var(--border-light);
}

.portfolio-inner h2 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

/* Footer */

.site-footer {
    padding-top: 72px;
    color: var(--white);
    background: var(--gray-900);
}

.footer-grid {
    gap: 42px 34px;
}

.footer-logo .logo-img {
    width: auto;
    height: 58px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-column a,
.footer-column address {
    color: rgba(255, 255, 255, 0.58);
}

.footer-column h2 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a:hover,
.footer-link-button:hover {
    color: var(--brand);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Consent wie auf der Hauptseite: nicht modal, kein Scroll-Lock */

.cookie-banner {
    position: fixed;
    z-index: 1800;
    right: 0;
    bottom: 0;
    left: 0;
    top: auto;
    display: none;
    max-height: min(90vh, 620px);
    align-items: initial;
    justify-content: initial;
    overflow-y: auto;
    padding: 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-inner {
    display: flex;
    max-width: var(--container-max);
    align-items: flex-end;
    gap: 24px;
    margin: 0 auto;
}

.cookie-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.cookie-copy h2 {
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
}

.cookie-copy > p:not(.eyebrow) {
    margin-bottom: 13px;
    font-size: 0.82rem;
}

.consent-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.consent-option {
    min-height: 60px;
    padding: 10px 12px;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.consent-option-required {
    background: var(--sage-lightest);
    cursor: default;
}

.cookie-actions {
    display: flex;
    width: 190px;
    flex: 0 0 190px;
    flex-direction: column;
    gap: 10px;
}

.cookie-actions .btn {
    width: 100%;
}

@media (max-width: 1120px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .header-cta {
        margin-left: auto;
    }

    .hero-hub {
        min-height: 740px;
        padding-top: 104px;
        padding-bottom: 78px;
        background:
            linear-gradient(90deg, rgba(24, 37, 32, 0.72) 0%, rgba(24, 37, 32, 0.54) 48%, rgba(24, 37, 32, 0.16) 100%),
            url("/images/hero.webp") 64% center / cover no-repeat;
    }

    .hero-hub-inner {
        min-height: 558px;
    }

    .hero-hub-text h1 {
        font-size: clamp(2.75rem, 7vw, 4.3rem);
    }

    .hero-title-line--blue {
        margin-left: 0.28em;
    }

    .hero-title-line--soft {
        margin-left: 0.72em;
    }

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

    .pflegebereich-card {
        gap: 36px;
    }

    .pflegebereich-content {
        padding: 38px 38px 38px 0;
    }

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

    .contact-layout,
    .location-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 760px) {
    :root {
        --container-padding: 18px;
        --section-space: 64px;
    }

    html {
        font-size: 16px;
        scroll-padding-top: 82px;
    }

    .site-header {
        height: 76px;
    }

    .header-inner {
        height: 76px;
    }

    .site-logo {
        min-width: 0;
    }

    .site-logo .logo-img {
        height: 50px;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu {
        top: 76px;
        height: calc(100vh - 76px);
        max-height: calc(100vh - 76px);
    }

    .hero-hub {
        min-height: 740px;
        padding-top: 94px;
        padding-bottom: 66px;
        background:
            linear-gradient(180deg, rgba(24, 37, 32, 0.78) 0%, rgba(24, 37, 32, 0.52) 46%, rgba(24, 37, 32, 0.26) 100%),
            url("/images/hero.webp") 70% center / cover no-repeat;
    }

    .hero-hub-inner {
        min-height: 578px;
        align-items: flex-end;
    }

    .hero-hub-label {
        margin-bottom: 16px;
        padding: 7px 9px;
        font-size: 0.68rem;
    }

    .hero-hub-text h1 {
        gap: 6px;
        margin-bottom: 18px;
        font-size: clamp(2.32rem, 11vw, 3rem);
    }

    .hero-title-line {
        padding-right: 0.16em;
        padding-left: 0.16em;
    }

    .hero-title-line--blue,
    .hero-title-line--soft {
        margin-left: 0;
    }

    .hero-hub-subtitle {
        padding-left: 14px;
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-hub-facts {
        gap: 7px 16px;
        margin: 18px 0 22px;
        padding: 12px 0;
    }

    .hero-hub-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-hub-actions .btn {
        width: 100%;
    }

    .hero-scroll-cue {
        display: none;
    }

    .home-intro {
        padding-top: 66px;
        padding-bottom: 64px;
    }

    .home-intro-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-entry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .home-entry-card {
        min-height: 168px;
        padding: 22px;
    }

    .pflegebereich-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pflegebereich-image {
        min-height: 330px;
        aspect-ratio: 4 / 3;
    }

    .pflegebereich-content {
        padding: 30px 24px 34px;
    }

    .services-grid,
    .concept-pillars--cols-3,
    .answers-grid,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .home-concept-teaser {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .home-concept-teaser .btn {
        width: 100%;
    }

    .map-card,
    .map-placeholder {
        min-height: 380px;
    }

    .answer-card {
        min-height: 0;
        padding: 25px 22px;
    }

    .form-panel {
        padding: 26px 20px;
    }

    .portfolio-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .cookie-banner {
        max-height: 88vh;
        padding: 18px;
    }

    .cookie-banner-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .consent-options {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        width: 100%;
        flex: 0 0 auto;
    }
}
