:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-muted: #f7f9fc;
    --surface-soft: #fff6f6;
    --text: #141821;
    --muted: #556274;
    --line: #d6dde7;
    --line-strong: #c7d0dc;
    --brand: #b3131b;
    --brand-deep: #8e0f16;
    --brand-soft: #ffe3e5;
    --ink: #1d2733;
    --ink-soft: #233245;
    --success: #0f8b57;
    --error: #b42318;
    --shadow: 0 16px 42px rgba(18, 26, 38, 0.08);
    --shadow-strong: 0 24px 64px rgba(18, 26, 38, 0.14);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1160px;
    --section-inline-padding: clamp(1rem, 3.5vw, 1.6rem);
    --section-gap: clamp(1.2rem, 2.6vw, 1.95rem);
    --card-padding: clamp(1.05rem, 2vw, 1.4rem);
    --reading-width: 41rem;
    --header-height: 76px;
    --button-height: 46px;
    --button-height-compact: 39px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(179, 19, 27, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(35, 50, 69, 0.08), transparent 36%),
        linear-gradient(180deg, #fbfcfd 0%, #eef2f6 100%);
}

body.has-nav-open {
    overflow: hidden;
}

body.has-cookie-preferences-open {
    overflow: hidden;
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--brand-deep), var(--brand));
    box-shadow: 0 10px 28px rgba(125, 17, 24, 0.24);
}

.shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: var(--header-height);
    position: relative;
}

.brand,
.brand-copy {
    display: inline-flex;
    align-items: center;
}

.brand {
    gap: 0;
    flex: 0 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.brand-copy {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.brand strong,
.site-nav a,
.button,
.hero h1,
.hero h2,
.page-hero h1,
.section h2,
.card h3,
.gallery-tile h3,
.site-footer h2,
.site-footer h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
}

.brand strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
}

.brand small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.2;
}

.brand-logo,
.footer-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.brand-logo {
    width: clamp(148px, 18vw, 196px);
    max-height: 48px;
    object-fit: contain;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-logo {
    width: min(100%, 250px);
    max-height: 76px;
    object-fit: contain;
    margin-bottom: 0.95rem;
}

.nav-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle__icon {
    display: inline-grid;
    gap: 5px;
    justify-items: center;
    width: 20px;
    margin: 0 auto;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.site-header__backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    background: rgba(13, 18, 28, 0.22);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.site-header__backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-header__panel {
    position: fixed;
    top: calc(var(--header-height) + 0.6rem);
    left: 50%;
    width: min(calc(100% - 2rem), 26rem);
    max-height: calc(100svh - 7rem);
    overflow: auto;
    background:
        linear-gradient(180deg, rgba(156, 19, 27, 0.94), rgba(127, 13, 20, 0.96)),
        rgba(127, 13, 20, 0.9);
    border-radius: 26px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-strong);
    display: grid;
    gap: 1.1rem;
    justify-items: center;
    text-align: center;
    transform-origin: top;
    transform: translate(-50%, -12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-header__panel.is-open {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.site-nav ul,
.footer-links,
.info-list,
.bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav {
    width: 100%;
}

.site-nav ul {
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    width: 100%;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    min-width: min(100%, 16rem);
    padding: 0.74rem 1rem;
    border-radius: 15px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.97rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.language-switcher {
    display: inline-flex;
    gap: 0.32rem;
}

.language-switcher__link {
    min-width: 36px;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 700;
}

.language-switcher__link.is-active,
.language-switcher__link:hover {
    background: #ffffff;
    color: var(--brand);
}

.site-header__utility {
    display: grid;
    gap: 0.85rem;
    justify-items: center;
    width: 100%;
}

.site-header__actions {
    width: 100%;
}

.site-header__actions .cta-actions {
    display: grid;
    gap: 0.42rem;
    width: min(100%, 22rem);
}

.site-main {
    padding: 0 0 4rem;
}

body[data-page="home"] .site-main {
    padding-top: 0;
}

.hero,
.page-hero,
.card,
.section-card,
.trust-band,
.cta-strip,
.site-footer,
.gallery-tile,
.flash,
.contact-mini-card {
    box-shadow: var(--shadow);
}

.hero,
.page-hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.hero {
    display: grid;
    gap: 1rem;
}

.page-hero {
    position: relative;
    display: block;
    min-height: min(760px, calc(100svh - 5rem));
    padding: 0;
    border: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 108, 115, 0.18), transparent 24%),
        linear-gradient(135deg, #171d29 0%, #1e2936 38%, #7f0d14 100%);
}

.hero-home {
    position: relative;
    display: block;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: #111925;
    overflow: hidden;
    isolation: isolate;
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-home::before {
    inset: 0;
    background:
        linear-gradient(92deg, rgba(8, 13, 20, 0.9) 0%, rgba(8, 13, 20, 0.74) 38%, rgba(8, 13, 20, 0.42) 60%, rgba(8, 13, 20, 0.72) 100%),
        linear-gradient(180deg, rgba(8, 13, 20, 0.16), rgba(8, 13, 20, 0.56)),
        url("../images/bghero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 58% center;
    transform: scale(1.02);
}

.hero-home::after {
    right: -12%;
    bottom: -18%;
    width: clamp(16rem, 34vw, 26rem);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(179, 19, 27, 0.34), transparent 68%);
    filter: blur(14px);
}

.hero-home__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), var(--container));
    min-height: min(760px, calc(100svh - 5rem));
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.2rem) 0 clamp(1.25rem, 2.8vw, 2rem);
    display: grid;
    gap: 1.15rem;
    align-items: center;
}

.hero-home .hero__copy {
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
    color: #ffffff;
}

.hero-home .eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
}

