:root {
    --navy: #0c2340;
    --navy-mid: #153456;
    --navy-soft: #1e4468;
    --gold: #c9a227;
    --gold-light: #e4c35a;
    --gold-pale: #f7efd8;
    --cream: #faf8f4;
    --cream-warm: #f3efe6;
    --bg-top: #faf8f4;
    --bg-bottom: #ffffff;
    --ink: #0c2340;
    --muted: #5c6b7a;
    --line: #e6dfd0;
    --surface: #ffffff;
    --surface-alt: #f8f5ef;
    --primary: #0c2340;
    --primary-deep: #081a30;
    --teal: #c9a227;
    --shadow-sm: 0 6px 18px rgba(12, 35, 64, 0.07);
    --shadow-md: 0 16px 36px rgba(12, 35, 64, 0.11);
    --shadow-gold: 0 10px 24px rgba(201, 162, 39, 0.22);
    --radius-lg: 1.2rem;
    --radius-xl: 1.5rem;
}

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

body.veritim-site {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 48%, #fff 100%);
}

.veritim-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(250, 248, 244, 0.94) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(247, 239, 216, 0.35) 100%);
    transform: translateZ(0);
}

.veritim-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(12, 35, 64, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 10%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.veritim-bg::after {
    display: none;
}

.veritim-bg__arc {
    position: absolute;
    pointer-events: none;
    border-radius: 0 0 100% 0;
    background: linear-gradient(145deg, rgba(12, 35, 64, 0.09) 0%, rgba(12, 35, 64, 0.03) 55%, transparent 100%);
}

.veritim-bg__arc::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(228, 195, 90, 0.55) 0%, rgba(201, 162, 39, 0.15) 40%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.85;
}

.veritim-bg__arc--tl {
    top: -6%;
    left: -10%;
    width: min(52vw, 28rem);
    height: min(38vh, 18rem);
    transform: rotate(-2deg);
}

.veritim-bg__arc--bl {
    bottom: -8%;
    left: -12%;
    width: min(48vw, 24rem);
    height: min(32vh, 15rem);
    border-radius: 0 100% 0 0;
    transform: rotate(3deg);
    background: linear-gradient(35deg, rgba(12, 35, 64, 0.07) 0%, rgba(12, 35, 64, 0.02) 50%, transparent 100%);
}

.veritim-bg__arc--bl::before {
    background: linear-gradient(45deg, transparent 25%, rgba(201, 162, 39, 0.35) 55%, rgba(228, 195, 90, 0.5) 100%);
}

.veritim-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.veritim-wrap > main {
    flex: 1;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.06);
    backdrop-filter: blur(10px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.45) 20%, rgba(201, 162, 39, 0.65) 50%, rgba(201, 162, 39, 0.45) 80%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
}

.header-inner {
    min-height: 5.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
    margin-top: -0.18rem;
}

.brand__logo {
    display: block;
    height: clamp(5rem, 13.5vw, 6.85rem);
    width: auto;
    max-width: min(18rem, 58vw);
    object-fit: contain;
    object-position: left top;
    overflow: visible;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 0.72rem;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    padding: 0.45rem 0.72rem;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.34rem;
}

.site-nav a {
    color: var(--navy-mid);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.45rem 0.86rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--navy);
    background: var(--gold-pale);
}

.hero {
    padding: 1.65rem 0 1.85rem;
    position: relative;
}

.hero::before {
    display: none;
}

/* Hero: типографика + фото (как на визитке), без вставки целого макета */
.hero-panel {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1.15rem;
    align-items: stretch;
}

.hero-panel__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-panel__visual {
    position: relative;
    min-height: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: var(--shadow-md);
    background: #fff;
}

/* Правый блок в духе визитки: фото + диагональ с золотой кромкой (не копия 1:1) */
.hero-card-visual {
    isolation: isolate;
}

