/* =========================
   SKALINI KFZ-WERKSTATT
   DESIGN SYSTEM
   ========================= */

:root {
    --color-dark: #161a1d;
    --color-dark-soft: #24292e;
    --color-white: #ffffff;
    --color-light: #f5f6f7;
    --color-primary: #d62828;
    --color-primary-hover: #b91c1c;
    --color-text: #1d2125;
    --color-text-muted: #667085;
    --color-border: #dfe3e8;
    --container-width: 1200px;
    --radius-small: 6px;
    --radius-medium: 10px;
    --shadow-soft:
        0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =========================
   RESET
   ========================= */

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


html {
    scroll-behavior: smooth;
}


html.form-result {
    scroll-behavior: auto;
}


body {
    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--color-text);
    background: var(--color-white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


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


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


/* =========================
   ACCESSIBILITY
   ========================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: var(--radius-small);
    font-weight: 700;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
}


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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid #ff7070;
    outline-offset: 3px;
}


section[id] {
    scroll-margin-top: 132px;
}


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


/* =========================
   GLOBAL LAYOUT
   ========================= */

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

    margin-inline: auto;
}


/* =========================
   HEADER UTILITY BAR
   ========================= */

.utility-bar {
    background: #0d1012;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    color: #aeb5ba;
}


.utility-bar-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.utility-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.78rem;
}


.utility-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}


.utility-icon {
    width: 14px;
    height: 14px;
}


.utility-contact a,
.utility-address {
    color: #aeb5ba;

    font-size: 0.78rem;

    transition: color 0.2s ease;
}


.utility-contact a:hover,
.utility-address:hover {
    color: var(--color-white);
}


.utility-contact a {
    font-weight: 700;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 2000;

    background: rgba(22, 26, 29, 0.97);
    color: var(--color-white);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.navbar {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );
    min-height: 86px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   BRAND LOGO
   ========================= */

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}


.site-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 100%;
    object-fit: contain;
}


/* =========================
   ICONS
   ========================= */

.icon {
    width: 1em;
    height: 1em;

    flex-shrink: 0;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   DESKTOP NAVIGATION
   ========================= */

.nav-content {
    display: flex;
    align-items: center;
    gap: 36px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}


.nav-links a {
    position: relative;
    color: #d5d9dd;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}


.nav-links a:hover {
    color: var(--color-white);
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.2s ease;
}


.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   NAVIGATION CTA
   ========================= */

.nav-cta {
    min-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-small);
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.nav-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}


/* =========================
   SECTION HEADINGS
   ========================= */

.section-heading {
    margin-bottom: 54px;
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
    gap: 60px;
}


.section-eyebrow {
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.section-heading h2 {
    max-width: 680px;
}


.section-intro {
    max-width: 520px;
    justify-self: end;
    font-size: 1.05rem;
}


/* =========================
   SERVICES
   ========================= */

.services-section {
    padding: 110px 0;
    background: var(--color-light);
}


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


.service-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.service-card:hover {
    transform: translateY(-5px);

    border-color: #c8cdd2;

    box-shadow: var(--shadow-soft);
}


.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.25s ease;
}


.service-card:hover::before {
    height: 100%;
}


.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(214, 40, 40, 0.08);
    color: var(--color-primary);
}


.service-icon .icon {
    width: 25px;
    height: 25px;
}


.service-content h3 {
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
}


.service-content p {
    max-width: 520px;
    margin-bottom: 30px;
}


.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 800;
}


.service-link span {
    color: var(--color-primary);
    transition: transform 0.2s ease;
}


.service-link:hover span {
    transform: translateX(5px);
}


/* Fifth card */

.service-card-wide {
    grid-column: 1 / -1;
    min-height: 270px;
}


.service-card-wide .service-icon {
    margin-bottom: 32px;
}


/* =========================
   ABOUT
   ========================= */

.about-section {
    padding: 120px 0;
    background: var(--color-white);
}


.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}


/* =========================
   ABOUT IMAGE
   ========================= */


.about-visual {
    min-height: 600px;
}


.about-image-frame {
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 14px;
    background: #292f34;
    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.12);
}


.about-image {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================
   ABOUT CONTENT
   ========================= */

.about-content h2 {
    max-width: 720px;
    margin-bottom: 26px;
}


.about-lead {
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 600;
}


.about-content > p:not(.section-eyebrow) {
    max-width: 650px;
}


.about-features {
    margin: 42px 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}


.about-feature {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
}


.about-feature-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 40, 40, 0.1);
    color: var(--color-primary);
}


