:root {
    --olive: #394438;
    --sand: #d8cbb5;
    --terra: #a65f45;
    --char: #252724;
    --bone: #f3efe6;
    --white: #fffdf8;
    --line: rgba(37, 39, 36, .14);
    --shadow: 0 20px 60px rgba(37, 39, 36, .12);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-premium: cubic-bezier(.22, 1, .36, 1);
    --motion-fast: 260ms;
    --motion-smooth: 760ms;
}
 
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    margin: 0;
    background: var(--bone);
    color: var(--char);
    font-family: var(--sans);
    line-height: 1.6;
}

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

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

.wrap {
    max-width: 100%;
    margin: auto;
    padding: 0 10vw;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(243, 239, 230, .93);
    border-bottom: 1px solid var(--line);
}

.navin {
    height: 78px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(243, 239, 230, .93);
}

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

.mark {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--olive);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--olive);
}

.brandname {
    font-family: var(--serif);
    font-size: 23px;
    letter-spacing: .03em;
}

.links {
    display: flex;
    gap: 26px;
    font-size: 14px;
}

.links a {
    opacity: .78;
}

.links a:hover {
    opacity: 1;
    color: var(--terra);
}

.navcta {
    background: var(--olive);
    color: var(--white);
    padding: 11px 17px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
}

.menu {
    display: none;
    background: none;
    border: 0;
    font-size: 25px;
    color: var(--olive);
}

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: stretch;
    background: var(--white);
}

.hero-copy {
    padding: 105px 40px 95px max(28px, calc((100vw - 1180px)/2));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 800;
    color: var(--terra);
    margin-bottom: 22px;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 7vw, 94px);
    line-height: .92;
    letter-spacing: -.045em;
    margin: 0 0 28px;
    max-width: 680px;
}

.hero h1 em {
    font-style: italic;
}

.hero p {
    font-size: 19px;
    max-width: 590px;
    color: #51544e;
    margin: 0 0 34px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 750;
    font-size: 14px;
    border: 1px solid var(--olive);
    transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), background-color 320ms ease, color 320ms ease;
}

.btn.primary {
    background: var(--olive);
    color: var(--white);
}

.btn.primary:hover {
    transform: translateY(-0.12rem);
    box-shadow: 0 0.5rem 1.35rem rgba(57, 68, 56, .14);
}

.btn.secondary {
    background: transparent;
}

.btn.secondary:hover {
    background: var(--sand);
}

.hero-art {
    position: relative;
    min-height: 640px;
    background: linear-gradient(135deg, #777c6e 0%, #4e5a4a 52%, #2f382f 100%);
    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-art.photo-failed .hero-photo {
    display: none;
}

.hero-art.photo-failed .hero-fallback {
    display: block;
}

.hero-art:before {
    content: "";
    z-index: 1;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(255, 255, 255, .2),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, .38)
        );
}

.hill,
.hill2,
.sun {
    z-index: 2;
}

.hero-card {
    position: absolute;
    z-index: 3;
    bottom: 38px;
    left: 38px;
    background: rgba(243, 239, 230, .94);
    padding: 22px 24px;
    max-width: 320px;
    box-shadow: var(--shadow);
}

.hill {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -2%;
    height: 45%;
    background: #303a30;
    border-radius: 50% 50% 0 0/35% 35% 0 0;
    transform: rotate(-2deg);
}

.hill2 {
    position: absolute;
    left: 25%;
    right: -15%;
    bottom: 16%;
    height: 35%;
    background: #56624e;
    border-radius: 50% 50% 0 0/40% 40% 0 0;
    transform: rotate(4deg);
    opacity: .8;
}

.sun {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    right: 18%;
    top: 15%;
    background: #d8cbb5;
    opacity: .75;
    filter: blur(1px);
}

.hero-card {
    position: absolute;
    bottom: 38px;
    left: 38px;
    background: rgba(243, 239, 230, .94);
    padding: 22px 24px;
    max-width: 320px;
    box-shadow: var(--shadow);
}

.hero-card strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.hero-card small {
    display: block;
    margin-top: 5px;
    color: #5a5c56;
    font-size: 12px;
}

.band {
    background: var(--olive);
    color: var(--white);
    padding: 17px 0;
}

.bandin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.band strong {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
}

.band span {
    opacity: .75;
    font-size: 19px;
    font-weight: 400;
}

.section {
    padding: 105px 0;
}

.intro {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: start;
}

.kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--terra);
    font-weight: 800;
}

.section h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.035em;
    margin: 12px 0 25px;
}

.lead {
    font-size: 20px;
    color: #50534d;
    max-width: 720px;
}

.rule {
    height: 1px;
    background: var(--line);
    margin: 38px 0;
}

.quote {
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.25;
    max-width: 760px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 220px;
    transition: .25s;
}

