:root {
    --font-heading: "Segoe UI", "DejaVu Sans", Arial, sans-serif;
    --font-body: "Segoe UI", "DejaVu Sans", Arial, sans-serif;
    --ink: #10233f;
    --muted: #52647a;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow: 0 18px 50px rgba(17, 51, 86, 0.1);
    --container: 1280px;
    --header-height: 120px;
}

body[data-theme="cleaning"] {
    --accent: #1268d3;
    --accent-dark: #0a4ea8;
    --accent-secondary: #0b9fb3;
    --accent-soft: #e7f5ff;
    --page-bg: #f6fbff;
    --section-bg: #eef8ff;
    --card-border: #b9daf5;
    --button-active: #073d86;
    --footer-bg: #092d5a;
    --decorative-color: 36, 157, 219;
    --focus-color: #074fa7;
}

body[data-theme="landscape"] {
    --accent: #26733c;
    --accent-dark: #19542b;
    --accent-secondary: #69a63f;
    --accent-soft: #e9f6e7;
    --page-bg: #f7fbf4;
    --section-bg: #eff8eb;
    --card-border: #bcd9b6;
    --button-active: #103c20;
    --footer-bg: #143f25;
    --decorative-color: 90, 157, 74;
    --focus-color: #19542b;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--page-bg);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-synthesis: none;
    line-height: 1.68;
    transition: background-color 600ms ease, color 600ms ease;
}

body::before,
body::after {
    position: fixed;
    z-index: -2;
    width: min(48vw, 700px);
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
    filter: blur(90px);
    opacity: 0.15;
    pointer-events: none;
    animation: ambient-drift 24s ease-in-out infinite alternate;
    transition: background-color 600ms ease;
}

body::before {
    top: 18vh;
    right: -18vw;
    background: rgba(var(--decorative-color), 0.65);
}

body::after {
    bottom: 10vh;
    left: -20vw;
    background: color-mix(in srgb, var(--accent-secondary) 50%, transparent);
    animation-delay: -9s;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 0.65em;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

h1 {
    max-width: 980px;
    font-size: clamp(2.6rem, 5vw, 4.1rem);
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
}

p {
    margin-bottom: 1em;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--focus-color);
    outline-offset: 4px;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--accent-dark);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
}

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

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

.section {
    position: relative;
    padding-block: clamp(62px, 6.5vw, 92px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading > p:last-child {
    max-width: 660px;
    color: var(--muted);
}

.section-heading-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading-row > p {
    max-width: 420px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent-dark);
    font-size: max(0.95rem, 14px);
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color 600ms ease;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 18%, transparent);
    font-size: clamp(1.05rem, 1.3vw, 1.125rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 220ms ease, border-color 600ms ease, color 220ms ease, box-shadow 600ms ease, transform 220ms ease;
}

.button:hover {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 24%, transparent);
    transform: translateY(-2px);
}

.button:focus-visible {
    color: var(--white);
    outline: 3px solid var(--focus-color);
    outline-offset: 4px;
}

.button:active {
    color: var(--white);
    background: var(--button-active);
    border-color: var(--button-active);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--button-active) 22%, transparent);
    transform: translateY(0);
}

.button-secondary {
    color: var(--accent-dark);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--accent);
    box-shadow: none;
}