.hero-home__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.hero-home__meta-item,
.hero-home__contact-item {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 15, 23, 0.54);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(5, 9, 15, 0.28);
    backdrop-filter: blur(12px);
}

.hero-home__meta-item--location {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
}

.hero-home__meta-item--phone {
    justify-content: center;
    min-height: 3rem;
    padding: 0.72rem 1.3rem;
    background: rgba(9, 14, 22, 0.76);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    box-shadow:
        0 20px 38px rgba(5, 9, 15, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__lead,
.page-hero p,
.section-head p,
.section-copy p,
.section-card p,
.card p,
.gallery-tile p,
.site-footer p,
.flash,
.contact-mini-card span,
.map-placeholder {
    color: var(--muted);
    line-height: 1.72;
}

.hero h1,
.page-hero h1 {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(2.2rem, 5.2vw, 4.05rem);
    line-height: 0.97;
    max-width: 11.2ch;
}

.hero-home__title {
    margin: 0.15rem 0 0.4rem;
    font-size: clamp(2.5rem, 5.9vw, 4.35rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    max-width: 11ch;
    text-wrap: balance;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-home__title-line {
    display: inline;
}

.hero-home__title-line + .hero-home__title-line::before {
    content: " ";
}

.hero-home .hero__lead {
    max-width: 39rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.75vw, 1.12rem);
    color: rgba(255, 255, 255, 0.84);
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-hero::before {
    inset: 0;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.page-hero::after {
    right: -12%;
    bottom: -14%;
    width: clamp(18rem, 34vw, 30rem);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 108, 115, 0.24), transparent 68%);
    filter: blur(10px);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), var(--container));
    min-height: min(760px, calc(100svh - 5rem));
    margin: 0 auto;
    padding: clamp(2.1rem, 4vw, 3.3rem) 0 clamp(1.25rem, 2.8vw, 2rem);
    display: grid;
    gap: 1.15rem;
    align-items: center;
}

.page-hero__copy {
    display: grid;
    gap: 0.82rem;
    justify-items: center;
    text-align: center;
    max-width: 43rem;
    margin: 0 auto;
}

.page-hero .eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.page-hero__meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
}

.page-hero__lead,
.page-hero__panel p,
.page-hero__highlight p {
    color: rgba(255, 255, 255, 0.84);
}

.page-hero h1 {
    margin: 0.15rem 0 0.5rem;
    max-width: 11.35ch;
    font-size: clamp(2.2rem, 5.05vw, 4.05rem);
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-wrap: balance;
}

.page-hero__lead {
    max-width: 39rem;
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.page-hero .button-primary {
    background: #ffffff;
    color: var(--brand);
}

.page-hero .button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.page-hero__panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 1.2rem;
    backdrop-filter: blur(16px);
    color: #ffffff;
}

