:root {
    --ink: #171b25;
    --muted: #5d6472;
    --line: #e1e6ef;
    --paper: #fbfcff;
    --soft: #f2f6fb;
    --green: #e2051b;
    --green-dark: #9f0011;
    --lake: #174a9c;
    --clay: #d43d45;
    --gold: #f2b84b;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(22, 33, 31, .12);
    --radius: 8px;
    --container: 1180px;
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    isolation: isolate;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(226, 5, 27, .045), transparent 38%),
        linear-gradient(245deg, rgba(23, 74, 156, .045), transparent 48%);
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

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

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(47, 111, 143, .45);
    outline-offset: 4px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    inset: 12px auto auto 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: var(--radius);
    transform: translateY(-160%);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
    background: rgba(255, 253, 248, .94);
    border-bottom: 1px solid rgba(219, 229, 224, .82);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.scroll-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), var(--clay), var(--lake));
}

.site-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(22, 33, 31, .09);
    background: rgba(255, 253, 248, .98);
}

.topbar {
    color: #eef8f3;
    background: linear-gradient(90deg, var(--green-dark), var(--lake));
    background-size: 180% 180%;
    font-size: .86rem;
    animation: headerFlow 14s ease-in-out infinite alternate;
}

.topbar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar a {
    text-decoration: none;
}

.navbar {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.brand__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--lake));
    background-size: 160% 160%;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(47, 111, 143, .18);
    transition: transform .25s ease, background-position .4s ease, box-shadow .25s ease;
}

.brand:hover .brand__mark {
    transform: translateY(-1px);
    background-position: 100% 50%;
    box-shadow: 0 16px 32px rgba(47, 111, 143, .24);
}

.brand__text {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand__text strong {
    font-size: 1rem;
    line-height: 1.15;
}

.brand__text small {
    color: var(--muted);
    font-size: .82rem;
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, .72);
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
}

.main-nav a {
    position: relative;
    color: #2d3835;
    font-size: .96rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: linear-gradient(90deg, var(--clay), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.main-nav a:hover {
    color: var(--green-dark);
}

.header-call {
    display: grid;
    gap: 0;
    padding: 9px 12px;
    color: var(--green-dark);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.header-call:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 111, 143, .32);
    box-shadow: 0 14px 28px rgba(22, 33, 31, .09);
}

.header-call span {
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.1;
}

.header-call strong {
    font-size: .94rem;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.nav-toggle__line {
    width: 20px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--green-dark);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100svh - var(--header-height)));
    display: grid;
    align-items: center;
    overflow: clip;
}

.hero__media,
.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    will-change: transform;
}

.hero__media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 32, 29, .84) 0%, rgba(18, 32, 29, .58) 42%, rgba(18, 32, 29, .14) 78%),
        linear-gradient(0deg, rgba(18, 32, 29, .34), rgba(18, 32, 29, .1));
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-block: clamp(58px, 8vw, 96px);
    color: var(--white);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--clay);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero .eyebrow,
.cta-strip .eyebrow,
.page-hero--image .eyebrow {
    color: #f0c779;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 4.8vw, 4.9rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.25rem);
}

h3 {
    font-size: 1.25rem;
}

.hero__lead,
.page-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__lead {
    color: rgba(255, 255, 255, .88);
    margin-top: 20px;
}

.hero__actions,
.section-action,
.form-actions,
.cookie-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__actions {
    margin-top: 22px;
}

.button {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(49, 95, 85, .18);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -75%;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
    pointer-events: none;
}

.button:hover::after {
    left: 120%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(49, 95, 85, .24);
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.button--light {
    color: var(--green-dark);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .9);
}

.button--light:hover {
    color: var(--white);
}

.button--secondary {
    color: var(--green-dark);
    background: var(--white);
    border-color: var(--line);
    box-shadow: none;
}

.button--secondary:hover {
    color: var(--white);
    border-color: var(--green-dark);
}

.button--ghost {
    color: var(--green-dark);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--lake);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform: scaleX(.34);
    transform-origin: left;
    transition: transform .25s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.stats-band {
    background:
        linear-gradient(120deg, rgba(32, 63, 57, .98), rgba(47, 111, 143, .82)),
        var(--green-dark);
    color: var(--white);
}

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

