@font-face {
    font-family: "Lora VELMONT";
    src: url("../fonts/lora-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter VELMONT";
    src: url("../fonts/inter-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --ivory: #f7f2ea;
    --paper: #fffdf8;
    --mist: #ebe5dc;
    --navy: #06233d;
    --ink: #142131;
    --muted: #536072;
    --gold: #ad8950;
    --wood: #8a5e38;
    --stone: #d7c8b6;
    --line: rgba(8, 43, 73, .16);
    --shadow: 0 24px 70px rgba(8, 43, 73, .12);

    --serif: "Lora VELMONT", Georgia, "Times New Roman", serif;
    --sans: "Inter VELMONT", Arial, Helvetica, sans-serif;
}

/* ----------------------------------------------------------
   Reset
---------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
}

body.locked {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

@media (max-width: 720px) {
    :is(.page-id-80, .page-id-144, .page-id-146) #about p:not(.eyebrow),
    :is(.page-id-80, .page-id-144, .page-id-146) #services p:not(.eyebrow),
    :is(.page-id-80, .page-id-144, .page-id-146) #residences p:not(.eyebrow),
    :is(.page-id-80, .page-id-144, .page-id-146) #process p:not(.eyebrow),
    :is(.page-id-80, .page-id-144, .page-id-146) #standards p:not(.eyebrow),
    :is(.page-id-80, .page-id-144, .page-id-146) #contact p:not(.eyebrow) {
        font-size: 108%;
    }

    /* Mobile editorial heading scale: keep major sections on one system. */
    :is(.page-id-80, .page-id-144, .page-id-146)
    :is(#about, #services, #residences, #process, #standards, #velmont-standard, #contact) h2 {
        font-size: clamp(32px, 8.5vw, 40px);
        line-height: 1.12;
        font-weight: 400;
    }
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.wpcf7,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 button {
    font-family: var(--sans) !important;
}

/* ----------------------------------------------------------
   Typography
---------------------------------------------------------- */

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0;
}

.eyebrow {
    margin: 0 0 22px;
    color: #9a743d;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.lead {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.section.navy .lead {
    color: rgba(255,253,248,.72);
}

/* ----------------------------------------------------------
   Layout
---------------------------------------------------------- */

main {
    overflow: hidden;
}

.wrap {
    width: min(1180px,100%);
    margin: 0 auto;
}

.center {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section {
    padding: 92px 46px;
    background: var(--ivory);
}

.section.paper {
    background: var(--paper);
}

.section.stone {
    background: #ede5d9;
}

.section.navy {
    background: var(--navy);
    color: #fffdf8;
}

.section h2 {
    font-size: clamp(34px,5vw,58px);
    line-height: 1.06;
}

.section.navy h2,
.section.navy h3 {
    color: #fffdf8;
}

/* ----------------------------------------------------------
   Buttons
---------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 23px;

    border: 1px solid rgba(6,35,61,.36);
    background: rgba(255,253,248,.72);

    color: var(--navy);

    cursor: pointer;

    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        background .24s ease,
        border-color .24s ease,
        transform .24s ease;
}

.btn:hover,
.btn:focus-visible {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-1px);
}

.btn.dark {
    border-color: var(--navy);
    background: var(--navy);
    color: #fffdf8;
}

.btn.dark:hover,
.btn.dark:focus-visible {
    border-color: var(--gold);
    background: #123d61;
}

/* ----------------------------------------------------------
   Forms
---------------------------------------------------------- */

label {
    color: var(--navy);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;

    padding: 12px 13px;

    border: 1px solid rgba(8,43,73,.18);
    border-radius: 0;

    background: #fbf8f2;
    color: var(--ink);

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease;
}

textarea {
    min-height: 124px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

/* ----------------------------------------------------------
   Animations
---------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

@media (max-width:1080px) {

    .wrap,
    .center {
        width: 100%;
    }

    .section {
        padding-left: 22px;
        padding-right: 22px;
    }

}

@media (max-width:720px) {

    .section {
        padding: 64px 20px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ==========================================================================
   RU SYSTEM AUDIT — TYPOGRAPHY, CONTAINERS, RHYTHM
   ========================================================================== */

.page-id-80 {
    --velmont-content-width: 1280px;
}

.page-id-80 .section > .wrap {
    width: min(var(--velmont-content-width), 100%);
}

.page-id-80 .section .eyebrow {
    margin: 0 0 18px;
    color: #9a743d;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-id-80 .section.navy .eyebrow {
    color: var(--gold);
}

html[lang="bg-BG"] :is(#residences, #process) .eyebrow::after {
    display: block;
    width: 48px;
    height: 1px;
    margin-top: 16px;
    background: var(--gold);
    content: "";
    opacity: .75;
}

html[lang="bg-BG"] #residences .eyebrow::after {
    margin-right: auto;
    margin-left: 0;
}

html[lang="bg-BG"] #process .eyebrow::after {
    margin-right: auto;
    margin-left: auto;
}

/* Unified section eyebrow underline system */
:is(.page-id-80, .page-id-144, .page-id-146) :is(#about, #services, #packages, #home-services, #residences, #process, #standards, #velmont-standard, #contact) .eyebrow::after {
    display: block;
    width: 48px;
    height: 1px;
    margin: 16px auto 0;
    background: var(--gold);
    content: "";
    opacity: .75;
}
:is(.page-id-80, .page-id-144, .page-id-146) :is(#residences, #standards, #contact) .eyebrow::after {
    margin-left: 0;
    margin-right: auto;
}

.page-id-80 .section h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.page-id-80 .section .lead {
    max-width: 880px;
    margin-top: 24px;
    font-family: var(--sans);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.6;
    letter-spacing: 0;
}

.page-id-80 #about {
    padding: 64px 46px;
}

.page-id-80 #about .center {
    max-width: 900px;
}

@media (max-width: 1080px) {
    .page-id-80 .section > .wrap {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .page-id-80 #about {
        padding: 56px 20px;
    }

    .page-id-80 .section .eyebrow {
        margin-bottom: 16px;
    }

    .page-id-80 .section .lead {
        margin-top: 20px;
    }
}