.about-feature-icon .icon {
    width: 18px;
    height: 18px;
}


.about-feature h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
}


.about-feature p {
    font-size: 0.95rem;
}


/* =========================
   DARK BUTTON
   ========================= */

.button-dark {
    background: var(--color-dark);
    color: var(--color-white);
}


.button-dark:hover {
    background: var(--color-dark-soft);
}


/* =========================
   CONTACT
   ========================= */

.contact-section {
    padding: 120px 0;
    background: var(--color-light);
}


.contact-heading {
    margin-bottom: 52px;
}


.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}


/* =========================
   CONTACT CARD
   ========================= */

.contact-card,
.directions-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.05);
}


.contact-card {
    padding: 38px;
}


.contact-block:not(:last-child) {
    margin-bottom: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--color-border);
}


.contact-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.contact-label-icon {
    width: 15px;
    height: 15px;
}


.contact-block h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}


.contact-block address {
    color: var(--color-text-muted);
    font-style: normal;
}


.contact-phone {
    display: inline-block;
    color: var(--color-text);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-weight: 800;
    transition: color 0.2s ease;
}


.contact-phone:hover {
    color: var(--color-primary);
}


/* =========================
   OPENING HOURS
   ========================= */

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.opening-hours div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.opening-hours span {
    color: var(--color-text-muted);
}


.opening-hours strong {
    color: var(--color-text);
    font-size: 0.92rem;
}


/* =========================
   DIRECTIONS
   ========================= */

.directions-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}


.directions-map-placeholder {
    min-height: 440px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            rgba(14, 17, 19, 0.25),
            rgba(14, 17, 19, 0.72)
        ),
        radial-gradient(
            circle at center,
            #596168,
            #252b30 72%
        );
    color: var(--color-white);
    text-align: center;
}


.map-placeholder-label {
    margin-bottom: 14px;
    color: #ff6969;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.map-placeholder-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
}


.directions-map-placeholder strong {
    margin-bottom: 4px;
    font-size: 1.15rem;
}


.directions-map-placeholder > span:last-child {
    color: #d1d6da;
}


.directions-content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.directions-content h3 {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}


.directions-content > p:not(.section-eyebrow) {
    margin-bottom: 30px;
}


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


/* =========================
   OUTLINE BUTTON
   ========================= */

.button-outline-dark {
    border-color: var(--color-dark);
    background: transparent;
    color: var(--color-dark);
}


.button-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}


/* =========================
   APPOINTMENT
   ========================= */

.appointment-section {
    padding: 120px 0;
    background: var(--color-dark);
    color: var(--color-white);
}


.appointment-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: clamp(60px, 8vw, 110px);
}


.appointment-intro {
    position: sticky;
    top: 110px;
}


.appointment-intro h2 {
    margin-bottom: 24px;
    color: var(--color-white);
}


.appointment-lead {
    max-width: 560px;
    color: #bfc5ca;
    font-size: 1.08rem;
}


.appointment-info {
    margin: 46px 0 40px;
    display: flex;
    flex-direction: column;
}


.appointment-info-item {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}


.appointment-info-item:first-child {
    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}


.appointment-info-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 40, 40, 0.18);
    color: #ff7373;
}


.appointment-info-number .icon {
    width: 17px;
    height: 17px;
}


.appointment-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-white);
}


.appointment-info-item p {
    color: #9fa6ac;
    font-size: 0.92rem;
}


.appointment-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.appointment-phone span {
    color: #8f979e;
    font-size: 0.85rem;
}


.appointment-phone a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 800;
}


.appointment-phone-icon {
    width: 20px;
    height: 20px;
    color: #ff7373;
}


/* =========================
   FORM CARD
   ========================= */

.appointment-form-card {
    padding: clamp(28px, 5vw, 48px);
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 14px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.28);
}


.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.form-group label {
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 700;
}


.form-optional {
    margin-left: 4px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ccd2d7;
    border-radius: var(--radius-small);
    background: var(--color-white);
    color: var(--color-text);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input,
.form-group select {
    min-height: 50px;
    padding: 0 14px;
}


.form-group textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ba2a8;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 3px rgba(214, 40, 40, 0.12);
}


.honeypot-field {
    position: absolute;
    left: -9999px;
}