.hero-card-visual__photo {
    position: absolute;
    inset: 0;
    background-color: #faf8f4;
    background-image: url("images/brand/hero-interior.png");
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: 200% auto;
}

.hero-card-visual__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255, 255, 255, 0.92) 12%,
        rgba(255, 255, 255, 0.35) 28%,
        transparent 42%
    );
    pointer-events: none;
}

.hero-card-visual__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(12, 35, 64, 0.12) 100%);
    pointer-events: none;
}

.hero-card-visual__slant {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 74%;
    min-height: 4.25rem;
    background: linear-gradient(128deg, var(--navy) 0%, var(--primary-deep) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-card-visual__gold-edge {
    position: absolute;
    top: 0;
    left: 14%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-light) 35%, var(--gold) 55%, rgba(228, 195, 90, 0.4) 100%);
    transform: rotate(-5.5deg);
    transform-origin: left center;
    pointer-events: none;
}

.hero-card-visual__badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    height: 100%;
    padding: 0.8rem 1rem 0.9rem 2.2rem;
}

.hero-card-visual__shield {
    flex-shrink: 0;
    width: 1.55rem;
    height: 1.55rem;
    color: var(--gold-light);
}

.hero-card-visual__shield svg {
    width: 100%;
    height: 100%;
}

.hero-card-visual__tagline {
    color: #fff;
    font-size: clamp(0.48rem, 1.5vw, 0.58rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.35;
    text-align: right;
    max-width: 14rem;
}

html[lang="ru"] .hero-card-visual__tagline,
html[lang="de"] .hero-card-visual__tagline,
html[lang="fr"] .hero-card-visual__tagline {
    letter-spacing: 0.06em;
    font-size: clamp(0.46rem, 1.4vw, 0.54rem);
}

/* legacy hero-visual / hero-slant — kept for compatibility */
.hero-visual {
    position: absolute;
    inset: 0;
    background-color: #f8f6f2;
    background-image: url("images/brand/hero-interior.png");
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: 200% auto;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12, 35, 64, 0.06) 100%);
    pointer-events: none;
}

.hero-visual__img {
    display: none;
}

.hero-slant {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.72rem 1rem 0.82rem 1.25rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-deep) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-slant__icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold-light);
}

.hero-slant__icon svg {
    width: 100%;
    height: 100%;
}

.hero-slant__text {
    font-size: clamp(0.5rem, 1.6vw, 0.6rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: right;
    max-width: 16rem;
}

html[lang="ru"] .hero-slant__text,
html[lang="de"] .hero-slant__text,
html[lang="fr"] .hero-slant__text {
    letter-spacing: 0.05em;
    font-size: clamp(0.48rem, 1.5vw, 0.56rem);
}

.hero-lead {
    font-size: clamp(0.9rem, 2vw, 1rem);
    max-width: 38ch;
}

.hero-panel__copy h1 {
    font-size: clamp(1.45rem, 3.2vw, 2.2rem);
    text-wrap: balance;
    max-width: 100%;
}

.brand-divider {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0.15rem 0 0.85rem;
    max-width: 12rem;
}

.brand-divider::before,
.brand-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
}

.brand-divider--center {
    margin-left: auto;
    margin-right: auto;
}

.brand-divider__star {
    color: var(--gold);
    font-size: 0.62rem;
    line-height: 1;
}

.about-story {
    margin-top: 1.25rem;
}

.about-story h2 {
    margin: 0.2rem 0 0.6rem;
}

.section-head {
    margin-bottom: 1.1rem;
}

.section-head--left {
    text-align: left;
}

.section-head__kicker {
    text-align: center;
    margin-bottom: 0.35rem;
}

.section-head__title {
    margin: 0 0 0.55rem;
    font-family: "Playfair Display", "Cinzel", Georgia, serif;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    color: var(--navy);
    line-height: 1.2;
}

.section--tight {
    padding-top: 0.35rem;
}