.button-secondary:hover {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.button-secondary:focus-visible:not(:hover):not(:active) {
    color: var(--accent-dark);
}

.button-secondary:active {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.button-small {
    min-height: 54px;
    padding-inline: 22px;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid color-mix(in srgb, var(--card-border) 70%, transparent);
    background: color-mix(in srgb, var(--page-bg) 90%, white);
    box-shadow: 0 8px 24px rgba(16, 35, 63, 0.05);
    backdrop-filter: blur(16px);
    transition: background-color 600ms ease, border-color 600ms ease, box-shadow 600ms ease;
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.brand > img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.header-brand > img {
    height: 116px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 1.2vw, 20px);
}

.primary-nav > a:not(.button) {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding-inline: 5px;
    font-size: clamp(1.075rem, 1.3vw, 1.125rem);
    font-weight: 600;
    text-decoration: none;
}

.primary-nav > a:not(.button):hover {
    color: var(--accent-dark);
}

.language-switch {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: border-color 600ms ease;
}

.language-switch a,
.language-switch span {
    min-width: 40px;
    padding: 5px 8px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
}

.language-switch [aria-current="page"] {
    color: var(--white);
    background: var(--accent);
    font-weight: 700;
}

.language-switch a:hover {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.language-switch a:active {
    color: var(--white);
    background: var(--accent-dark);
}

.menu-toggle {
    display: none;
    width: 54px;
    height: 54px;
    padding: 14px;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease;
}

.menu-toggle:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.menu-toggle:active {
    border-color: var(--accent-dark);
    background: color-mix(in srgb, var(--accent-soft) 65%, var(--accent));
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin-block: 5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-block:
        clamp(72px, 7vw, 104px)
        clamp(28px, 2.9vw, 36px);
    background:
        radial-gradient(
            ellipse 50% 78% at 78% 20%,
            rgba(var(--decorative-color), 0.13) 0%,
            rgba(var(--decorative-color), 0.06) 38%,
            transparent 70%
        ),
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--page-bg) 88%, white),
            var(--section-bg)
        );
    transition: background-color 600ms ease;
}

.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(circle, rgba(var(--decorative-color), 0.22) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    content: "";
    opacity: 0.2;
    -webkit-mask-image:
        linear-gradient(to right, transparent 5%, black 80%),
        linear-gradient(to bottom, black 0%, black 62%, transparent 94%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 5%, black 80%),
        linear-gradient(to bottom, black 0%, black 62%, transparent 94%);
    mask-composite: intersect;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 980px;
}

.hero-lead {
    max-width: 800px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.68;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 30px;
    margin-bottom: 32px;
}

.experience-badge {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 18px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    transition: border-color 600ms ease, box-shadow 600ms ease;
}

.experience-badge strong {
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.hero-assurances ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-assurances li {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    font-weight: 700;
}

.hero-assurances li::before {
    position: absolute;
    left: 0;
    color: var(--accent);
    content: "✓";
    font-weight: 900;
}

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

.hero-actions .button {
    min-width: 230px;
}

.ambient-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: rgba(var(--decorative-color), 0.2);
    filter: blur(22px);
    pointer-events: none;
    will-change: transform;
    transition: background-color 600ms ease;
    animation: shape-float 18s ease-in-out infinite alternate;
}

.ambient-shape-hero {
    top: 4%;
    right: -8%;
    width: min(46vw, 620px);
    aspect-ratio: 1;
}

.ambient-shape-hero-secondary {
    bottom: clamp(36px, 4vw, 56px);
    left: 24%;
    width: min(35vw, 440px);
    aspect-ratio: 1;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-secondary) 20%, transparent) 0%,
        color-mix(in srgb, var(--accent-secondary) 9%, transparent) 38%,
        transparent 70%
    );
    filter: blur(28px);
    animation-delay: -7s;
}

.ambient-shape-category {
    top: 10%;
    right: -15%;
    width: min(38vw, 520px);
    aspect-ratio: 1;
}

.ambient-shape-about {
    top: 18%;
    left: -16%;
    width: min(32vw, 450px);
    aspect-ratio: 1;
}

/* Services */
.services-section {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 42% 60% at 15% 40%,
            rgba(var(--decorative-color), 0.2) 0%,
            rgba(var(--decorative-color), 0.08) 42%,
            transparent 66%
        ),
        linear-gradient(
            180deg,
            var(--section-bg),
            color-mix(in srgb, var(--section-bg) 94%, white) 52%,
            color-mix(in srgb, var(--page-bg) 88%, white)
        );
    transition: background-color 600ms ease;
}

body[data-theme="cleaning"] .services-section::before,
body[data-theme="landscape"] .services-section::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: 0.16;
    pointer-events: none;
}

