@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --forest: #14271f;
    --forest-2: #20382d;
    --cream: #f5eee1;
    --gold: #b58b3b;
    --gold-light: #d2ae62;
    --ink: #17231f;
    --muted: #65716b;
    --white: #fffdf8;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background: var(--forest);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
}

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

.site-shell {
    width: 100%;
    height: 100dvh;
    min-height: 620px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
}

.hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 48% 52%;
    background: var(--cream);
}

.hero-copy {
    position: relative;
    min-width: 0;
    padding: clamp(34px, 5vh, 72px) clamp(34px, 5vw, 90px) 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
}

.hero-copy::before,
.hero-copy::after {
    content: "";
    position: absolute;
    inset: -10%;
    pointer-events: none;
    z-index: -1;
    opacity: .15;
    background-image:
        repeating-radial-gradient(ellipse at 20% 30%, transparent 0 28px, #a78c62 29px 30px, transparent 31px 55px);
    transform: rotate(-9deg);
}

.hero-copy::after {
    inset: auto -10% -45% 15%;
    opacity: .09;
    transform: rotate(14deg);
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-mark {
    width: 74px;
    height: 74px;
    position: relative;
    flex: 0 0 auto;
    border: 2px solid var(--forest);
    border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.crosshair::before,
.crosshair::after {
    content: "";
    position: absolute;
    background: var(--gold);
}

.brand-mark::before {
    width: 2px;
    height: 94px;
    left: 34px;
    top: -12px;
}

.brand-mark::after {
    height: 2px;
    width: 94px;
    left: -12px;
    top: 34px;
}

.crosshair::before {
    width: 12px;
    height: 12px;
    border: 2px solid var(--forest);
    border-radius: 50%;
    left: 29px;
    top: 29px;
    background: var(--cream);
}

.mountain {
    position: absolute;
    left: 14px;
    bottom: 12px;
    width: 43px;
    height: 25px;
    background: var(--forest);
    clip-path: polygon(0 100%, 42% 30%, 58% 53%, 72% 14%, 100% 100%);
}

.eyebrow,
.kicker {
    margin: 0 0 4px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 700;
}

.brand h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: .78;
    font-size: clamp(2.25rem, 4.2vw, 4.7rem);
}

.brand h1 span {
    color: var(--forest);
}

.headline {
    max-width: 680px;
    margin-top: 10px;
}

.headline h2 {
    margin: 10px 0 18px;
    color: var(--forest);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    line-height: .98;
    letter-spacing: -.025em;
}

.intro {
    max-width: 600px;
    margin: 0;
    color: #27352f;
    font-size: clamp(.92rem, 1.15vw, 1.15rem);
    line-height: 1.55;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    border-top: 1px solid rgba(181, 139, 59, .65);
    padding-top: 17px;
}

.services article {
    min-width: 0;
    padding: 0 17px;
    border-right: 1px solid rgba(181, 139, 59, .5);
}

.services article:first-child {
    padding-left: 0;
}

.services article:last-child {
    border-right: 0;
    padding-right: 0;
}

.service-icon {
    height: 28px;
    color: var(--gold);
    font-size: 1.65rem;
    line-height: 1;
}

.services h3 {
    margin: 7px 0 4px;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .74rem;
}

.services p {
    margin: 0;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: var(--forest);
}

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

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 39, 31, .12), transparent 42%, rgba(20, 39, 31, .08));
}

.visual-caption {
    position: absolute;
    top: 38px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .8rem;
    font-weight: 700;
}

.visual-caption i {
    display: block;
    width: 1px;
    height: 18px;
    background: var(--gold);
}

.credential-badge {
    position: absolute;
    right: 7%;
    bottom: 8%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    background: rgba(20, 39, 31, .92);
    color: var(--gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,.22);
}

.credential-badge::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(210,174,98,.55);
    border-radius: 50%;
}

.credential-badge span {
    font-size: .57rem;
    letter-spacing: .17em;
    font-weight: 700;
}

.credential-badge strong {
    margin: 5px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    color: var(--white);
}

.footer {
    min-height: 108px;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr .9fr 1fr;
    background: var(--forest);
    color: var(--white);
    border-top: 3px solid var(--gold);
    padding: 15px 4.2vw;
    gap: 0;
}

.footer-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-right: 1px solid rgba(210,174,98,.35);
}

.footer-item:first-child {
    padding-left: 0;
}

.footer-item:last-child {
    border-right: 0;
}

.footer-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer strong,
.footer span {
    display: block;
}

.footer strong {
    margin-bottom: 4px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.footer span {
    color: #c4cfc8;
    font-size: .72rem;
    line-height: 1.35;
}

.phone {
    transition: transform .2s ease, color .2s ease;
}

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

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 53% 47%;
    }

    .hero-copy {
        padding-left: 4vw;
        padding-right: 3vw;
    }

    .services h3 {
        font-size: .65rem;
    }

    .services p {
        font-size: .68rem;
    }

    .footer {
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .footer-item {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media (max-width: 760px) {
    body {
        overflow: auto;
    }

    .site-shell {
        height: auto;
        min-height: 100dvh;
        overflow: visible;
        grid-template-rows: auto auto;
    }

    .hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 560px;
        padding: 34px 25px 26px;
    }

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

    .visual-caption {
        top: 22px;
        right: 5%;
        font-size: .65rem;
        gap: 10px;
    }

    .credential-badge {
        width: 112px;
        height: 112px;
        right: 5%;
        bottom: 8%;
    }

    .credential-badge strong {
        font-size: 1.55rem;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        min-height: 0;
        padding: 17px 22px;
        gap: 14px 0;
    }

    .footer-item,
    .footer-item:first-child {
        padding: 0 12px;
        border-right: 1px solid rgba(210,174,98,.25);
    }

    .footer-item:nth-child(2),
    .footer-item:last-child {
        border-right: 0;
    }

    .footer-tagline {
        display: none;
    }
}

@media (max-width: 470px) {
    .hero-copy {
        min-height: 590px;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
    }

    .brand-mark::before { height: 74px; left: 27px; top: -9px; }
    .brand-mark::after { width: 74px; left: -9px; top: 27px; }
    .crosshair::before { left: 22px; top: 22px; }
    .mountain { left: 10px; bottom: 9px; transform: scale(.78); transform-origin: left bottom; }

    .brand h1 {
        font-size: 2.15rem;
    }

    .headline h2 {
        font-size: 2.65rem;
    }

    .services {
        gap: 4px;
    }

    .services article {
        padding: 0 8px;
    }

    .services h3 {
        font-size: .56rem;
    }

    .services p {
        font-size: .62rem;
    }

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

    .footer-item,
    .footer-item:first-child,
    .footer-item:nth-child(2) {
        border-right: 0;
        padding: 4px 0;
    }

    .footer-item:nth-child(3) {
        padding-top: 8px;
    }
}