.page-intro {
    margin-bottom: 1.15rem;
    border-top: 3px solid var(--gold);
    padding-top: 0.15rem;
}

.page-intro h1 {
    margin-bottom: 0.65rem;
}

.page-intro__note {
    margin: 0;
    max-width: 44rem;
    padding: 0.72rem 0.9rem;
    border-left: 3px solid rgba(201, 162, 39, 0.72);
    border-radius: 0 12px 12px 0;
    background: rgba(201, 162, 39, 0.07);
    color: rgba(12, 35, 64, 0.78);
    font-size: 0.9rem;
    line-height: 1.58;
}

.hero-banner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.1rem;
    align-items: stretch;
}

.hero-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner__visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    min-height: 280px;
}

.hero-banner__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-line {
    margin: 0.2rem 0 1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: var(--gold-pale);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-badge svg {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

/* Hero: дом слева от заголовка — без наложения на текст */
.hero-intro {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.hero-intro__icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    margin-top: 0.08rem;
    color: var(--gold);
    background: linear-gradient(160deg, #fff 0%, var(--gold-pale) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.hero-intro__icon svg {
    width: 2rem;
    height: 2rem;
}

.hero-intro__body {
    flex: 1;
    min-width: 0;
}

.hero-intro__body .kicker {
    padding-right: 0;
}

/* Блок «Почему выбирают»: щит с галочкой (доверие), не «тележка» */
.hero-why-head {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
}

.hero-why-head__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.06rem;
    color: var(--gold);
    background: linear-gradient(165deg, #fff 0%, var(--gold-pale) 100%);
    border: 1px solid rgba(201, 162, 39, 0.32);
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-why-head__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.hero-why-head__kicker {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

/* Карточки услуг: иконка слева от подзаголовков */
.card__head {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.55rem;
}

.card__symbol {
    flex-shrink: 0;
    width: 2.45rem;
    height: 2.45rem;
    margin-top: 0.05rem;
    color: var(--gold);
    background: linear-gradient(165deg, #fff 0%, var(--gold-pale) 100%);
    border: 1px solid rgba(201, 162, 39, 0.32);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card__symbol svg {
    width: 1.42rem;
    height: 1.42rem;
}

.card__head-text {
    flex: 1;
    min-width: 0;
}

.card__head-text .kicker {
    margin-bottom: 0.38rem;
}

.card__head-text h3 {
    margin-bottom: 0;
}

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

.section {
    padding: 1rem 0 2.3rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.94rem;
}

.pricing-calculator {
    margin-bottom: 1.25rem;
}

.pricing-calculator__lead {
    margin: 0 0 1.1rem;
    color: var(--navy-mid);
    max-width: 52rem;
}

.pricing-calculator__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.25rem;
    align-items: start;
}

.calc-fieldset {
    border: none;
    margin: 0 0 1rem;
    padding: 0;
}

.calc-fieldset legend {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.calc-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.calc-options--cards .calc-option {
    flex: 1 1 9rem;
}

.calc-options--soil {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
}

.calc-options--soil .calc-option {
    flex: initial;
    justify-content: center;
    text-align: center;
    padding: 0.42rem 0.45rem;
    font-size: 0.8rem;
}

.calc-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.48rem 0.65rem;
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    background: #fff;
    cursor: pointer;
    font-size: 0.86rem;
    color: var(--navy-mid);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.calc-option:has(input:checked) {
    border-color: rgba(201, 162, 39, 0.65);
    background: var(--gold-pale);
    color: var(--navy);
    font-weight: 600;
}

.calc-option input {
    accent-color: var(--gold);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

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

.calc-windows {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}

.calc-windows-group {
    margin-bottom: 0;
}

.calc-windows-group:last-child {
    margin-bottom: 0;
}

.calc-windows-group__title {
    margin: 0 0 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
}

.calc-windows-row {
    display: flex;
    gap: 0.85rem;
}

.calc-window-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--navy-mid);
}

.calc-window-field input {
    width: 3.75rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.42rem 0.45rem;
    font-size: 0.95rem;
    text-align: center;
    color: var(--navy);
    background: #fff;
}

.calc-window-field--sqft {
    width: auto;
}

.calc-window-field--sqft input {
    width: 5.25rem;
}

.calc-compact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.calc-compact-note {
    display: block;
    max-width: 8.5rem;
    margin: 0.3rem 0 0;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--navy-soft);
}

.calc-compact-note--wide {
    max-width: 13rem;
}

.calc-bathrooms {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin: 0.85rem 0;
}

.calc-window-field input:focus {
    outline: 2px solid rgba(201, 162, 39, 0.35);
    border-color: rgba(201, 162, 39, 0.55);
}

.calc-input {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    font-size: 0.86rem;
    color: var(--navy-mid);
}

.calc-input input {
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.48rem 0.55rem;
    font-size: 0.95rem;
    color: var(--navy);
    background: #fff;
}

.calc-input input:focus {
    outline: 2px solid rgba(201, 162, 39, 0.35);
    border-color: rgba(201, 162, 39, 0.55);
}

.calc-input small {
    font-size: 0.72rem;
    color: var(--navy-soft);
    line-height: 1.3;
}

.calc-checks {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.calc-checks--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.calc-checks--spaced {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px dashed var(--line);
}

.calc-checks--highlight {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.calc-check--card {
    flex: 1 1 9rem;
    align-items: center;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    background: #fff;
    font-weight: 600;
    color: var(--navy-mid);
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.calc-check--card:has(input:checked) {
    border-color: #c9ccd3;
    background: #eef0f3;
    color: var(--navy);
}

.calc-check {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: var(--navy-mid);
    cursor: pointer;
}

.calc-check input {
    margin-top: 0.15rem;
    accent-color: var(--gold);
}

.pricing-calculator__summary {
    position: sticky;
    top: 5.5rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-xl);
    background: linear-gradient(165deg, #fff 0%, var(--gold-pale) 100%);
    padding: 1rem 1.05rem;
    box-shadow: var(--shadow-sm);
}

.pricing-calculator__summary h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: var(--navy);
}

.calc-breakdown {
    list-style: none;
    margin: 0 0 0.85rem;
    padding: 0;
    border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.calc-breakdown li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(12, 35, 64, 0.06);
    font-size: 0.84rem;
    color: var(--navy-mid);
}

.calc-breakdown strong {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.calc-breakdown strong.is-discount {
    color: #1a7a45;
}

.calc-total {
    border-top: 2px solid rgba(201, 162, 39, 0.45);
    padding-top: 0.75rem;
    margin-bottom: 0.85rem;
}

.calc-total__label {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-soft);
    font-weight: 700;
}

.calc-total__amount {
    margin: 0.15rem 0 0.35rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

.calc-total__per {
    margin: 0.1rem 0;
    font-size: 0.88rem;
    color: var(--navy-mid);
    font-weight: 600;
}

.calc-total__note {
    margin: 0.55rem 0 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--navy-soft);
}

.calc-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.calc-print-action {
    margin-top: 0.9rem;
    padding: 0.75rem;
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.68);
}

.calc-print-action p {
    margin: 0.45rem 0 0;
    font-size: 0.76rem;
    line-height: 1.35;
    text-align: center;
    color: var(--navy-soft);
}

.calc-print-only {
    display: none;
}

.calc-print-header {
    text-align: left;
}

.calc-print-logo {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 0 0.35rem;
}

.calc-print-brand {
    margin: 0 0 0.2rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.calc-print-date {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    color: var(--navy-soft);
}

@media print {
    .site-header,
    .veritim-bg,
    .site-footer,
    footer,
    .veritim-lang-fab,
    .menu-toggle,
    .page-intro,
    .pricing-calculator__lead,
    .pricing-calculator > .kicker,
    .pricing-calculator > h2,
    .pricing-calculator__form,
    [data-pricing-grid],
    .calc-print-action,
    .footer-copy,
    .footer-tagline,
    .admin-key {
        display: none !important;
    }

    .calc-print-only {
        display: block;
    }

    html,
    body,
    .hero,
    .container,
    .pricing-calculator,
    .card {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        box-shadow: none !important;
        border: none !important;
        overflow: visible !important;
        contain: none !important;
    }

    .pricing-calculator__layout {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .pricing-calculator,
    .pricing-calculator__summary,
    [data-calc-print-area] {
        position: static !important;
        top: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        background-image: none !important;
        box-shadow: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        break-inside: avoid;
    }

    .calc-print-header {
        text-align: left;
        padding-bottom: 0.7rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid #c9a227;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .calc-print-logo {
        width: 172px;
        margin: 0 0 0.35rem;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .calc-print-date {
        margin: 0.2rem 0 0 !important;
        color: #555 !important;
    }

    .pricing-calculator__summary h3 {
        margin-bottom: 0.8rem !important;
        font-size: 1.2rem !important;
        letter-spacing: 0.01em;
    }

    .calc-breakdown {
        margin-bottom: 1rem !important;
    }

    .calc-breakdown li {
        padding: 0.36rem 0 !important;
    }

    .calc-total {
        margin-bottom: 0 !important;
        padding-top: 0.85rem !important;
    }

    .calc-total__amount {
        font-size: 1.75rem !important;
    }
}

.hero-card,
.card {
    position: relative;
    contain: layout paint;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 248, 244, 0.96) 100%);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 1.25rem;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-card--lift:hover,
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.35);
}

.hero-card--accent {
    background: linear-gradient(160deg, #fff 0%, var(--gold-pale) 100%);
    border-color: rgba(201, 162, 39, 0.4);
}

.hero-card--accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 2;
}

.section-grid .card {
    border-top: 2px solid rgba(201, 162, 39, 0.28);
}

.hero-card::before,
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

/* Cards stay clean: no busy photo overlays. */
.hero-card::after,
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.65;
}

.hero-card > *,
.card > * {
    position: relative;
    z-index: 1;
}

.section-grid .card:nth-child(2n)::before {
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.kicker {
    margin: 0 0 0.52rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0 0 0.72rem;
    color: var(--navy);
    font-family: "Playfair Display", "Cinzel", Georgia, serif;
    line-height: 1.18;
}

h1 {
    font-size: clamp(1.75rem, 4.1vw, 2.52rem);
}

h3 {
    font-size: 1.02rem;
}

p {
    margin: 0 0 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.56rem;
}

.metric {
    border: 1px solid var(--line);
    border-radius: 0.92rem;
    background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
    padding: 0.7rem 0.62rem;
}

.metric strong {
    display: block;
    color: var(--navy);
    font-family: "Cinzel", serif;
    font-size: 1.12rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric span {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

.checklist {
    margin: 0.1rem 0 0.3rem;
    padding-left: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.91rem;
}

.checklist li {
    position: relative;
    padding-left: 1.15rem;
}

.checklist li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--gold);
    font-size: 0.55rem;
}

.checklist li + li {
    margin-top: 0.42rem;
}

.service-card-image,
.service-detail-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    margin-bottom: 1rem;
    box-shadow: 0 14px 30px rgba(12, 35, 64, 0.08);
}

.work-card__media {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: 0 14px 30px rgba(12, 35, 64, 0.08);
    aspect-ratio: 3 / 2;
}

.work-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.32rem 0.66rem;
    border-radius: 999px;
    background: rgba(12, 35, 64, 0.82);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
}

.service-detail-image {
    max-height: 320px;
    height: auto;
}

.service-details {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.91rem;
}

.service-details summary {
    cursor: pointer;
    color: var(--navy);
    font-weight: 800;
}

.service-details p {
    margin: 0.7rem 0 0;
}

[data-service-package] {
    margin: 0.25rem 0 1rem;
    color: var(--muted);
    font-size: 0.91rem;
}

[data-service-package] a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

[data-service-package] a:hover {
    text-decoration: underline;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.58rem 1.08rem;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(12, 35, 64, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-mid) 100%);
}

.button-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #a8841a 100%);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.button-secondary {
    color: var(--navy);
    background: #fff;
    border-color: rgba(201, 162, 39, 0.45);
}

.button-secondary:hover {
    background: var(--gold-pale);
}

.site-footer {
    margin-top: 1.8rem;
    border-top: 1px solid rgba(201, 162, 39, 0.28);
    background: linear-gradient(180deg, var(--navy) 0%, var(--primary-deep) 100%);
    color: #fff;
}

.footer-inner {
    min-height: 4.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.1rem 0;
}

.footer-tagline {
    margin: 0;
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.footer-copy [data-i18n="footer.company"]::first-letter {
    color: var(--gold-light);
    font-weight: 800;
}

/* Admin: fixed bottom-right — key icon. */
.admin-key {
    position: fixed;
    z-index: 200;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    right: max(0.72rem, env(safe-area-inset-right));
    top: auto;
    width: 2.22rem;
    height: 2.22rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(201, 162, 39, 0.45);
    text-decoration: none;
    opacity: 0.92;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.admin-key:hover,
.admin-key:focus-visible {
    opacity: 1;
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-1px);
    outline: 2px solid rgba(201, 162, 39, 0.35);
    outline-offset: 2px;
}

.admin-key svg {
    width: 1.08rem;
    height: 1.08rem;
}

/* Language: fixed top-right (above content, below header). */
.veritim-lang-fab {
    position: fixed;
    top: max(4.4rem, calc(env(safe-area-inset-top) + 4rem));
    right: max(0.78rem, env(safe-area-inset-right));
    bottom: auto;
    z-index: 230;
    margin: 0;
}

.veritim-lang-fab__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    padding: 0.46rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.veritim-lang-fab__trigger:hover,
.veritim-lang-fab__trigger[aria-expanded="true"] {
    border-color: rgba(201, 162, 39, 0.55);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.veritim-lang-fab__trigger[aria-expanded="true"] {
    background: var(--gold-pale);
}

.veritim-lang-fab__globe {
    color: var(--gold);
    flex-shrink: 0;
}

.veritim-lang-fab__current {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--navy);
    line-height: 1;
}

.veritim-lang-fab__chev {
    color: var(--navy-mid);
    opacity: 0.6;
    transition: transform 0.18s ease;
    flex-shrink: 0;
}

.veritim-lang-fab__trigger[aria-expanded="true"] .veritim-lang-fab__chev {
    transform: rotate(180deg);
}

.veritim-lang-fab__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.42rem);
    bottom: auto;
    min-width: 10rem;
    padding: 0.3rem;
    border-radius: 0.75rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-height: min(28rem, 80vh);
    overflow-y: auto;
}

.veritim-lang-fab__panel[hidden] {
    display: none !important;
}

.veritim-lang-fab__option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: var(--navy-mid);
    text-align: left;
    padding: 0.46rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.veritim-lang-fab__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.4rem;
    flex-shrink: 0;
    border-radius: 0.4rem;
    background: rgba(12, 35, 64, 0.05);
    color: var(--navy-mid);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: background 0.16s ease, color 0.16s ease;
}