body[data-theme="cleaning"] .services-section::before {
    background-image:
        radial-gradient(circle at 12% 24%, transparent 0 22px, rgba(18,104,211,0.18) 23px 25px, transparent 26px),
        radial-gradient(circle at 86% 66%, transparent 0 42px, rgba(11,159,179,0.15) 43px 46px, transparent 47px);
}

body[data-theme="landscape"] .services-section::before {
    background-image:
        linear-gradient(155deg, transparent 65%, rgba(38,115,60,0.17) 66% 68%, transparent 69%),
        radial-gradient(ellipse at 80% 85%, rgba(105,166,63,0.18), transparent 40%);
}

.service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    gap: 12px;
    margin-bottom: 42px;
    padding: 10px;
    border: 1px solid var(--card-border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    transition: border-color 600ms ease, background-color 600ms ease, box-shadow 600ms ease;
}

.service-tabs button {
    position: relative;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 18px;
    color: var(--ink);
    background: transparent;
    font-size: clamp(1.125rem, 1.7vw, 1.375rem);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 250ms ease, border-color 600ms ease, color 250ms ease, box-shadow 600ms ease, transform 250ms ease;
}

.service-tabs button svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.service-tabs button:hover {
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-color: var(--accent);
}

.service-tabs button:active {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.service-tabs button[aria-selected="true"] {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent-dark);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 20%, transparent);
    font-weight: 700;
}

.service-tabs button[aria-selected="true"]:hover {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.service-tabs button[aria-selected="true"]:active {
    color: var(--white);
    background: var(--button-active);
    border-color: var(--button-active);
}

.service-tabs button[aria-selected="true"]::after {
    content: "✓";
    font-weight: 900;
}

.service-panel {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
}

.service-card {
    grid-column: span 2;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    transition: border-color 600ms ease, box-shadow 600ms ease, transform 250ms ease;
}

.service-card:hover {
    box-shadow: 0 22px 58px color-mix(in srgb, var(--accent) 15%, transparent);
    transform: translateY(-4px);
}

.landscape-card--wide {
    grid-column: span 4;
}

.landscape-card-media {
    width: 100%;
    aspect-ratio: 8 / 3;
    overflow: hidden;
    background: #dce8df;
}

.landscape-card-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
}

.service-card > img,
.service-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.service-card > img,
.service-card-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card > img.product-photo {
    padding: 12px;
    background: #f7f9f8;
    object-fit: contain;
}

.service-card-media {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e8edf2;
}

.service-card-media > .before-after {
    width: 100%;
    height: 100%;
}

.service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

#panel-cleaning .service-card-body {
    min-height: clamp(185px, 15vw, 202px);
}

.service-card h3 {
    min-block-size: 2.35em;
    margin-bottom: 12px;
    overflow-wrap: normal;
    hyphens: none;
}

.service-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: max(1rem, 16px);
    line-height: 1.68;
}

.service-panel-action {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

/* Reusable accessible before/after comparison */
.before-after,
.before-after-media {
    position: relative;
    overflow: hidden;
}

.before-after {
    --before-after-position: 50%;
}

.before-after-media {
    width: 100%;
    height: 100%;
    background: #e8edf2;
}

.before-after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 58%;
}

.before-after-before {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    clip-path: inset(0 calc(100% - var(--before-after-position)) 0 0);
}

.before-after-image-before {
    width: 100%;
    max-width: none;
}

.before-after-split-source .before-after-image {
    right: auto;
    width: 200%;
    max-width: none;
    object-position: 50% 50%;
}

.before-after-split-source .before-after-image-after {
    left: -100%;
}

.before-after-split-source .before-after-image-before {
    left: 0;
}

.before-after-split-source-reversed .before-after-image-after {
    left: 0;
}

.before-after-split-source-reversed .before-after-image-before {
    left: -100%;
}

