:root {
    --green: #073d35;
    --deep: #032923;
    --green2: #0b594c;
    --gold: #caa75b;
    --gold2: #ead99f;
    --ivory: #fbf8ef;
    --sand: #efe7d3;
    --ink: #182521;
    --muted: #66736f
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font: 15px/1.75 Manrope, Arial, sans-serif
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

h1,
h2,
h3,
h4 {
    font-family: Cinzel, Georgia, serif;
    line-height: 1.2
}

h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 16px 0
}

.announcement {
    background: var(--deep);
    color: #e7ddc3;
    font-size: 12px;
    border-bottom: 1px solid #caa75b55
}

.announcement .container {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: .3px
}

.announcement a {
    margin-left: 24px;
    font-weight: 700
}

.top-wa {
    color: var(--gold2)
}

.site-header {
    height: 90px;
    background: #fffdf8;
    box-shadow: 0 6px 30px #062a2311;
    position: sticky;
    top: 0;
    z-index: 50
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

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

.brand img {
    max-width: 270px;
    max-height: 70px
}

.brand-icon {
    width: 49px;
    height: 49px;
    border: 1px solid var(--gold);
    border-radius: 50% 50% 50% 8px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--gold2);
    font-size: 23px;
    transform: rotate(-8deg)
}

.brand strong {
    font: 700 20px Cinzel;
    color: var(--deep)
}

.brand small {
    display: block;
    font: 600 9px Manrope;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #85744d;
    margin-top: 5px
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 25px
}

.site-header nav a {
    font-size: 13px;
    font-weight: 700;
    position: relative
}

.site-header nav a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--gold);
    transition: .25s
}

.site-header nav a:hover:after,
.site-header nav a.active:after {
    right: 0
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 27px
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase
}

.kicker:before {
    content: '✦';
    font-size: 9px
}

.kicker.dark {
    color: #92722f
}