.form-alert {
    scroll-margin-top: 132px;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: var(--radius-small);
    background: var(--color-light);
    font-weight: 700;
}


.form-alert-error,
.field-error {
    color: var(--color-primary);
}


.field-error {
    margin-top: 7px;
    font-size: 0.82rem;
    font-weight: 700;
}


/* =========================
   FAQ
   ========================= */

.faq-section {
    padding: 120px 0;
    background: var(--color-white);
}


.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: clamp(60px, 8vw, 110px);
}


.faq-intro {
    position: sticky;
    top: 110px;
}


.faq-intro h2 {
    margin-bottom: 20px;
}


.faq-intro > p:not(.section-eyebrow) {
    max-width: 440px;
    font-size: 1.05rem;
}


/* =========================
   FAQ ITEMS
   ========================= */

.faq-list {
    border-top: 1px solid var(--color-border);
}


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


.faq-item summary {
    min-height: 92px;
    padding: 24px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    list-style: none;
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 750;
    cursor: pointer;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::marker {
    display: none;
}


.faq-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
    transition:
        transform 0.25s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}


.faq-icon .icon {
    width: 18px;
    height: 18px;
}


.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}


.faq-answer {
    padding: 0 54px 28px 4px;
}


.faq-answer p {
    max-width: 720px;
    line-height: 1.75;
}


/* =========================
   MOBILE MENU BUTTON
   ========================= */

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
}


.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -0.03em;
}


h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}


h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}


h3 {
    font-size: 1.4rem;
}


p {
    color: var(--color-text-muted);
}


/* =========================
   BUTTONS
   ========================= */

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


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


.button-primary {
    background: var(--color-primary);
    color: var(--color-white);
}


.button-primary:hover {
    background: var(--color-primary-hover);
}


.button-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--color-white);
}


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


/* =========================
   HERO
   ========================= */

.hero {
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #111416 0%,
            var(--color-dark) 60%,
            #20262b 100%
        );
    color: var(--color-white);
}


.hero-inner {
    width: min(
        calc(100% - 40px),
        1400px
    );
    min-height: 680px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: stretch;
}


.hero-content {
    padding: 110px 70px 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-eyebrow {
    margin-bottom: 20px;
    color: #ff6262;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.hero h1 {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--color-white);
    font-size: clamp(3.2rem, 6vw, 5.7rem);
    line-height: 0.95;
}


.hero-description {
    max-width: 620px;
    margin-bottom: 36px;
    color: #c6ccd1;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}


.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}


.hero-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.hero-detail strong {
    color: var(--color-white);
    font-size: 0.95rem;
}


.hero-detail span {
    color: #9da5ac;
    font-size: 0.9rem;
}


/* =========================
   HERO IMAGE
   ========================= */


.hero-visual {
    position: relative;
    min-height: 680px;
}


.hero-image-frame {
    position: absolute;
    inset:
        40px
        0
        40px
        20px;
    overflow: hidden;
    border-radius: 14px;
    background: #252b30;
    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.28);
}


.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 45%;
}


/* =========================
   TRUST BAR
   ========================= */

.trust-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}


.trust-bar-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}


.trust-item {
    min-height: 46px;
    padding-inline: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
}


.trust-item:not(:last-child) {
    border-right: 1px solid var(--color-border);
}


.trust-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(214, 40, 40, 0.1);
    color: var(--color-primary);
}


.trust-icon .icon {
    width: 13px;
    height: 13px;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    background: #101315;
    color: var(--color-white);
}


.footer-main {
    padding-top: 76px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;
    gap: 60px;
}


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}


.footer-contact-icon {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    color: #ff7373;
}


/* =========================
   FOOTER BRAND
   ========================= */

.footer-brand {
    max-width: 340px;
}


.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}


.footer-logo-image {
    display: block;
    width: auto;
    height: 78px;
    max-width: 100%;
    object-fit: contain;
}


.footer-brand p {
    margin-bottom: 24px;

    color: #929ba2;

    font-size: 0.92rem;

    line-height: 1.7;
}


.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 800;
    transition: color 0.2s ease;
}


.footer-phone:hover {
    color: #ff6565;
}


/* =========================
   FOOTER COLUMNS
   ========================= */