.before-after-label {
    position: absolute;
    z-index: 3;
    top: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 22, 39, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

.before-after-label-before {
    left: 14px;
}

.before-after-label-after {
    right: 14px;
}

.before-after-divider {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: var(--before-after-position);
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 0 1px rgba(8, 26, 45, 0.24);
    transform: translateX(-50%);
}

.before-after-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 6px 18px rgba(8, 26, 45, 0.3);
    transform: translate(-50%, -50%);
}

.before-after-divider span::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    content: "↔";
    font-size: 20px;
    font-weight: 900;
}

.before-after-media input[type="range"] {
    position: absolute;
    z-index: 4;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    touch-action: pan-y;
}

.before-after-media input[type="range"]:focus-visible {
    outline: 0;
}

.before-after:focus-within {
    outline: 3px solid var(--focus-color);
    outline-offset: -4px;
}

.before-after:focus-within .before-after-divider span {
    outline: 3px solid var(--focus-color);
    outline-offset: 4px;
}

/* Rental */
.rental-section,
.reviews-section {
    background: color-mix(in srgb, var(--page-bg) 88%, white);
    transition: background-color 600ms ease;
}

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

.rental-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: border-color 600ms ease, box-shadow 600ms ease, transform 250ms ease;
}

.rental-card--last {
    grid-column: 2;
}

.rental-card:hover {
    transform: translateY(-4px);
}

.rental-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f3f6f7;
}

.rental-card > img.equipment-photo-contain {
    padding: 14px;
    object-fit: contain;
}

.rental-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.rental-type {
    margin-bottom: 8px;
    color: var(--accent-dark);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rental-body h3 {
    margin-bottom: 8px;
    font-size: clamp(1.375rem, 2vw, 1.65rem);
}

.rental-body > p:not(.rental-type) {
    color: var(--muted);
    font-size: max(1rem, 16px);
}

.rental-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: auto 0 20px;
    padding-top: 14px;
    border-top: 1px solid var(--card-border);
}

.rental-meta strong {
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.8vw, 1.4rem);
    letter-spacing: -0.02em;
}

.rental-meta span {
    font-size: max(0.95rem, 15px);
    font-weight: 700;
}

.button-card {
    width: 100%;
    min-height: 52px;
}

/* Benefits and reviews */
.benefits {
    padding-block: clamp(62px, 6.5vw, 92px);
    color: var(--white);
    background: var(--footer-bg);
    transition: background-color 600ms ease;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.benefits-grid article {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
}

.benefits-grid article > span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--footer-bg);
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 900;
}

.benefits-grid h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 1.8vw, 1.45rem);
}

.benefits-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: max(1rem, 16px);
    line-height: 1.72;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    align-items: center;
    gap: clamp(42px, 7vw, 100px);
}

.reviews-heading {
    margin-bottom: 0;
}

.review-carousel {
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: border-color 600ms ease, box-shadow 600ms ease;
}

.review-stars {
    margin-bottom: 22px;
    color: #c97b00;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
}

.review-carousel blockquote > p {
    min-height: 7em;
    margin-bottom: 26px;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.55;
}

.review-carousel blockquote footer {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: max(1rem, 16px);
}

.review-carousel cite {
    color: var(--ink);
    font-style: normal;
    font-weight: 700;
}

.review-controls,
.review-arrows {
    display: flex;
    align-items: center;
}

.review-controls {
    gap: 12px;
    justify-content: space-between;
    margin-top: 26px;
}

.review-arrows {
    gap: 12px;
}

.review-arrows button {
    width: 54px;
    height: 54px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 600ms ease, color 220ms ease;
}