.stat {
    padding: clamp(24px, 4vw, 42px) clamp(14px, 3vw, 30px);
    border-left: 1px solid rgba(255, 255, 255, .14);
    transition: background .25s ease, transform .25s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-2px);
}

.stat:last-child {
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.stat strong {
    display: block;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.stat span {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.section {
    padding-block: clamp(72px, 8vw, 118px);
}

.section--muted {
    background:
        linear-gradient(180deg, rgba(243, 247, 244, .72), rgba(255, 253, 248, .92)),
        var(--soft);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.split--reverse {
    grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
}

.split--reverse > :first-child {
    order: 2;
}

.split__content p {
    color: var(--muted);
    margin: 20px 0 0;
    font-size: 1.04rem;
}

.image-stack,
.media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stack::after,
.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, .16) 70%, transparent 82%);
    opacity: 0;
    transform: translateX(-18%);
    transition: opacity .35s ease, transform .6s ease;
    pointer-events: none;
}

.image-stack:hover::after,
.media-card:hover::after {
    opacity: 1;
    transform: translateX(14%);
}

.image-stack img,
.media-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .7s ease, filter .7s ease;
}

.image-stack:hover img,
.media-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.image-stack__note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    color: var(--white);
    background: rgba(32, 63, 57, .86);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

.image-stack__note strong,
.image-stack__note span {
    display: block;
}

.image-stack__note span {
    color: rgba(255, 255, 255, .78);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.info-card,
.value-item,
.document-card,
.content-panel,
.process-step,
.contact-form-panel,
.contact-aside,
.feature-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.info-card::before,
.value-item::before,
.document-card::before,
.content-panel::before,
.process-step::before,
.contact-form-panel::before,
.contact-aside::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--clay));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.info-card:hover::before,
.value-item:hover::before,
.document-card:hover::before,
.content-panel:hover::before,
.process-step:hover::before,
.contact-form-panel:hover::before,
.contact-aside:hover::before {
    transform: scaleX(1);
}

.info-card {
    min-height: 250px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 111, 143, .35);
    box-shadow: var(--shadow);
}

.info-card__icon {
    width: 36px;
    height: 36px;
    display: block;
    margin-bottom: 24px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, var(--gold) 0 24%, transparent 25%),
        linear-gradient(135deg, var(--green), var(--lake));
    transition: transform .35s ease;
}

.info-card:hover .info-card__icon {
    transform: rotate(8deg) scale(1.06);
}

.info-card p,
.value-item p,
.document-card p,
.content-panel p,
.process-step p,
.feature-panel p,
.contact-form-panel p,
.contact-aside p {
    color: var(--muted);
}

.section-action {
    margin-top: 30px;
}

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

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 15px;
    height: 8px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    transform: rotate(-45deg);
}

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

.feature-panel {
    padding: clamp(28px, 5vw, 44px);
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(32, 63, 57, .96), rgba(47, 111, 143, .92)),
        var(--green-dark);
    box-shadow: var(--shadow);
}

.feature-panel::after {
    content: "";
    position: absolute;
    left: 34%;
    right: -28%;
    bottom: -58px;
    height: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    transform: rotate(-8deg);
    animation: panelSheen 8s ease-in-out infinite;
    pointer-events: none;
}

.feature-panel > * {
    position: relative;
    z-index: 1;
}

.feature-panel h3 {
    color: var(--white);
}

.feature-panel p {
    color: rgba(255, 255, 255, .8);
}

.feature-panel__time {
    margin: 14px 0;
    color: var(--white) !important;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1;
}

.section--gallery {
    background: var(--paper);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: repeat(2, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 240px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(22, 33, 31, .58), transparent);
    pointer-events: none;
}

.gallery-item--large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(22, 33, 31, .72);
    border-radius: var(--radius);
    font-weight: 800;
    backdrop-filter: blur(10px);
    z-index: 1;
    transform: translateY(0);
    transition: transform .25s ease, background .25s ease;
}

.gallery-item:hover figcaption {
    transform: translateY(-3px);
    background: rgba(22, 33, 31, .82);
}