.footer-column h2 {
    margin-bottom: 22px;

    color: var(--color-white);

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.footer-column ul {
    display: flex;
    flex-direction: column;

    gap: 12px;

    list-style: none;
}


.footer-column a {
    color: #9da5ab;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}


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


.footer-column address {
    margin-bottom: 24px;

    color: #9da5ab;

    font-size: 0.9rem;
    font-style: normal;

    line-height: 1.7;
}


/* =========================
   FOOTER HOURS
   ========================= */

.footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 8px 18px;

    font-size: 0.85rem;
}


.footer-hours span {
    color: #777f85;
}


.footer-hours strong {
    color: #c7ccd0;

    font-weight: 600;
}


/* =========================
   FOOTER BOTTOM
   ========================= */

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


.footer-bottom-inner {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {
    color: #6f777d;

    font-size: 0.8rem;
}


.footer-legal {
    display: flex;
    align-items: center;

    gap: 24px;
}


.footer-legal a,
.footer-cookie-settings {
    color: #8f979d;

    font-size: 0.8rem;

    transition: color 0.2s ease;
}


.footer-legal a:hover,
.footer-cookie-settings:hover {
    color: var(--color-white);
}


.footer-cookie-settings {
    padding: 0;

    background: none;
    border: 0;

    cursor: pointer;
}


/* =========================
   MOBILE ACTION BAR
   ========================= */

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


/* =========================
   DIRECTIONS DIALOG
   ========================= */

.directions-dialog[hidden] {
    display: none;
}


.directions-dialog {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.directions-dialog-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.58);

    backdrop-filter: blur(3px);
}


.directions-dialog-panel {
    position: relative;

    z-index: 1;

    width: min(100% - 24px, 520px);

    margin-bottom: 12px;

    padding: 28px;

    background: var(--color-white);
    color: var(--color-text);

    border-radius: 16px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);
}


.directions-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}


.directions-dialog-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: var(--color-primary);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.directions-dialog-header h2 {
    font-size: 1.6rem;
}


.directions-dialog-close {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background: var(--color-white);
    color: var(--color-text);

    font-size: 1.7rem;

    cursor: pointer;
}


.directions-dialog-address {
    margin-bottom: 24px;
}


.directions-dialog-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.directions-dialog-link {
    min-height: 54px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);

    color: var(--color-text);

    font-weight: 750;
}


.directions-dialog-link-primary {
    border-color: var(--color-dark);

    background: var(--color-dark);
    color: var(--color-white);
}


/* =========================
   COOKIE CONSENT
   ========================= */

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


.cookie-banner {
    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 4000;

    width: min(
        calc(100% - 40px),
        1100px
    );

    margin-inline: auto;

    padding: 28px;

    background: var(--color-white);
    color: var(--color-text);

    border: 1px solid var(--color-border);
    border-radius: 14px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.25);
}


.cookie-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 42px;
}


.cookie-label {
    display: block;

    margin-bottom: 7px;

    color: var(--color-primary);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.cookie-banner h2 {
    margin-bottom: 10px;

    font-size: 1.35rem;
}


.cookie-banner-text p {
    max-width: 650px;

    font-size: 0.88rem;
}


.cookie-banner-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.button-cookie-secondary {
    border-color: var(--color-dark);

    background: var(--color-white);
    color: var(--color-dark);
}


.button-cookie-secondary:hover {
    background: var(--color-light);
}


.cookie-settings-link,
.cookie-settings-link-dark {
    padding: 10px 4px;

    border: 0;

    background: transparent;

    font-size: 0.84rem;
    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 4px;

    cursor: pointer;
}


.cookie-settings-link {
    color: var(--color-text-muted);
}


.cookie-settings-link-dark {
    color: var(--color-text);
}


.cookie-banner-legal {
    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid var(--color-border);

    color: var(--color-text-muted);

    font-size: 0.76rem;
}


/* =========================
   COOKIE SETTINGS DIALOG
   ========================= */

.cookie-settings-dialog {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}


.cookie-settings-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.62);

    backdrop-filter: blur(4px);
}


.cookie-settings-panel {
    position: relative;

    z-index: 1;

    width: min(100%, 680px);
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 34px;

    background: var(--color-white);
    color: var(--color-text);

    border-radius: 16px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35);
}


.cookie-settings-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 18px;
}


.cookie-settings-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}


.cookie-settings-close {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background: var(--color-white);
    color: var(--color-text);

    font-size: 1.7rem;

    cursor: pointer;
}


.cookie-settings-intro {
    margin-bottom: 28px;
}


.cookie-category {
    padding: 22px 0;

    border-top: 1px solid var(--color-border);
}


.cookie-category-content {
    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 28px;
}