.review-arrows button:hover {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.review-arrows button:active {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.review-autoplay-toggle {
    min-height: 40px;
    margin-left: auto;
    padding: 8px 14px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.review-autoplay-toggle:hover,
.review-autoplay-toggle[aria-pressed="true"] {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.review-count {
    flex-shrink: 0;
    margin: 0;
    font-weight: 700;
}

.review-submission-card {
    grid-column: 1 / -1;
    width: min(100%, 920px);
    min-width: 0;
    min-inline-size: 0;
    margin-top: clamp(4px, 2vw, 18px);
    padding: clamp(24px, 4vw, 42px);
    justify-self: center;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--white) 94%, var(--accent-soft));
    box-shadow: 0 14px 36px rgba(16, 35, 63, 0.08);
    transition: background-color 600ms ease, border-color 600ms ease, box-shadow 600ms ease;
}

.review-form-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.review-form-heading h3 {
    margin-bottom: 10px;
}

.review-form-heading > p:last-child,
.review-privacy-note {
    color: var(--muted);
}

.review-form-grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.review-form-grid > * {
    min-width: 0;
    min-inline-size: 0;
}

.review-field-full {
    grid-column: 1 / -1;
}

.review-rating-field {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.review-rating-field legend {
    margin-bottom: 8px;
    padding: 0;
    font-size: max(1rem, 16px);
    font-weight: 600;
}

.review-rating-options {
    display: flex;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.review-rating-choice {
    position: relative;
    display: block;
    flex: 0 0 48px;
}

.review-rating-choice label {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    place-items: center;
    border: 1px solid #9aabba;
    border-radius: 50%;
    color: #66778a;
    background: var(--white);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-rating-choice label:hover,
.review-rating-choice label.is-selected,
.review-rating-choice input:checked + label {
    color: #875400;
    border-color: #d89a25;
    background: #fff4d8;
}

.review-rating-choice label:hover {
    transform: translateY(-1px);
}

.review-rating-choice input:focus-visible + label {
    outline: 3px solid var(--focus-color);
    outline-offset: 3px;
}

.review-rating-field[aria-invalid="true"] .review-rating-options {
    padding: 4px;
    border: 1px solid #b42318;
    border-radius: var(--radius-sm);
}

.review-privacy-note {
    margin: 4px 0 0;
    padding: 15px 17px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: color-mix(in srgb, var(--white) 78%, var(--accent-soft));
    font-size: 1rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
    transition: background-color 600ms ease, border-color 600ms ease;
}

.review-privacy-note a,
.form-privacy-note a,
.legal-content a {
    color: var(--accent-dark);
    font-weight: 600;
}

.review-submit {
    width: min(100%, 320px);
    margin-top: 24px;
}

.review-form-status {
    max-width: 720px;
}

.review-form-status[data-state="error"] {
    color: #8f1f17;
    border-color: #d9a39e;
    background: #fff2f0;
}

.review-form-status[data-state="success"] {
    color: #185c39;
    border-color: #94c9aa;
    background: #edf9f2;
}

/* About and certificates */
.about-section {
    isolation: isolate;
    overflow: hidden;
    background: var(--section-bg);
    transition: background-color 600ms ease;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.about-visuals {
    width: 100%;
    max-width: 600px;
    padding: clamp(26px, 4vw, 42px);
    justify-self: end;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--white) 92%, var(--accent-soft));
    box-shadow: 0 16px 38px rgba(16, 35, 63, 0.08);
    text-align: center;
    transition: background-color 600ms ease, border-color 600ms ease, box-shadow 600ms ease;
}

.about-visuals h3 {
    margin-bottom: 24px;
}

.credit-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.certificate-button {
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d7dde3;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: zoom-in;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.certificate-button:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 18%, transparent);
}

.certificate-button:active {
    border-color: var(--accent-dark);
    box-shadow: none;
    transform: translateY(1px);
}

.certificate-button img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    background: var(--white);
}

.credit-rating-banner {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    margin: clamp(26px, 4vw, 38px) auto 0;
    box-sizing: border-box;
}

.credit-rating-banner img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.18));
}

.credit-caption {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.about-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.company-facts {
    margin: 32px 0 0;
    border-top: 1px solid var(--card-border);
}

.company-facts div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding-block: 15px;
    border-bottom: 1px solid var(--card-border);
}

.company-facts dt {
    color: var(--accent-dark);
    font-weight: 700;
}