.veritim-lang-fab__label {
    flex: 1;
    min-width: 0;
}

.veritim-lang-fab__option:hover {
    background: var(--gold-pale);
}

.veritim-lang-fab__option.is-active {
    background: var(--gold-pale);
    color: var(--navy);
    font-weight: 800;
}

.veritim-lang-fab__option.is-active .veritim-lang-fab__badge {
    background: var(--gold);
    color: #fff;
}

/* Contact page — parity with business card / QR */
.contact-hero {
    text-align: center;
    margin-bottom: 1.1rem;
    border-top: none;
    padding-top: 0;
    background: linear-gradient(165deg, #fff 0%, var(--gold-pale) 100%);
}

.contact-hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.45rem;
}

.contact-hero h1 a {
    color: inherit;
    text-decoration: none;
}

.contact-hero h1 a:hover {
    color: var(--gold);
}

.contact-hero__estimate {
    margin: 0 0 0.5rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: color 0.18s ease, transform 0.18s ease;
}

.contact-hero__estimate:hover {
    color: var(--navy);
    transform: translateY(-1px);
}

.contact-hero__estimate .spark {
    color: var(--gold-light);
    margin: 0 0.35rem;
}

.contact-connect {
    margin-bottom: 1.15rem;
}

.contact-connect__label {
    text-align: center;
    margin-bottom: 0.75rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--navy);
    text-transform: none;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 5.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--navy);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.45);
}