.hero {
    min-height: 710px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(105deg, #032923f7 0%, #07483df0 60%, #0c6552de 100%), var(--hero);
    background-size: cover;
    background-position: center
}

.geometry,
.page-hero .pattern,
.services-section:before,
footer:before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background-image: repeating-linear-gradient(45deg, transparent 0 28px, #e4cf8b 29px 30px), repeating-linear-gradient(-45deg, transparent 0 28px, #e4cf8b 29px 30px);
    background-size: 58px 58px
}

.geometry {
    mask-image: linear-gradient(90deg, transparent 20%, #000)
}

.hero-grid {
    min-height: 710px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2
}

.hero-content {
    padding: 80px 0
}

.hero h1 {
    font-size: clamp(50px, 6vw, 80px);
    margin: 20px 0;
    max-width: 820px
}

.hero-text {
    font-size: 17px;
    max-width: 650px;
    color: #e4ede8
}

.actions {
    display: flex;
    gap: 14px;
    margin: 31px 0
}

.btn {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-weight: 700;
    cursor: pointer
}

.btn.gold {
    background: var(--gold);
    color: #14241f
}

.btn.ghost {
    border-color: #dec781;
    color: #fff
}

.hero-points {
    display: flex;
    gap: 28px;
    color: #d6e6df;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.hero-emblem {
    display: grid;
    place-items: center
}

.hero-emblem>div {
    width: 330px;
    height: 330px;
    border: 1px solid #d9bf7077;
    outline: 1px solid #d9bf7044;
    outline-offset: 15px;
    transform: rotate(45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #022d27aa
}

.hero-emblem * {
    transform: rotate(-45deg)
}

.hero-emblem span {
    font-size: 58px;
    color: var(--gold2)
}

.hero-emblem b {
    font: 600 13px Manrope;
    text-transform: uppercase;
    letter-spacing: 2px
}

.hero-emblem strong {
    font: 700 26px Cinzel;
    color: var(--gold2);
    margin: 7px
}

.hero-emblem small {
    font-size: 11px
}

.section {
    padding: 100px 0
}

.intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
    align-items: center
}

.portrait-frame {
    min-height: 520px;
    position: relative;
    border: 1px solid var(--gold);
    padding: 18px
}

.portrait-frame:before,
.portrait-frame:after {
    content: '✦';
    position: absolute;
    color: var(--gold);
    font-size: 24px;
    background: var(--ivory);
    padding: 5px;
    z-index: 2
}

.portrait-frame:before {
    top: -18px;
    left: -12px
}

.portrait-frame:after {
    right: -12px;
    bottom: -18px
}

.portrait-frame img,
.pattern-card {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover
}

.pattern-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gold2);
    background-color: var(--green);
    background-image: radial-gradient(circle at 50% 50%, transparent 18%, #caa75b22 19% 20%, transparent 21%), linear-gradient(45deg, #ffffff08 25%, transparent 25% 75%, #ffffff08 75%);
    background-size: 72px 72px
}

.pattern-card span {
    font-size: 82px
}

.pattern-card small {
    letter-spacing: 2px;
    text-transform: uppercase
}

.section-copy h2 {
    color: var(--deep)
}

.rich p {
    color: var(--muted);
    margin: 0 0 17px
}

.rich h2,
.rich h3 {
    color: var(--green)
}

.text-link {
    display: inline-flex;
    color: var(--green);
    font-weight: 700;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    margin-top: 15px
}

.services-section {
    position: relative;
    background: var(--green);
    color: #fff;
    overflow: hidden
}

.services-section:before {
    opacity: .06
}

.services-section>.container {
    position: relative
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px
}

.section-heading p {
    color: #cbdcd5
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.service-card {
    background: #fffdf8;
    color: var(--ink);
    padding: 28px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 45px #011c1733;
    transition: .25s
}

.service-card:hover {
    transform: translateY(-7px)
}

.service-card img {
    width: calc(100% + 56px);
    height: 210px;
    object-fit: cover;
    margin: 15px -28px 20px
}

.card-top {
    display: flex;
    justify-content: space-between;
    color: #b28d3f;
    font-size: 12px
}

.service-card h2,
.service-card h3 {
    font-size: 23px;
    color: var(--deep)
}

.service-card p {
    color: var(--muted);
    font-size: 13px
}

.service-card a,
.post-grid a {
    color: var(--green);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .7px
}

.why {
    background: var(--sand)
}

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

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

.benefits>div {
    background: #fff;
    padding: 25px;
    display: flex;
    gap: 17px;
    border-bottom: 2px solid var(--gold)
}

.benefits b {
    color: var(--gold);
    font: 700 18px Cinzel
}

.benefits strong,
.benefits small {
    display: block
}

.benefits strong {
    color: var(--green)
}

.benefits small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 6px
}

.process {
    background: #fff
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    text-align: center
}

.steps>div {
    padding: 35px 25px
}

.steps>div>span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    background: var(--green);
    color: var(--gold2);
    font: 700 21px Cinzel;
    outline: 1px solid var(--gold);
    outline-offset: 5px
}

.steps h3 {
    font-size: 20px
}

.steps p {
    color: var(--muted);
    font-size: 13px
}

.steps>i {
    color: var(--gold)
}

.testimonial {
    padding: 85px 0;
    text-align: center;
    color: #fff;
    background-color: var(--deep);
    background-image: radial-gradient(circle at center, #0b594c 0, transparent 62%), repeating-linear-gradient(45deg, transparent 0 35px, #caa75b0d 36px 37px)
}

.quote-mark {
    font: 80px Georgia;
    color: var(--gold)
}

blockquote {
    max-width: 900px;
    margin: -20px auto 18px;
    font: 600 clamp(23px, 3vw, 36px)/1.5 Cinzel
}

.testimonial p {
    color: var(--gold2)
}

.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 38px
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.post-grid article {
    background: #fff;
    padding: 22px;
    border: 1px solid #e4dac2
}

.post-grid img {
    width: calc(100% + 44px);
    height: 220px;
    object-fit: cover;
    margin: -22px -22px 20px
}

.post-grid small {
    color: #9d7f3d;
    text-transform: uppercase
}

.post-grid h2,
.post-grid h3 {
    font-size: 23px;
    color: var(--deep)
}

.post-grid p {
    color: var(--muted);
    font-size: 13px
}

.page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background: linear-gradient(120deg, var(--deep), var(--green2));
    padding: 105px 0
}

.page-hero .container {
    position: relative
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 66px);
    margin: 15px
}