.page-hero__panel h2 {
    margin: 0.35rem 0 0.7rem;
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    line-height: 1.05;
    color: #ffffff;
}

.page-hero__panel-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.page-hero__panel-list li {
    display: flex;
}

.page-hero__panel-list a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.8rem;
    padding: 0.72rem 0.88rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.page-hero__panel-list a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.page-hero__panel-link {
    display: inline-flex;
    margin-top: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.page-hero__panel-link:hover {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero__highlights {
    display: grid;
    gap: 1rem;
}

.page-hero__highlight {
    padding: 1rem 0.98rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.page-hero__highlight h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.page-hero__highlight p {
    margin: 0;
}

.hero__panel,
.section-card {
    background: linear-gradient(180deg, var(--surface-muted), #ffffff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--card-padding);
}

.hero__panel h2,
.section-card h2,
.section-card h3 {
    margin: 0.4rem 0 0.8rem;
    font-size: 1.4rem;
}

.hero-home__contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.hero-home__meta-item[href]:hover,
.hero-home__contact-item[href]:hover,
.hero-home__panel-link:hover,
.hero-home__panel-list a:hover {
    color: var(--brand);
}

.hero-home__aside {
    display: grid;
    gap: 1rem;
}

.hero-home__panel {
    margin: 0;
    max-width: none;
    padding: 1.25rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(12px);
}

.hero-home__panel .eyebrow {
    justify-content: flex-start;
}

.hero-home__panel h2 {
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    line-height: 1.06;
    max-width: 13ch;
}

.hero-home__panel p {
    max-width: 28rem;
    margin: 0;
}

.hero-home__panel-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-home__panel-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.95rem;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    background: rgba(179, 19, 27, 0.05);
    border: 1px solid rgba(179, 19, 27, 0.12);
    color: var(--ink);
    font-weight: 700;
}

.hero-home__panel-list li::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 0.35rem rgba(179, 19, 27, 0.12);
    flex: none;
}

.hero-home__panel-list a,
.hero-home__panel-list span {
    color: inherit;
}

.hero-home__panel-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.hero-home__highlights {
    display: grid;
    gap: 1rem;
}

.hero-home__highlight {
    position: relative;
    overflow: hidden;
    padding: 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-home__highlight::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #ff6c73);
}

.hero-home__highlight-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--brand-soft);
    color: var(--brand);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-home__highlight h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.hero-home__highlight p {
    margin: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--brand);
}

.eyebrow-inverse {
    color: rgba(255, 255, 255, 0.72);
}

.section {
    width: 100%;
    margin: var(--section-gap) 0 0;
    padding-inline: var(--section-inline-padding);
}

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

.section-head {
    max-width: 46rem;
    margin-bottom: 1.2rem;
}

.section-head h2,
.section-copy h2,
.trust-band h2,
.cta-strip h2 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(1.7rem, 3.5vw, 2.55rem);
    line-height: 1.1;
}

.section-split,
.contact-layout,
.footer-grid {
    display: grid;
    gap: 1.2rem;
}

.section-card,
.card,
.gallery-tile,
.contact-mini-card,
.form-panel {
    background: rgba(255, 255, 255, 0.95);
}

.section-copy {
    max-width: var(--reading-width);
}

.card-grid,
.contact-card-grid,
.gallery-grid {
    display: grid;
    gap: 1.15rem;
}

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

.card,
.gallery-tile {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: var(--card-padding);
    display: grid;
    align-content: start;
    gap: 0.2rem;
    min-width: 0;
}

.card h3,
.gallery-tile h3,
.contact-mini-card strong {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.card--step {
    position: relative;
    overflow: hidden;
}

.card--step::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand), #ff6c73);
}

.bullet-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
}

.bullet-list--compact li {
    color: inherit;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.05rem;
}

.hero-home .cta-actions {
    justify-content: center;
    width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
}

.page-hero .cta-actions {
    justify-content: center;
    width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
}

.cta-actions-inline,
.cta-actions-compact,
.cta-actions-stacked {
    margin-top: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--button-height);
    padding: 0.76rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: linear-gradient(90deg, var(--brand), #d8262f);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(179, 19, 27, 0.18);
}