.contact-action__icon {
    width: 1.65rem;
    height: 1.65rem;
    color: var(--gold);
}

.contact-action__icon svg {
    width: 100%;
    height: 100%;
}

.contact-action__label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
}

.contact-action--gold {
    background: linear-gradient(160deg, var(--gold-pale) 0%, #fff 100%);
    border-color: rgba(201, 162, 39, 0.5);
}

.contact-action--gold .contact-action__label {
    color: var(--gold);
}

.contact-details p {
    margin-bottom: 0.55rem;
}

.contact-details a {
    color: var(--navy-mid);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-services-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-services-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-services-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.45);
}

#pricing-calculator {
    scroll-margin-top: 5.5rem;
}

.contact-services-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.62rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-services-list li:last-child {
    border-bottom: none;
}

.contact-services-list__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
}

.contact-services-list__icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-services-list__title {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.contact-services-list__sub {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.contact-footnote {
    margin: 1.2rem 0 0;
    text-align: center;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.5;
}

.contact-footnote--script {
    margin-top: 0.55rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--navy);
}

@media (max-width: 960px) {
    .hero-grid,
    .hero-panel,
    .hero-banner,
    .section-grid,
    .metrics {
        grid-template-columns: 1fr;
    }

    .hero-panel__visual,
    .hero-card-visual {
        min-height: 280px;
        order: -1;
    }

    .hero-card-visual__slant {
        width: 82%;
        min-height: 3.8rem;
    }

    .hero-card-visual__badge {
        padding-left: 1.6rem;
    }

    .hero-slant {
        clip-path: none;
        padding-left: 1rem;
    }

    .brand__logo {
        height: 4rem;
        max-width: 13rem;
    }

    .hero-banner__visual {
        min-height: 220px;
        order: -1;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3.2rem;
        height: 3.2rem;
        padding: 0;
        font-size: 0;
        border-radius: 0.85rem;
    }

    .menu-toggle::before {
        content: "\2630";
        font-size: 1.55rem;
        line-height: 1;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.45rem);
        left: 0;
        right: 0;
        display: none;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 0.82rem;
        box-shadow: var(--shadow-md);
        padding: 0.58rem;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        display: block;
        border-radius: 0.62rem;
    }

    .veritim-bg::after {
        display: none;
    }

    .veritim-bg__arc--tl {
        width: 70vw;
        height: 22vh;
    }

    .veritim-bg__arc--bl {
        width: 65vw;
        height: 18vh;
    }

    .pricing-calculator__layout,
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .pricing-calculator__summary {
        position: static;
    }

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

    /* Mobile: compact language badge in the header row, left of the bigger Menu toggle. */
    .veritim-lang-fab {
        top: 1.6rem;
        right: max(5rem, calc(env(safe-area-inset-right) + 5rem));
    }

    .veritim-lang-fab__trigger {
        padding: 0.42rem 0.6rem;
    }

    .veritim-lang-fab__chev {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