.card:hover {
    transform: translateY(-0.18rem);
    box-shadow: 0 1.1rem 3rem rgba(37, 39, 36, .10);
}

.num {
    color: var(--terra);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    margin: 24px 0 10px;
}

.card p {
    font-size: 14px;
    color: #5b5e58;
    margin: 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--olive);
    color: var(--white);
}

.split-copy {
    padding: 90px max(28px, calc((100vw - 1180px)/2)) 90px 8%;
}

.split-copy h2 {
    margin-top: 12px;
}

.split-copy p {
    color: rgba(255, 253, 248, .75);
    max-width: 520px;
}

.split-art {
    min-height: 520px;
    background: linear-gradient(145deg, #9a8f79, #5c6a59 55%, #2f3a30);
    position: relative;
    overflow: hidden;
}

.split-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.split-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.split-art.photo-failed .split-photo {
    display: none;
}

.split-art.photo-failed .split-fallback {
    display: block;
}

.pile {
    position: absolute;
    width: 75%;
    height: 44%;
    left: 10%;
    bottom: 7%;
    background: #3e4039;
    border-radius: 50% 45% 35% 20%;
    transform: rotate(-7deg);
    box-shadow: 100px -20px 0 -18px #505049, 180px 10px 0 -30px #67655a;
}

.machine {
    position: absolute;
    right: 9%;
    bottom: 20%;
    width: 160px;
    height: 72px;
    background: #c59a43;
    border-radius: 9px 14px 7px 7px;
    transform: skewX(-8deg);
}

.machine:before {
    content: "";
    position: absolute;
    left: -48px;
    bottom: 2px;
    width: 70px;
    height: 12px;
    background: #222;
    border-radius: 10px;
}

.machine:after {
    content: "";
    position: absolute;
    right: -45px;
    top: 22px;
    width: 75px;
    height: 13px;
    background: #222;
    transform: rotate(35deg);
    transform-origin: left center;
}

.about {
    background: var(--bone);
}

.price {
    background: var(--white);
}

.pricegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pricebox {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 38px;
    box-shadow: var(--shadow);
}

.pricebig {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    color: var(--olive);
    margin: 8px 0;
}

.pricebox ul {
    padding-left: 18px;
    color: #555850;
}

.note {
    font-size: 12px;
    color: #6b6d66;
}

.examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.example {
    border-top: 2px solid var(--olive);
    padding: 18px 3px;
}

.example strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
}

.example span {
    font-size: 12px;
    color: #666860;
}

.estate {
    background: var(--white);
}

.estategrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.check {
    border: 1px solid var(--line);
    padding: 14px;
    background: var(--bone);
    font-size: 13px;
}

.check:before {
    content: "✓";
    color: var(--terra);
    font-weight: 800;
    margin-right: 9px;
}

.quote-card {
    background: var(--olive);
    color: var(--white);
    padding: 48px;
}

.quote-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 38px;
    line-height: 1.05;
    margin: 10px 0 18px;
}

.quote-card p {
    color: rgba(255, 253, 248, .75);
}

.promo {
    background: var(--terra);
    color: var(--white);
}

.promoin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    min-height: 2.25rem;
    padding-block: .35rem;
}

.promo p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .72rem;
    line-height: 1.35;
}

.promo p strong {
    color: var(--white);
    letter-spacing: .04em;
}

.promo-link {
    flex: 0 0 auto;
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.formsec {
    background: var(--bone);
}

.formgrid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.form {
    background: var(--white);
    padding: 35px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    margin-bottom: 7px;
    color: #5a5d57;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bone);
    padding: 13px;
    border-radius: 3px;
    color: var(--char);
    outline: none;
}

.field input[type="file"] {
    padding: .75rem;
    cursor: pointer;
}

.field-help,
.file-count {
    margin: .45rem 0 0;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.45;
}

.file-count:empty {
    display: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--terra);
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.submit {
    width: 100%;
    border: 0;
    background: var(--olive);
    color: var(--white);
    padding: 15px;
    font-weight: 800;
    border-radius: 3px;
    cursor: pointer;
}

.success {
    display: none;
    margin-top: 15px;
    padding: 14px;
    background: #e3e9df;
    color: var(--olive);
    font-size: 13px;
}

.faq {
    background: var(--white);
}

.faqitem {
    border-top: 1px solid var(--line);
}

.faqq {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 1.375rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1rem + .35vw, 1.45rem);
    color: var(--char);
    cursor: pointer;
    transition: color var(--motion-fast) ease;
}

.faqq:hover {
    color: var(--terra);
}

.faqq:focus-visible {
    outline: 0.125rem solid var(--terra);
    outline-offset: 0.25rem;
}

