:root {
    --ink: #1f2a25;
    --pine: #27493b;
    --moss: #5f744f;
    --lake: #456f84;
    --brass: #b37a2d;
    --clay-red: #af342d;
    --paper: #fbfaf4;
    --mist: #eef4ef;
    --linen: #e9dfd1;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(31, 42, 37, 0.14);
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Lato", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
    padding: 14px 42px;
    background: rgba(251, 250, 244, 0.94);
    border-bottom: 1px solid rgba(39, 73, 59, 0.16);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    text-decoration: none;
}

.brand-house {
    width: 116px;
    height: auto;
    flex: 0 0 auto;
}

.brand-wordmark {
    width: 238px;
    height: auto;
}

.main-nav,
.language-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav a,
.language-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--pine);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.language-nav a:hover,
.language-nav a.active {
    background: var(--pine);
    color: var(--white);
}

.language-nav {
    gap: 6px;
}

.language-nav a {
    width: 42px;
    padding: 0;
}

.hero {
    position: relative;
    min-height: min(640px, calc(100svh - 118px));
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(24, 39, 32, 0.78), rgba(24, 39, 32, 0.45) 46%, rgba(24, 39, 32, 0.12)),
        linear-gradient(180deg, rgba(24, 39, 32, 0.18), rgba(24, 39, 32, 0.42));
}

.hero-content {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
    padding: 76px 0 72px;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    color: var(--brass);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f6d08e;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: var(--font-heading);
    line-height: 1.02;
    font-weight: 600;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: 4.65rem;
    overflow-wrap: break-word;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

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

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: var(--white);
}

.section {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
    padding: 86px 0 72px;
}

.intro-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
    gap: 70px;
    align-items: start;
}

.intro-heading h2,
.contact-copy h2 {
    margin-bottom: 0;
    color: var(--pine);
    font-size: 3.25rem;
}

.content-body {
    color: #36423b;
    font-size: 1.08rem;
}

.content-body p {
    margin: 0 0 1.35em;
}

.content-body p:first-child {
    color: var(--pine);
    font-size: 1.26rem;
    line-height: 1.55;
}

.content-body p:last-child {
    margin-bottom: 0;
}

.content-body img {
    width: 100%;
    height: auto;
    margin: 28px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-band {
    background: linear-gradient(180deg, var(--mist), #f7f6ed);
    padding: 56px 0;
}

.feature-grid {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 240px;
    padding: 30px;
    border: 1px solid rgba(39, 73, 59, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 46px rgba(69, 111, 132, 0.1);
}

.feature-card span {
    width: 38px;
    height: 38px;
    display: block;
    margin-bottom: 26px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 34%, var(--brass) 36%, var(--brass) 43%, transparent 45%),
        radial-gradient(circle at 50% 50%, transparent 55%, var(--lake) 57%, var(--lake) 63%, transparent 65%);
}

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--pine);
    font-size: 1.74rem;
}

.feature-card p {
    margin: 0;
    color: #46564d;
}

.payment-strip {
    background: var(--pine);
    color: var(--white);
    padding: 28px 32px;
    text-align: center;
}

.payment-strip p {
    max-width: 900px;
    margin: 0 auto;
    font-weight: 700;
}

.contact-section {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
    padding: 86px 0;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: stretch;
}

.contact-copy {
    padding: 34px 0;
}

address {
    margin: 28px 0 22px;
    color: #3f4b44;
    font-style: normal;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-links a {
    color: var(--pine);
    font-weight: 700;
    text-decoration-color: rgba(179, 122, 45, 0.42);
    text-underline-offset: 5px;
}

.map-frame {
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.site-footer {
    padding: 28px 32px 42px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.74);
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 0.92rem;
}

@media (min-width: 1180px) {
    h1 {
        font-size: 5.25rem;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 12px 22px;
    }

    .brand {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .brand-house {
        width: 92px;
    }

    .brand-wordmark {
        width: 210px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .language-nav {
        justify-content: flex-end;
    }

    h1 {
        font-size: 3.45rem;
    }

    .intro-layout,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-heading h2,
    .contact-copy h2 {
        font-size: 2.65rem;
    }

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

    .feature-card {
        min-height: 0;
    }
}

@media (max-width: 660px) {
    .site-header {
        position: relative;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand {
        grid-column: 1;
        justify-content: center;
        gap: 12px;
    }

    .brand-house {
        width: 74px;
    }

    .brand-wordmark {
        width: 176px;
    }

    .main-nav a {
        padding: 0 10px;
        font-size: 0.86rem;
    }

    .main-nav,
    .language-nav {
        justify-content: center;
    }

    .language-nav a {
        width: 38px;
    }

    .hero {
        min-height: min(570px, calc(100svh - 92px));
    }

    .hero-content,
    .section,
    .feature-grid,
    .contact-section {
        width: min(calc(100% - 34px), 1120px);
    }

    .hero-content {
        padding: 54px 0 48px;
    }

    h1 {
        font-size: 2.02rem;
        overflow-wrap: anywhere;
    }

    .hero-lead,
    .content-body p:first-child {
        font-size: 1.12rem;
    }

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

    .button {
        width: 100%;
    }

    .section,
    .contact-section {
        padding: 46px 0 60px;
    }

    .intro-heading h2,
    .contact-copy h2 {
        font-size: 2.18rem;
    }

    .feature-card {
        padding: 24px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 320px;
    }
}