.cta-strip {
    padding-block: clamp(46px, 6vw, 70px);
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(32, 63, 57, .98), rgba(47, 111, 143, .9)),
        var(--green-dark);
    background-size: 180% 180%;
    animation: headerFlow 16s ease-in-out infinite alternate;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-strip h2 {
    max-width: 780px;
}

.page-hero {
    position: relative;
    min-height: 390px;
    display: grid;
    align-items: end;
    overflow: clip;
    padding-block: clamp(70px, 9vw, 112px) clamp(56px, 7vw, 92px);
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(213, 168, 79, .14), transparent 34%),
        linear-gradient(130deg, var(--green-dark), var(--lake));
    background-size: 180% 180%;
    animation: headerFlow 14s ease-in-out infinite alternate;
}

.page-hero--image {
    min-height: 520px;
}

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

.page-hero--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22, 33, 31, .82), rgba(22, 33, 31, .45));
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero__lead {
    color: rgba(255, 255, 255, .84);
}

.value-grid,
.process,
.documents-grid,
.two-columns {
    display: grid;
    gap: 18px;
}

.value-grid {
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 143, .34);
    box-shadow: var(--shadow);
}

.service-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 28px;
    padding: clamp(26px, 4vw, 42px) 0;
    border-bottom: 1px solid var(--line);
    transition: background .25s ease;
}

.service-row::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--clay));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
}

.service-row:hover {
    background: rgba(49, 95, 85, .035);
}

.service-row:hover::before {
    transform: scaleY(1);
}

.service-row > span {
    color: var(--clay);
    font-size: 1rem;
    font-weight: 900;
}

.service-row h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.service-row p {
    max-width: 860px;
    margin: 14px 0 0;
    color: var(--muted);
}

.timeline {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.timeline li {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

.timeline li:hover {
    background: var(--soft);
}

.timeline li:last-child {
    border-bottom: 0;
}

.timeline strong {
    color: var(--green);
}

.timeline span {
    color: var(--muted);
}

.process {
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 143, .34);
    box-shadow: var(--shadow);
}

.process-step > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.document-checklist {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

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

.content-panel {
    padding: clamp(26px, 4vw, 42px);
}

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

.document-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 143, .34);
    box-shadow: var(--shadow);
}

.document-card__badge {
    margin-bottom: 22px;
    padding: 6px 10px;
    color: var(--white);
    background: var(--lake);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

.document-card__meta {
    display: flex;
    gap: 12px;
    margin: auto 0 18px;
    color: var(--muted);
    font-size: .9rem;
}

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

.contact-aside,
.contact-form-panel {
    padding: clamp(24px, 4vw, 38px);
}

.contact-form-panel,
.legal-content section {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-aside {
    position: sticky;
    top: 124px;
}

.contact-list,
.footer-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
    font-size: 1.05rem;
    color: var(--green-dark);
}

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

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

.field label {
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 13px 14px;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--lake);
    box-shadow: 0 0 0 4px rgba(47, 111, 143, .12);
    outline: 0;
}

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

.consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.consent input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.form-actions {
    margin-top: 20px;
}

.form-actions p {
    margin: 0;
    font-size: .92rem;
}

.form-alert {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-alert--success {
    color: #174137;
    background: #dff0e7;
    border: 1px solid #b7ddcc;
}

.form-alert--error {
    color: #723121;
    background: #fae2d9;
    border: 1px solid #efb7a5;
}

.legal-section {
    padding-top: 58px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 44px;
}

.legal-index {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 8px;
    align-self: start;
}

.legal-index a {
    padding: 10px 12px;
    text-decoration: none;
    border-radius: var(--radius);
    background: var(--soft);
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.legal-index a:hover {
    color: var(--white);
    background: var(--green);
    transform: translateX(3px);
}

.legal-content {
    max-width: 850px;
}

.legal-content--single {
    max-width: 920px;
}

.legal-content section + section {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.legal-content p {
    color: var(--muted);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(22, 33, 31, .06);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--white);
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--green-dark);
    background: var(--soft);
}

tr:last-child td {
    border-bottom: 0;
}

.site-footer {
    color: rgba(255, 255, 255, .82);
    background: #142421;
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1.05rem;
}

.site-footer a {
    color: inherit;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .58);
    font-size: .88rem;
}