.company-facts dd {
    margin: 0;
}

.certificate-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.certificate-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 15, 28, 0.84);
    cursor: zoom-out;
}

.certificate-modal-content {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 900px);
    max-height: 90vh;
}

.certificate-modal-content img {
    max-height: 88vh;
    object-fit: contain;
}

.certificate-modal-close {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    width: 48px;
    height: 48px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--accent-dark);
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.certificate-modal-close:hover {
    color: var(--accent-dark);
    background: var(--white);
    border-color: var(--white);
}

.certificate-modal-close:active {
    color: var(--white);
    background: var(--button-active);
    border-color: var(--white);
}

body.modal-open {
    overflow: hidden;
}

/* Contact and form */
.contact-section {
    background: color-mix(in srgb, var(--accent-soft) 70%, white);
    transition: background-color 600ms ease;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(44px, 7vw, 90px);
}

.contact-grid > * {
    min-width: 0;
    min-inline-size: 0;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-actions {
    margin-block: 28px 38px;
}

.contact-details {
    display: grid;
    gap: 4px;
    font-style: normal;
}

.contact-details div {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    padding-block: 13px;
    border-bottom: 1px solid var(--card-border);
    font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
}

.contact-details span {
    color: var(--accent-dark);
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    margin: 0;
    overflow-wrap: anywhere;
}

.form-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-card form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
}

.form-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.form-heading > p:last-child {
    color: var(--muted);
}

.form-grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-grid > * {
    min-width: 0;
    min-inline-size: 0;
}

.field {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: max(1rem, 16px);
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #aebdcb;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: #fbfdff;
    font-size: max(1rem, 16px);
}

.field textarea {
    max-width: 100%;
    min-height: 150px;
    resize: vertical;
}

.localized-date-control {
    position: relative;
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    min-height: 52px;
    box-sizing: border-box;
}

.localized-date-display {
    position: relative;
    z-index: 1;
    display: none;
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    min-height: 52px;
    align-items: center;
    padding: 12px 44px 12px 14px;
    border: 1px solid #aebdcb;
    border-radius: var(--radius-sm);
    color: #64758a;
    background: #fbfdff;
    font-size: max(1rem, 16px);
    line-height: 1.35;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
}

.localized-date-control.is-localized .localized-date-display {
    display: flex;
}

.localized-date-display::after {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
    content: "";
    opacity: 0.72;
}

.localized-date-control.has-value .localized-date-display {
    color: var(--ink);
}

.localized-date-control input[type="date"] {
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    box-sizing: border-box;
}

.localized-date-control.is-localized input[type="date"] {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    min-inline-size: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
    opacity: 0;
    cursor: pointer;
}

.localized-date-control:focus-within {
    border-radius: var(--radius-sm);
    outline: 3px solid var(--focus-color);
    outline-offset: 3px;
}

.localized-date-control.is-localized input[type="date"][aria-invalid="true"] + .localized-date-display {
    border-color: #b42318;
}

.localized-date-control.is-localized input[type="date"]:disabled + .localized-date-display {
    opacity: 0.65;
}

.field [aria-invalid="true"] {
    border-color: #b42318;
}

.field-error {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    min-height: 1.5em;
    color: #a31b12;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.rental-request-details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    margin: 4px 0 8px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--accent-soft) 58%, var(--white));
    transition: background-color 600ms ease, border-color 600ms ease;
}