.faqa {
    height: 0;
    overflow: hidden;
    padding-inline-end: 3.125rem;
    padding-block: 0;
    color: #5b5e58;
    max-width: 48rem;
    opacity: 0;
    transition:
        height var(--motion-smooth) var(--ease-premium),
        opacity 360ms ease;
}

.faqitem.open .faqa {
    padding-block-end: 1.5rem;
    opacity: 1;
}

.faqitem.open .plus {
    transform: rotate(45deg);
}

.plus {
    flex: 0 0 auto;
    font-family: var(--sans);
    font-size: clamp(1.5rem, 1.25rem + .4vw, 1.8rem);
    font-weight: 300;
    line-height: 1;
    transition: transform var(--motion-smooth) var(--ease-premium);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .faqq,
    .faqa,
    .plus,
    .btn,
    .card {
        transition: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition:
        opacity 950ms var(--ease-premium),
        transform 950ms var(--ease-premium);
}

.reveal-visible {
    opacity: 1;
    transform: none;
}

.scroll-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 30;

    width: 2.75rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 248, .92);
    color: var(--olive);
    box-shadow: 0 .6rem 1.8rem rgba(37, 39, 36, .10);
    backdrop-filter: blur(.75rem);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(.5rem);

    transition:
        opacity var(--motion-fast) ease,
        transform var(--motion-fast) var(--ease-premium),
        visibility var(--motion-fast) ease,
        background-color var(--motion-fast) ease;
}

.scroll-top:hover {
    background: var(--white);
    transform: translateY(-.12rem);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .scroll-top {
        transition: none;
        transform: none;
    }
}

@media (max-width: 42rem) {
    .scroll-top {
        right: 1rem;
        bottom: 1rem;
    }
}

.footer {
    background: var(--char);
    color: var(--white);
    padding: 2.0625rem 0 1.5625rem;
}

.footgrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 60px;
}

.footer .brandname {
    font-size: 30px;
}

.footer p {
    color: rgba(255, 255, 255, .62);
    max-width: 400px;
    margin-top: 0;

}

.footer h4 {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 10px;
    color: var(--sand);
    margin: 5px 0 15px;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin: 7px 0;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 20px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    display: flex;
    justify-content: space-between;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-privacy {
    margin: .85rem 0 0;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.55;
}

.form-privacy a {
    color: var(--terra);
    text-decoration: underline;
    text-underline-offset: .18em;
}

@media (max-width: 850px) {
    .links,
    .navcta {
        display: none;
    }
    .menu {
        display: block;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        padding: 80px 28px;
    }
    .hero-art {
        min-height: 470px;
    }
    .intro,
    .pricegrid,
    .estategrid,
    .formgrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .split {
        grid-template-columns: 1fr;
    }
    .split-copy {
        padding: 75px 28px;
    }
    .split-art {
        min-height: 390px;
    }
    .examples {
        grid-template-columns: 1fr 1fr;
    }
    .promoin {
        display: flex;
    }
    .footgrid {
        grid-template-columns: 1fr 1fr;
    }
    .row {
        grid-template-columns: 1fr;
    }
    .checklist {
        grid-template-columns: 1fr;
    }

    .split-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: Cover;
    object-position: center;
    z-index: 0;
    }
}

@media (max-width: 520px) {
    .wrap {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 55px;
    }
    .hero-art {
        min-height: 390px;
    }
    .hero-card {
        left: 18px;
        bottom: 18px;
    }
    .section {
        padding: 75px 0;
    }
    .examples {
        grid-template-columns: 1fr 1fr;
    }
    .footgrid {
        grid-template-columns: 1fr;
    }
    .copyright {
        display: block;
    }
    .copyright span {
        display: block;
        margin-top: 8px;
    }
}

/* ===== Returning customer portal band ===== */

.customer-portal-band .bandin {
    gap: 28px;
}

.portal-copy {
    display: flex;
    align-items: baseline;
    gap: 18px;
    min-width: 0;
}

.portal-copy strong {
    white-space: nowrap;
}

.portal-copy span {
    opacity: .72;
    font-size: 13px;
}

.portal-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 253, 248, .42);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--white);
    font-size: 12px;
    font-weight: 750;
    transition:
        background-color 260ms ease,
        color 260ms ease,
        transform 260ms var(--ease-premium);
}

.portal-btn:hover {
    background: var(--white);
    color: var(--olive);
    transform: translateY(-.08rem);
}

@media (max-width: 760px) {
    .customer-portal-band .bandin,
    .portal-copy {
        align-items: flex-start;
    }

    .customer-portal-band .bandin {
        gap: 16px;
    }

    .portal-copy {
        display: grid;
        gap: 2px;
    }

    .portal-btn {
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .customer-portal-band .bandin {
        display: grid;
    }

    .portal-btn {
        width: 100%;
    }
}