.button-secondary {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--line-strong);
}

.button-secondary-inverse {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
}

.trust-band,
.cta-strip {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 50%, var(--brand-deep) 100%);
    color: #ffffff;
    border-radius: var(--radius);
    padding: 1.35rem 1.4rem;
    display: grid;
    gap: 0.95rem;
}

.trust-band .eyebrow,
.cta-strip .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.trust-band p,
.cta-strip p,
.trust-band li {
    color: rgba(255, 255, 255, 0.82);
}

.cta-strip .button-primary,
.site-header .button-primary {
    background: #ffffff;
    color: var(--brand);
    box-shadow: none;
}

.site-header__actions .button,
.cta-actions-compact .button {
    min-height: var(--button-height-compact);
    padding: 0.56rem 0.86rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.site-header__actions .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

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

.gallery-tile {
    display: grid;
    gap: 0.85rem;
}

.gallery-tile--visual-only {
    padding: 0.85rem;
    gap: 0;
}

.gallery-tile__art {
    min-height: 150px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(179, 19, 27, 0.18), rgba(35, 50, 69, 0.16)),
        linear-gradient(180deg, #eceff4, #d8dde6);
    position: relative;
    overflow: hidden;
}

.gallery-tile__art::after {
    content: "";
    position: absolute;
    inset: auto -10% 8% 40%;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(-10deg);
}

.gallery-tile__art--large {
    min-height: 180px;
}

.gallery-tile__art--image {
    background: #0f1722;
}

.gallery-tile__art--image::after {
    content: none;
}

.gallery-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
}

.contact-layout {
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 1rem;
}