.page-hero p {
    color: #d2e2dc
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: #d7c58f;
    font-size: 12px
}

.listing {
    margin-top: 0
}

.listing.service-grid,
.listing.post-grid {
    grid-template-columns: repeat(3, 1fr)
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 55px;
    align-items: start
}

.article {
    background: #fff;
    padding: 42px;
    border: 1px solid #e7deca
}

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 30px
}

.contact-card {
    background: var(--green);
    color: #fff;
    padding: 35px;
    text-align: center;
    position: sticky;
    top: 115px
}

.contact-card>span {
    font-size: 50px;
    color: var(--gold2)
}

.contact-card h3 {
    font-size: 24px
}

.contact-card p {
    color: #c7d8d1
}

.contact-card>a:not(.btn) {
    display: block;
    color: var(--gold2);
    font-weight: 800;
    margin: 15px
}

.contact-card .btn {
    width: 100%
}

.contact-form {
    margin-top: 35px;
    background: var(--sand);
    padding: 28px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.form-grid .full {
    grid-column: 1/-1
}

label {
    font-size: 12px;
    font-weight: 700
}

input,
textarea {
    width: 100%;
    padding: 13px;
    margin-top: 6px;
    border: 1px solid #d3c8ae;
    background: #fff;
    font: inherit
}

.success,
.error {
    padding: 12px
}

.success {
    background: #dff3e5;
    color: #175d33
}

.error {
    background: #f9dfdf;
    color: #8b2525
}

.footer-cta {
    position: relative;
    padding: 65px 0;
    background: var(--gold);
    color: var(--deep)
}

.footer-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-cta .kicker {
    color: #5d491e
}

.footer-cta h2 {
    font-size: 38px;
    margin: 8px 0
}

.footer-cta p {
    margin: 0
}

.footer-cta .ghost {
    border-color: var(--deep);
    color: var(--deep)
}

footer {
    position: relative;
    overflow: hidden;
    background: #021f1b;
    color: #b9cac3;
    padding: 75px 0 0
}

footer:before {
    opacity: .04
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px
}

.footer-brand strong {
    color: #fff
}

.footer-about p {
    max-width: 350px
}

.ornament {
    color: var(--gold);
    letter-spacing: 8px
}

footer h4 {
    color: var(--gold2);
    font-size: 14px
}

footer a {
    display: block;
    margin: 9px 0;
    font-size: 13px
}

.copyright {
    position: relative;
    text-align: center;
    border-top: 1px solid #ffffff14;
    margin-top: 55px;
    padding: 20px;
    font-size: 11px
}

.floating {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 60
}

.floating a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 20px #0004
}

.floating .call {
    background: var(--green2)
}

.floating .wa {
    background: #25d366
}

@media(max-width:960px) {
    .menu {
        display: block
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start
    }

    .site-header nav.open {
        display: flex
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-emblem {
        display: none
    }

    .intro-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .service-grid,
    .listing.service-grid,
    .post-grid,
    .listing.post-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .detail-grid {
        grid-template-columns: 1fr
    }

    .contact-card {
        position: static
    }

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

@media(max-width:650px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .announcement span {
        display: none
    }

    .announcement .container {
        justify-content: center
    }

    .announcement a {
        margin: 0 8px
    }

    .site-header {
        height: 76px
    }

    .brand strong {
        font-size: 16px
    }

    .brand-icon {
        width: 42px;
        height: 42px
    }

    .hero,
    .hero-grid {
        min-height: 650px
    }

    .hero h1 {
        font-size: 45px
    }

    .actions,
    .hero-points {
        flex-direction: column
    }

    .section {
        padding: 70px 0
    }

    .service-grid,
    .listing.service-grid,
    .post-grid,
    .listing.post-grid,
    .benefits,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .form-grid .full {
        grid-column: auto
    }

    .steps {
        grid-template-columns: 1fr
    }

    .steps>i {
        transform: rotate(90deg)
    }

    .portrait-frame {
        min-height: 400px
    }

    .pattern-card {
        min-height: 370px
    }

    .heading-row,
    .footer-cta .container {
        display: block
    }

    .footer-cta .cta-actions {
        margin-top: 25px
    }

    .article {
        padding: 24px
    }

    .page-hero {
        padding: 75px 0
    }
}