.cookie-category h3 {
    margin-bottom: 6px;

    font-size: 1rem;
}


.cookie-category p {
    max-width: 520px;

    font-size: 0.84rem;
}


/* =========================
   CONSENT SWITCH
   ========================= */

.consent-switch {
    position: relative;

    width: 48px;
    height: 26px;

    display: inline-block;

    flex-shrink: 0;
}


.consent-switch input {
    width: 0;
    height: 0;

    opacity: 0;
}


.consent-slider {
    position: absolute;

    inset: 0;

    background: #c9cfd4;

    border-radius: 999px;

    cursor: pointer;

    transition: background-color 0.2s ease;
}


.consent-slider::before {
    content: "";

    position: absolute;

    width: 20px;
    height: 20px;

    left: 3px;
    bottom: 3px;

    background: var(--color-white);

    border-radius: 50%;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.2);

    transition: transform 0.2s ease;
}


.consent-switch input:checked + .consent-slider {
    background: var(--color-primary);
}


.consent-switch input:checked + .consent-slider::before {
    transform: translateX(22px);
}


.consent-switch input:disabled + .consent-slider {
    cursor: not-allowed;

    opacity: 0.75;
}


/* =========================
   LEGAL PAGES
   ========================= */

.legal-page {
    padding: 100px 0 120px;

    background: var(--color-light);
}


.legal-container {
    max-width: 900px;
}


.legal-header {
    margin-bottom: 56px;
}


.legal-header h1 {
    margin-bottom: 20px;

    font-size: clamp(2.8rem, 7vw, 5rem);
}


.legal-header > p:not(.section-eyebrow) {
    max-width: 700px;

    font-size: 1.05rem;
}


.legal-content {
    padding: clamp(28px, 6vw, 60px);

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 14px;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.06);
}


.legal-section:not(:last-child) {
    margin-bottom: 42px;
    padding-bottom: 42px;

    border-bottom: 1px solid var(--color-border);
}


.legal-section h2 {
    margin-bottom: 18px;

    font-size: clamp(1.25rem, 3vw, 1.65rem);
}


.legal-section p {
    margin-bottom: 14px;

    line-height: 1.8;
}


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


.legal-section a {
    color: var(--color-primary);

    font-weight: 650;
}


.legal-section a:hover {
    text-decoration: underline;
}


.legal-placeholder {
    display: inline;

    color: #b42318;

    font-weight: 750;
}


/* =========================
   FORM PRIVACY NOTICE
   ========================= */

.form-privacy-note {
    padding: 16px 18px;

    background: var(--color-light);

    border-radius: var(--radius-small);
}


.form-privacy-note p {
    color: var(--color-text-muted);

    font-size: 0.82rem;
    line-height: 1.55;
}