.cookie-banner {
    position: fixed;
    z-index: 200;
    left: auto;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    width: min(520px, calc(100% - 40px));
    max-width: 520px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    animation: bannerEnter .45s ease both;
}

.cookie-banner[hidden] {
    display: none;
}

body.menu-open .cookie-banner {
    display: none;
}

.cookie-banner p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.cookie-banner__actions {
    justify-content: flex-start;
}

.cookie-banner .button {
    min-height: 38px;
    padding: 8px 12px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 150;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);
    background: var(--green);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

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

.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes headerFlow {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 100% 50%;
    }
}

@keyframes panelSheen {
    0%,
    55% {
        opacity: .3;
        transform: translateX(-12%) rotate(-8deg);
    }
    100% {
        opacity: .75;
        transform: translateX(12%) rotate(-8deg);
    }
}

@keyframes bannerEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.08) translate3d(-1.4%, 1%, 0);
    }
}

@media (max-width: 1060px) {
    .navbar {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

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

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

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

    .main-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 18px 20px 24px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-125%);
        transition: transform .25s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .header-call {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .topbar__inner span:nth-child(2) {
        display: none;
    }

    .card-grid--four,
    .value-grid,
    .process,
    .documents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .contact-aside,
    .legal-index {
        position: static;
    }

    .legal-index {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 82px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar {
        display: none;
    }

    .navbar {
        min-height: 82px;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand__text strong {
        font-size: .94rem;
    }

    .brand__text small {
        font-size: .74rem;
        white-space: nowrap;
    }

    .hero {
        min-height: 720px;
        align-items: end;
    }

    .hero__overlay {
        background: linear-gradient(0deg, rgba(18, 32, 29, .9) 0%, rgba(18, 32, 29, .72) 48%, rgba(18, 32, 29, .2) 100%);
    }

    .hero__media img {
        object-position: 62% center;
    }

    .hero__content {
        padding-block: 56px 52px;
    }

    h1 {
        font-size: clamp(1.95rem, 9.2vw, 2.75rem);
    }

    .hero__lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .stats-grid,
    .split,
    .split--reverse,
    .two-columns,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .split--reverse > :first-child {
        order: 0;
    }

    .stat,
    .stat:last-child {
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-item,
    .gallery-item--large {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    .cta-strip__inner,
    .footer-bottom,
    .cookie-banner {
        left: 14px;
        right: 14px;
        top: calc(var(--header-height) + 10px);
        bottom: auto;
        width: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-strip__inner,
    .footer-bottom {
        display: grid;
    }

    .cookie-banner {
        display: flex;
    }

    .cookie-banner[hidden] {
        display: none;
    }

    .hero__actions .button {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding-inline: 10px;
        font-size: .92rem;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-banner__actions .button {
        flex: 1 1 150px;
    }

    .cookie-banner__actions .button--ghost {
        flex: 0 0 auto;
        min-height: 38px;
    }
}

@media (max-width: 620px) {
    .card-grid--four,
    .value-grid,
    .process,
    .documents-grid,
    .field-grid,
    .check-list--two,
    .legal-index {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .timeline li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

    .document-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

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

/* AVIS Arona overrides and dedicated components */
/* Horizontal logo pill: fixed height, auto width, image constrained by height
   so the "ARONA" wordmark can never overflow the frame on any device. */
.brand__mark--logo {
    width: auto;
    height: 50px;
    min-width: 0;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(226, 5, 27, .16);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(23, 27, 37, .08);
    overflow: hidden;
}

.brand__mark--logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.brand:hover .brand__mark--logo {
    box-shadow: 0 14px 30px rgba(226, 5, 27, .16);
    transform: translateY(-1px);
}

.brand__text { align-content: center; }
.brand--footer .brand__mark--logo {
    background: #fff;
    border-color: rgba(255, 255, 255, .25);
}

.topbar {
    background: linear-gradient(90deg, #9f0011, #174a9c);
}

.scroll-progress,
.main-nav a::after,
.info-card::before,
.value-item::before,
.document-card::before,
.content-panel::before,
.process-step::before,
.contact-form-panel::before,
.contact-aside::before {
    background: linear-gradient(90deg, var(--green), var(--lake), var(--gold));
}

.hero {
    min-height: min(700px, calc(100svh - var(--header-height) - 48px));
}

.hero__media img {
    object-position: 50% 46%;
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(18, 22, 34, .88) 0%, rgba(18, 22, 34, .62) 44%, rgba(18, 22, 34, .18) 80%),
        linear-gradient(0deg, rgba(18, 22, 34, .36), rgba(18, 22, 34, .08));
}

.quick-band {
    background: var(--white);
    border-block: 1px solid var(--line);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 22px;
    text-decoration: none;
    border-left: 1px solid var(--line);
    transition: background .2s ease, transform .2s ease;
}

.quick-card:last-child {
    border-right: 1px solid var(--line);
}

.quick-card:hover {
    background: #f7f9fd;
    transform: translateY(-2px);
}

.quick-card strong {
    color: var(--green-dark);
    font-size: 1.05rem;
}

.quick-card span {
    color: var(--muted);
    line-height: 1.35;
}

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

.feature-image {
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-grid,
.booking-grid {
    display: grid;
    gap: 18px;
}

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

.news-card,
.news-feature,
.booking-card,
.steps-panel,
.contact-mini,
.document-group {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.news-card {
    display: grid;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card div {
    padding: 20px;
}

.news-card span,
.booking-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 9px;
    color: var(--green-dark);
    background: rgba(226, 5, 27, .08);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.news-card p,
.news-feature p,
.booking-card p {
    color: var(--muted);
}

.news-list {
    display: grid;
    gap: 22px;
}

.news-feature {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
}

.news-feature img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.news-feature div {
    padding: clamp(24px, 4vw, 42px);
}

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

.booking-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 4vw, 34px);
}

.booking-card .button {
    margin-top: auto;
}

.booking-card--accent {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-dark), var(--lake));
}

.booking-card--accent p,
.booking-card--accent span {
    color: rgba(255, 255, 255, .82);
}

.booking-card--accent span {
    background: rgba(255, 255, 255, .14);
}

.steps-panel,
.contact-mini {
    padding: clamp(24px, 4vw, 34px);
}

.timeline {
    display: grid;
    gap: 16px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.timeline li {
    display: grid;
    gap: 3px;
    padding-left: 18px;
    border-left: 3px solid rgba(226, 5, 27, .28);
}

.timeline span {
    color: var(--muted);
}

.contact-mini {
    display: grid;
    gap: 12px;
}

.contact-mini a {
    padding: 14px 16px;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.social-links--dark a {
    color: var(--green-dark);
    border-color: var(--line);
    background: var(--white);
}

.document-sections {
    display: grid;
    gap: 34px;
}

.document-group {
    padding: clamp(22px, 4vw, 34px);
}

.document-group__heading {
    margin-bottom: 20px;
}

.document-group__heading h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.document-card h3 {
    font-size: 1.14rem;
}

.org-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: clamp(24px, 5vw, 52px);
    align-items: start;
}

.page-hero--image {
    min-height: 520px;
    display: grid;
    align-items: end;
    color: var(--white);
    background: #101622;
}

.page-hero--image picture,
.page-hero--image picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero--image picture img {
    object-fit: cover;
    opacity: .58;
}

.page-hero--image .page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero--image::after {
    background: linear-gradient(0deg, rgba(16, 22, 34, .86), rgba(16, 22, 34, .18));
}

.footer-bottom {
    gap: 10px;
}

.contact-list small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .quick-grid,
    .news-grid,
    .booking-grid,
    .card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .org-layout,
    .news-feature {
        grid-template-columns: 1fr;
    }

    .news-feature img {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 820px) {
    .brand__mark--logo {
        width: auto;
        height: 44px;
        padding: 6px 10px;
    }

    .hero {
        min-height: min(660px, calc(100svh - var(--header-height) - 32px));
    }

    .hero__media img {
        object-position: 58% center;
    }
}

@media (max-width: 620px) {
    .quick-grid,
    .news-grid,
    .booking-grid,
    .card-grid--three {
        grid-template-columns: 1fr;
    }

    .quick-card {
        min-height: 92px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .page-hero--image {
        min-height: 480px;
    }
}