.rental-details-title {
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    margin: 0 0 18px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.rental-process-note,
.rental-privacy-note {
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.rental-process-note {
    margin: 0 0 24px;
}

.rental-privacy-note {
    margin: 24px 0 18px;
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: color-mix(in srgb, var(--white) 78%, var(--accent-soft));
    transition: background-color 600ms ease, border-color 600ms ease;
}

.rental-fields-grid,
.rental-company-fields {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rental-fields-grid > *,
.rental-company-fields > * {
    min-width: 0;
    min-inline-size: 0;
}

.rental-company-fields {
    padding: 20px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.field-checkbox {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.field-checkbox input {
    width: 22px;
    max-width: 22px;
    min-width: 22px;
    min-inline-size: 22px;
    flex: 0 0 22px;
    min-height: 22px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: var(--accent);
}

.field-checkbox label {
    min-width: 0;
    min-inline-size: 0;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.field-checkbox .field-error {
    grid-column: 2;
}

.form-submit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    min-height: 56px;
    margin-top: 12px;
    white-space: normal;
}

.form-privacy-note {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.form-status {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    margin: 18px 0 0;
    padding: 14px 16px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-weight: 700;
    overflow-wrap: anywhere;
}

/* Privacy pages */
.legal-nav {
    display: flex;
    max-width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.legal-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--white);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.legal-nav a:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.legal-hero {
    position: relative;
    padding-block: clamp(58px, 8vw, 100px);
    border-bottom: 1px solid var(--card-border);
    background: color-mix(in srgb, var(--section-bg) 76%, var(--white));
}

.legal-hero-inner {
    max-width: 920px;
}

.legal-hero h1 {
    margin-bottom: 20px;
}

.legal-hero-inner > p:not(.eyebrow):not(.legal-updated) {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

.legal-updated {
    margin: 24px 0 0;
    color: var(--ink);
    font-size: 0.95rem;
}

.legal-body {
    padding-block: clamp(50px, 7vw, 88px);
}

.legal-content {
    width: min(100%, 960px);
    min-width: 0;
    margin-inline: auto;
    padding: clamp(26px, 5vw, 58px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow-wrap: anywhere;
}

.legal-content section + section {
    margin-top: clamp(34px, 5vw, 52px);
    padding-top: clamp(30px, 4vw, 44px);
    border-top: 1px solid color-mix(in srgb, var(--card-border) 72%, transparent);
}

.legal-content h2 {
    margin-bottom: 18px;
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.legal-content h3 {
    margin: 26px 0 8px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    letter-spacing: -0.015em;
}

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

.legal-content ul {
    margin: 0;
    padding-left: 1.4em;
}

.legal-content li + li {
    margin-top: 9px;
}

.legal-contact-card {
    width: min(100%, 540px);
    padding: 20px 22px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--muted);
    background: var(--accent-soft);
    font-style: normal;
    line-height: 1.75;
}

.legal-contact-card strong {
    color: var(--ink);
}

.legal-back-link {
    margin: clamp(38px, 6vw, 60px) 0 0;
}

/* Footer */
.site-footer {
    padding-top: 64px;
    color: rgba(255, 255, 255, 0.82);
    background: var(--footer-bg);
    transition: background-color 600ms ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
    gap: 42px;
}

.brand-footer img {
    height: 210px;
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 20px;
}

.site-footer h2 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.site-footer nav,
.site-footer address {
    display: grid;
    gap: 9px;
    font-style: normal;
}

.site-footer p {
    margin-bottom: 7px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: max(0.95rem, 15px);
}

.footer-bottom p {
    margin: 0;
}

/* Section reveal */
.js .reveal-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes ambient-drift {
    from { transform: translate3d(-10px, -8px, 0) scale(0.98); }
    to { transform: translate3d(16px, 14px, 0) scale(1.04); }
}

@keyframes shape-float {
    from { margin-top: -8px; }
    to { margin-top: 10px; }
}

@media (max-width: 1180px) {
    :root {
        --header-height: 102px;
    }

    .menu-toggle {
        display: block;
    }

    .header-brand > img {
        height: 98px;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: max-content;
        max-height: calc(100vh - var(--header-height) - 12px);
        max-height: calc(100dvh - var(--header-height) - 12px);
        align-content: start;
        align-items: stretch;
        justify-content: stretch;
        gap: 4px 10px;
        padding: 12px 16px 16px;
        overflow-y: auto;
        border: 1px solid var(--card-border);
        border-radius: 0 0 22px 22px;
        background: var(--page-bg);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav > a:not(.button) {
        min-height: 46px;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 1.125rem;
        line-height: 1.25;
    }

    .language-switch {
        grid-column: 1 / -1;
        width: max-content;
        min-height: 40px;
        margin-block: 4px;
        font-size: 1.125rem;
    }

    .nav-cta {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 2px;
        font-size: 1.125rem;
    }

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

    .service-card {
        grid-column: auto;
    }

    .landscape-card--wide {
        grid-column: 1 / -1;
    }

    .service-panel-action {
        grid-column: 1 / -1;
    }

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

    .rental-card--last {
        grid-column: 1 / -1;
        width: calc(50% - 13px);
        justify-self: center;
    }

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

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

    .about-grid {
        gap: 56px;
    }

    .about-copy {
        max-width: 860px;
    }

    .about-visuals {
        max-width: 720px;
        justify-self: center;
    }

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

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

    .brand-footer img {
        height: 176px;
    }
}

@media (max-width: 800px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section-heading-row,
    .reviews-layout {
        display: block;
    }

    .section-heading-row > p {
        max-width: 650px;
    }

    .reviews-heading {
        margin-bottom: 36px;
    }

    .review-submission-card {
        margin-top: 36px;
    }

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

    .service-tabs button {
        min-height: 70px;
        font-size: 1.125rem;
    }

    .contact-details div {
        grid-template-columns: 230px 1fr;
    }

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

@media (max-width: 620px) {
    :root {
        --header-height: 92px;
    }

    .header-brand > img {
        height: 84px;
    }

    .primary-nav {
        right: 15px;
        left: 15px;
        padding: 10px 12px 14px;
    }

    .brand-footer img {
        height: 148px;
    }

    .hero {
        padding-block: clamp(60px, 15vw, 72px);
    }

    .hero-assurances {
        align-items: flex-start;
    }

    .hero-assurances ul {
        display: grid;
        gap: 8px;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
    }

    .hero-actions .button {
        min-width: 0;
        width: 100%;
    }

    .service-panel,
    .rental-grid,
    .benefits-grid,
    .review-form-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-field-full {
        grid-column: auto;
    }

    .landscape-card--wide,
    .rental-card--last {
        grid-column: auto;
    }

    .landscape-card-media {
        aspect-ratio: 4 / 3;
    }

    .rental-card--last {
        width: 100%;
    }

    .service-card h3 {
        min-block-size: 0;
    }

    .service-card-body {
        padding: 22px 20px;
    }

    .before-after-label {
        top: 10px;
        padding: 6px 10px;
    }

    .before-after-label-before {
        left: 10px;
    }

    .before-after-label-after {
        right: 10px;
    }

    .before-after-divider span {
        width: 44px;
        height: 44px;
    }

    .review-controls {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .review-autoplay-toggle {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
        margin-left: 0;
    }

    .review-count {
        justify-self: end;
    }

    .review-carousel blockquote > p {
        min-height: 0;
    }

    .review-submission-card {
        padding: 24px 18px;
    }

    .review-rating-choice,
    .review-rating-choice label {
        width: 46px;
        flex-basis: 46px;
    }

    .review-submit {
        width: 100%;
    }

    .credit-images {
        grid-template-columns: 1fr;
    }

    .certificate-button {
        width: min(100%, 320px);
        justify-self: center;
    }

    .about-visuals {
        padding: 24px 18px;
    }

    .rental-fields-grid,
    .rental-company-fields {
        grid-template-columns: 1fr;
    }

    .rental-request-details {
        padding: 22px 16px;
    }

    .rental-company-fields {
        padding: 18px 14px;
    }

    .company-facts div,
    .contact-details div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .field-full {
        grid-column: auto;
    }

    .form-card {
        padding: 24px 18px;
    }

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

    .certificate-modal-close {
        top: 6px;
        right: 6px;
    }
}

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

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

    .ambient-shape,
    body::before,
    body::after {
        transform: none !important;
    }

    .js .reveal-section {
        opacity: 1;
        transform: none;
    }
}