.contact-card-grid {
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

.contact-mini-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    background: var(--surface-muted);
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.contact-mini-card strong,
.contact-mini-card span,
.contact-mini-card a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.map-placeholder {
    border: 1px dashed rgba(179, 19, 27, 0.32);
    border-radius: 22px;
    padding: 1rem;
    background: linear-gradient(180deg, var(--surface-soft), #ffffff);
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.form-panel {
    padding: var(--card-padding);
}

.contact-form,
.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form {
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form__field-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
}

.field-required-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.2rem;
    padding: 0.08rem 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
}

input,
textarea,
select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.88rem 1rem;
    background: #ffffff;
    color: var(--text);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(179, 19, 27, 0.14);
    border-color: rgba(179, 19, 27, 0.42);
}

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

.flash {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-top: 1rem;
}

.flash-success {
    background: rgba(15, 139, 87, 0.12);
    border: 1px solid rgba(15, 139, 87, 0.18);
    color: #17563c;
}

.flash-error {
    background: rgba(180, 35, 24, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.16);
    color: #7d1d17;
}

.flash ul {
    margin: 0.6rem 0 0;
    padding-left: 1.1rem;
}

.site-footer {
    width: 100%;
    margin: var(--section-gap) 0 0;
    background: linear-gradient(180deg, #151d28, #121923);
    color: rgba(255, 255, 255, 0.86);
    border-radius: 0;
    padding: 1.8rem var(--section-inline-padding);
}

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

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.1rem;
    margin-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta {
    display: grid;
    gap: 0.3rem;
}

.footer-meta p {
    margin: 0;
}

.footer-powered,
.footer-powered a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-powered a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
    text-decoration-thickness: 1px;
}

.footer-powered a:hover {
    color: #ffffff;
}

.footer-mark {
    font-size: 0.56em;
    vertical-align: super;
    letter-spacing: 0.08em;
}

.footer-cookie-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-cookie-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

body.has-cookie-banner {
    padding-bottom: clamp(12rem, 18vw, 14.5rem);
}

.cookie-consent,
.cookie-preferences {
    z-index: 80;
}

.cookie-consent {
    position: fixed;
    inset: auto 0 0;
    padding: 0 0.9rem 0.9rem;
}

.cookie-consent[hidden],
.cookie-preferences[hidden] {
    display: none;
}

.cookie-consent__card {
    width: min(100%, calc(var(--container) + (var(--section-inline-padding) * 2)));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 1.05rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 25, 35, 0.96);
    color: #ffffff;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}

.cookie-consent__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-consent__copy h2,
.cookie-preferences__header h2 {
    margin: 0.24rem 0 0.35rem;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    line-height: 1.08;
}

.cookie-consent__copy p,
.cookie-preferences__header p,
.cookie-pref-item p,
.cookie-preferences__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.cookie-consent__actions,
.cookie-preferences__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cookie-consent__actions .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.cookie-consent__actions .button-secondary:hover,
.cookie-preferences__actions .button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.cookie-preferences {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.cookie-preferences__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(11, 16, 24, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.cookie-preferences__dialog {
    position: relative;
    width: min(100%, 42rem);
    padding: 1.2rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fdfefe, #f4f7fb);
    box-shadow: var(--shadow-strong);
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-preferences__header p,
.cookie-pref-item p,
.cookie-preferences__note {
    color: var(--muted);
}

.cookie-preferences__close {
    flex: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-pref-list {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.cookie-pref-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.cookie-pref-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-pref-item h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.cookie-pref-item__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(35, 50, 69, 0.08);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-weight: 700;
    white-space: nowrap;
}

.cookie-toggle input {
    width: 1.1rem;
    min-height: auto;
    height: 1.1rem;
    padding: 0;
    accent-color: var(--brand);
}

.cookie-preferences__note {
    margin-top: 1rem;
    font-size: 0.94rem;
}

.cookie-preferences__actions {
    margin-top: 1rem;
    justify-content: flex-end;
}

@media (max-width: 639px) {
    body.has-cookie-banner {
        padding-bottom: 17rem;
    }

    .hero-home::before {
        background-position: 62% center;
    }

    .hero-home::after {
        right: -30%;
        bottom: -12%;
        width: clamp(13rem, 54vw, 18rem);
    }

    .shell {
        min-height: 70px;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .brand {
        max-width: 100%;
        padding-right: 4.25rem;
    }

    .brand-logo {
        width: clamp(110px, 31vw, 138px);
        max-height: 42px;
        object-position: left center;
    }

    .nav-toggle {
        flex: 0 0 48px;
        margin-left: 0;
        position: absolute;
        top: 50%;
        right: 0.1rem;
        transform: translateY(-50%);
        z-index: 3;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.42);
        box-shadow: 0 10px 24px rgba(32, 7, 11, 0.18);
    }

    .site-header__panel {
        top: 4.7rem;
        width: min(calc(100% - 1.5rem), 24rem);
    }

    .hero-home__inner {
        min-height: min(700px, calc(100svh - 4.4rem));
        padding-top: 1.75rem;
    }

    .page-hero__inner {
        min-height: min(680px, calc(100svh - 4.4rem));
        padding-top: 1.75rem;
    }

    .hero-home__meta,
    .page-hero__meta {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 18.75rem);
        justify-content: stretch;
    }

    .hero-home__meta-item,
    .page-hero__meta-item {
        justify-content: center;
        width: 100%;
    }

    .hero-home__meta-item--location {
        min-height: 2.3rem;
        padding: 0.52rem 0.9rem;
        font-size: 0.72rem;
    }

    .hero-home__meta-item--phone {
        min-height: 3.45rem;
        padding: 0.88rem 1.15rem;
        font-size: 1.14rem;
        letter-spacing: 0.03em;
    }

    .hero-home__title {
        width: min(100%, 19.25rem);
        max-width: none;
        font-size: clamp(2.15rem, 10vw, 2.92rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
    }

    .hero-home__title-line {
        display: block;
    }

    .hero-home__title-line + .hero-home__title-line::before {
        content: none;
    }

    .page-hero h1 {
        width: min(100%, 18rem);
        max-width: none;
        font-size: clamp(1.9rem, 7.7vw, 2.45rem);
        line-height: 1;
    }

    .hero-home .hero__copy,
    .page-hero__copy {
        max-width: min(100%, 19.5rem);
    }

    .hero-home .hero__lead,
    .page-hero__lead {
        width: min(100%, 18.9rem);
        max-width: none;
        font-size: 0.97rem;
    }

    .hero-home .cta-actions,
    .page-hero .cta-actions {
        display: grid;
        width: min(100%, 23rem);
    }

    .hero-home .cta-actions .button,
    .page-hero .cta-actions .button {
        width: 100%;
    }

    .hero-home .hero__copy {
        max-width: min(100%, 21.25rem);
    }

    .hero-home .hero__lead {
        width: min(100%, 20.4rem);
        font-size: 0.99rem;
        line-height: 1.78;
        text-align-last: center;
    }

    .hero-home .cta-actions {
        width: min(100%, 20.85rem);
        gap: 0.8rem;
    }

    .hero-home .cta-actions .button {
        min-height: 3.35rem;
        padding: 0.92rem 1.3rem;
        font-size: 0.98rem;
    }

    .hero-home__contact-bar {
        display: grid;
        width: min(100%, 20.85rem);
    }

    .hero-home__contact-item {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .hero-home__contact-item--phone {
        display: none;
    }

    .cookie-consent__actions,
    .cookie-preferences__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions .button,
    .cookie-preferences__actions .button,
    .footer-cookie-link {
        width: 100%;
    }

    .cookie-pref-item__row,
    .cookie-preferences__header {
        display: grid;
    }
}

@media (min-width: 760px) {
    .hero-home__highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

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

@media (min-width: 980px) {
    .nav-toggle {
        display: none;
    }

    .site-header__panel {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        width: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 0.95rem;
        margin-left: auto;
        max-height: none;
        overflow: visible;
        text-align: left;
        justify-items: stretch;
        backdrop-filter: none;
    }

    .site-header__backdrop {
        display: none;
    }

    .brand-logo {
        width: clamp(164px, 13.5vw, 188px);
        max-height: 46px;
    }

    .site-nav ul {
        display: flex;
        align-items: center;
        gap: 0.08rem;
    }

    .site-nav a {
        min-width: auto;
        padding: 0.56rem 0.72rem;
        border-radius: 12px;
        font-size: 0.89rem;
    }

    .site-header__utility {
        width: auto;
        display: flex;
        align-items: center;
        gap: 0.58rem;
        margin-left: 0.1rem;
    }

    .site-header__actions .cta-actions {
        display: flex;
        flex-wrap: nowrap;
        width: auto;
        gap: 0.42rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
        align-items: stretch;
        padding: 2.4rem var(--section-inline-padding);
    }

    .hero-home {
        padding: 0;
    }

    .hero-home::before {
        background-position: center 34%;
    }

    .hero-home__inner {
        grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
        gap: 1.45rem 1.4rem;
    }

    .hero-home .hero__copy {
        justify-items: start;
        text-align: left;
        margin: 0;
    }

    .hero-home .eyebrow {
        justify-content: flex-start;
    }

    .hero-home__meta,
    .hero-home__contact-bar {
        justify-content: flex-start;
    }

    .hero-home__title,
    .hero-home .hero__lead,
    .hero-home .cta-actions {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-home__title {
        max-width: 10.8ch;
    }

    .hero-home .cta-actions {
        width: auto;
        justify-content: flex-start;
    }

    .hero-home__aside {
        width: 100%;
        max-width: 28rem;
        margin-left: auto;
    }

    .hero-home__highlights {
        grid-column: 1 / -1;
    }

    .page-hero__inner {
        grid-template-columns: minmax(0, 1.13fr) minmax(300px, 0.87fr);
        gap: 1.45rem 1.4rem;
    }

    .page-hero__copy {
        justify-items: start;
        text-align: left;
        margin: 0;
    }

    .page-hero .eyebrow {
        justify-content: flex-start;
    }

    .page-hero__meta {
        justify-content: flex-start;
    }

    .page-hero .cta-actions {
        width: auto;
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }

    .page-hero__panel {
        width: 100%;
        max-width: 27.5rem;
        margin-left: auto;
    }

    .page-hero__highlights {
        grid-column: 1 / -1;
    }

    .section-split,
    .contact-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

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

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

    .trust-band,
    .cta-strip {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
        padding: 1.55rem 1.7rem;
    }

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

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

    .cookie-consent__card {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 1200px) {
    .hero,
    .site-footer {
        padding-left: var(--section-inline-padding);
        padding-right: var(--section-inline-padding);
    }

    .section-card,
    .card,
    .gallery-tile {
        padding: 1.45rem;
    }
}