.form-privacy-note a {
    color: var(--color-text);

    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================
   COOKIE LEGAL LINK
   ========================= */

.cookie-banner-legal a {
    color: var(--color-text);

    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================
   COOKIE SETTINGS ACTIONS
   ========================= */

.cookie-settings-actions {
    padding-top: 26px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    border-top: 1px solid var(--color-border);
}


.button-cookie-dark {
    background: var(--color-dark);
    color: var(--color-white);
}


.button-cookie-dark:hover {
    background: var(--color-dark-soft);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

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


    section[id] {
        scroll-margin-top: 90px;
    }


    .navbar {
        width: min(
            calc(100% - 32px),
            var(--container-width)
        );
        min-height: 74px;
    }


    .site-logo {
        height: 44px;
    }


    .footer-logo-image {
        height: 62px;
    }


    .menu-toggle {
        display: flex;
    }


    .utility-bar {
        display: none;
    }


    .nav-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 28px 24px 32px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        background: var(--color-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
        z-index: 1000;
    }


    .nav-content.is-open {
        display: flex;
    }


    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }


    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }


    .nav-links a {
        min-height: 52px;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }


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


    .nav-cta {
        width: 100%;
        min-height: 50px;
    }

    .hero-inner {
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }


    .hero-content {
        padding: 72px 24px 54px;
    }


    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }


    .hero-description {
        margin-bottom: 30px;
    }


    .hero-actions {
        flex-direction: column;
        margin-bottom: 38px;
    }


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


    .hero-details {
        flex-direction: column;
        gap: 18px;
    }


    .hero-visual {
        min-height: 360px;
    }


    .hero-image-frame {
        inset:
            0
            24px
            40px;
    }


    .trust-bar-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-block: 12px;
    }


    .trust-item {
        min-height: 58px;
        justify-content: flex-start;
        padding-inline: 0;
    }


    .trust-item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .services-section {
        padding: 76px 0;
    }


    .section-heading {
        margin-bottom: 38px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }


    .section-intro {
        justify-self: auto;
        font-size: 1rem;
    }


    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .service-card,
    .service-card-wide {
        grid-column: auto;
        min-height: auto;
        padding: 28px 24px;
    }


    .about-section {
        padding: 76px 0;
    }


    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }


    .about-visual {
        width: 100%;
        min-height: auto;
    }


    .about-image-frame {
        min-height: 380px;
    }


    .about-image {
        height: 380px;
    }


    .about-content {
        width: 100%;
    }


    .about-lead {
        font-size: 1.05rem;
    }


    .about-features {
        margin: 34px 0;
    }


    .about-feature {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }


    .about-content .button {
        width: 100%;
    }


    .contact-section {
        padding: 76px 0;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .contact-card {
        padding: 28px 24px;
    }


    .opening-hours div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }


    .directions-card {
        display: flex;
        flex-direction: column;
    }


    .directions-map-placeholder {
        min-height: 280px;
        padding: 28px 24px;
    }


    .directions-content {
        padding: 30px 24px;
    }


    .directions-actions {
        flex-direction: column;
    }


    .directions-actions .button {
        width: 100%;
    }


    .appointment-section {
        padding: 76px 0;
    }


    .appointment-grid {
        display: flex;
        flex-direction: column;
        gap: 46px;
    }


    .appointment-intro {
        position: static;
    }


    .appointment-info {
        margin: 34px 0;
    }


    .appointment-form-card {
        width: 100%;
        padding: 28px 20px;
    }


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


    .form-group input,
    .form-group select {
        min-height: 52px;
    }


    .appointment-submit {
        min-height: 54px;
    }


    .faq-section {
        padding: 76px 0;
    }


    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 42px;
    }


    .faq-intro {
        position: static;
    }


    .faq-item summary {
        min-height: 78px;
        padding: 20px 0;
        font-size: 1rem;
    }


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


    .footer-main {
        padding-top: 60px;
        padding-bottom: 50px;
        grid-template-columns: 1fr;
        gap: 44px;
    }


    .footer-brand {
        max-width: 100%;
    }


    .footer-column {
        padding-top: 4px;
    }


    .footer-bottom-inner {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }


    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 20px;
    }


    body {
        padding-bottom: 72px;
    }


    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
        min-height: 72px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: rgba(16, 19, 21, 0.97);
        border-top:
            1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 -8px 30px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(12px);
    }


    .mobile-action {
        min-width: 0;
        padding: 8px 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border: 0;
        background: transparent;
        color: #d3d8dc;
        font-size: 0.72rem;
        font-weight: 700;
        cursor: pointer;
    }


    .mobile-action:not(:last-child) {
        border-right:
            1px solid rgba(255, 255, 255, 0.08);
    }


    .mobile-action-primary {
        background: var(--color-primary);
        color: var(--color-white);
    }


    .mobile-action-icon {
        width: 22px;
        height: 22px;
    }


    .directions-dialog-panel {
        width: calc(100% - 20px);
        margin-bottom: 82px;
        padding: 24px 20px;
    }


    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 82px;
        width: auto;
        padding: 22px 18px;
    }


    .cookie-banner-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
    }


    .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .cookie-banner-actions .button {
        width: 100%;
    }


    .cookie-settings-link {
        text-align: center;
    }


    .cookie-settings-dialog {
        padding: 10px;
        align-items: flex-end;
    }


    .cookie-settings-panel {
        width: 100%;
        max-height: calc(100vh - 90px);
        padding: 26px 20px;
        border-radius: 16px;
    }


    .cookie-category-content {
        gap: 18px;
    }


    .cookie-settings-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .cookie-settings-actions .button {
        width: 100%;
    }


    .cookie-settings-link-dark {
        width: 100%;
        text-align: center;
    }


    .legal-page {
        padding: 70px 0 90px;
    }


    .legal-header {
        margin-bottom: 38px;
    }


    .legal-content {
        padding: 26px 20px;
    }


    .legal-section:not(:last-child) {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }


    /* Hamburger → X */

    .menu-toggle.is-open span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }


    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.is-open span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }
}