* {
    box-sizing: border-box
}

:root {
    --ink: #171719;
    --gold: #ad8b65;
    --cream: #faf8f4;
    --soft: #f7f2eb
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ad9171 #eeeae4
}

::-webkit-scrollbar { width: 10px }
::-webkit-scrollbar-track { background: #eeeae4 }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #bda587, #a88b69);
    border: 2px solid #eeeae4;
    border-radius: 999px
}
::-webkit-scrollbar-thumb:hover { background: #987a59 }

body {
    margin: 0;
    padding-top: 120px;
    color: var(--ink);
    background: var(--cream);
    font-family: "Montserrat", Arial, sans-serif;
    overflow-x: hidden
}

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

.site-header {
    height: 120px;
    padding: 0 34px 0 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    background: rgba(250, 248, 244, .98);
    box-shadow: 0 2px 7px rgba(70, 70, 70, .1);
    position: fixed;
    inset: 0 0 auto;
    z-index: 20
}

.brand {
    display: flex;
    align-items: center;
    min-width: 360px;
    color: inherit;
    text-decoration: none
}

.brand-mark {
    width: 103px;
    height: 101px;
    object-fit: contain
}

.brand-copy {
    padding-left: 20px;
    text-align: center
}

.brand-copy strong {
    display: block;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 5.1px;
    white-space: nowrap
}

.brand-copy small {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4.3px
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.1vw, 40px);
    flex: 1
}

.navigation a {
    padding: 13px 0 9px;
    color: var(--ink);
    border-bottom: 1px solid transparent;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .55px;
    transition: .25s
}

.navigation a:hover,
.navigation a.active {
    color: #846b50;
    border-color: #a88c6d;
    transform: translateY(-2px)
}

.navigation .quote-button {
    padding: 20px 31px;
    color: white;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #aa8c6d, #b99c7b);
    letter-spacing: 1.7px
}

.navigation .quote-button:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 2px 3px 5px -3px #737373
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 10px
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 5px;
    background: var(--ink)
}

.about-hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(115deg, #faf8f4 50%, #f5efe7)
}

.hero-rings {
    position: absolute;
    width: 760px;
    height: 760px;
    right: -225px;
    top: -380px;
    border: 1px solid rgba(173, 139, 101, .16);
    border-radius: 50%;
    box-shadow: -110px 200px 0 70px rgba(173, 139, 101, .055)
}

.hero-copy {
    position: relative;
    padding: 78px 0 72px
}

.hero-copy p {
    max-width: 540px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.85
}

.section-label,
.statement h2,
.center-heading h2 {
    color: #9f754d;
    text-transform: uppercase;
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 2.4px
}

.hero-copy .section-label {
    margin-bottom: 25px
}

.hero-copy h1,
.why-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 63px;
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px
}

.hero-copy h1 em,
.why-copy h2 em {
    color: var(--gold);
    font-style: normal
}

.ornament {
    display: flex;
    align-items: center;
    width: 125px;
    height: 62px;
    color: var(--gold)
}

.ornament span {
    width: 110px;
    height: 1px;
    background: var(--gold)
}

.ornament b {
    font-weight: 400
}

.soft-section {
    background: rgba(238, 229, 218, .34)
}

.split-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px
}

.statement {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 34px;
    align-items: start
}

.statement+.statement {
    border-left: 1px solid rgba(173, 139, 101, .45);
    padding-left: 70px
}

.icon-circle {
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font: 44px Georgia
}

.statement h2 {
    margin: 5px 0 16px
}

.mini-rule,
.value>span {
    display: block;
    width: 43px;
    height: 1px;
    margin-bottom: 23px;
    background: var(--gold);
    position: relative
}

.mini-rule:after,
.value>span:after {
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold)
}

.statement p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8
}

.values-section,
.numbers-section {
    padding: 66px 0 82px
}

.center-heading {
    text-align: center
}

.center-heading h2 {
    margin: 0 0 20px
}

.center-heading .mini-rule {
    margin: 0 auto 50px
}

.values-grid,
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.value {
    text-align: center;
    padding: 5px 34px
}

.value+.value,
.numbers-grid article+article {
    border-left: 1px solid rgba(173, 139, 101, .4)
}

.value-icon {
    height: 70px;
    color: var(--gold);
    font: 58px/1 Georgia
}

.value h3,
.numbers-grid h3 {
    margin: 17px 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px
}

.value>span {
    width: 36px;
    margin: 0 auto 22px
}

.value p,
.numbers-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8
}

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

.why-copy .section-label {
    margin: 0 0 28px
}

.why-copy h2 {
    font-size: 53px
}

.why-copy>p:last-child {
    max-width: 500px;
    margin: 36px 0 0;
    font-size: 15px;
    line-height: 1.8
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(173, 139, 101, .25);
    font-size: 14px
}

.check-list b {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 14px
}

.numbers-grid {
    grid-template-columns: repeat(3, 1fr)
}

.numbers-grid article {
    text-align: center;
    padding: 0 60px
}

.numbers-grid strong {
    color: var(--gold);
    font: 52px "Cormorant Garamond", Georgia, serif
}

.cta-section {
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(100deg, #c7a47c, #a47e55)
}

.cta-inner {
    min-height: 250px;
    display: grid;
    grid-template-columns: 170px 1fr 270px;
    gap: 35px;
    align-items: center
}

.cta-inner img {
    width: 170px;
    opacity: .16;
    filter: brightness(2)
}

.cta-inner h2 {
    margin: 0 0 20px;
    font: 31px/1.1 "Cormorant Garamond", Georgia, serif;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cta-inner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8
}

.cta-inner a {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    color: #9b704c;
    background: white;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.8px;
    transition: .25s
}

.cta-inner a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(76, 51, 28, .2)
}

footer {
    padding: 18px;
    text-align: center;
    color: #9b978f;
    background: #f8f6f2;
    font-size: 12px;
    border-top: 1px solid #e4dfd7
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s
}

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

@media(max-width:1180px) {
    body {
        padding-top: 94px
    }

    .site-header {
        height: 94px;
        padding: 0 26px
    }

    .brand {
        min-width: 0
    }

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

    .brand-copy strong {
        font-size: 18px;
        letter-spacing: 3px
    }

    .brand-copy small {
        font-size: 8px;
        letter-spacing: 3px
    }

    .menu-toggle {
        display: block;
        cursor: pointer
    }

    .navigation {
        display: none;
        position: absolute;
        top: 94px;
        left: 0;
        right: 0;
        max-height: calc(100dvh - 94px);
        padding: 18px 24px 24px;
        flex-direction: column;
        background: #f8f6f2;
        gap: 4px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        overflow-y: auto
    }

    .navigation[data-open="true"] {
        display: flex
    }

    .navigation a {
        width: 100%;
        padding: 12px 0;
        text-align: center
    }

    .navigation .quote-button {
        width: min(100%, 280px);
        margin-top: 8px;
        padding: 16px 22px
    }

    .statement+.statement {
        padding-left: 45px
    }

    .why-grid {
        gap: 65px
    }

    .content {
        width: min(100% - 60px, 1100px)
    }
}

@media(max-width:760px) {
    body {
        padding-top: 76px
    }

    .site-header {
        height: 76px;
        padding: 0 15px
    }

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

    .brand-copy {
        padding-left: 8px
    }

    .brand-copy strong {
        font-size: 14px;
        letter-spacing: 2px
    }

    .brand-copy small {
        margin-top: 4px;
        font-size: 7px;
        letter-spacing: 2px
    }

    .navigation {
        top: 76px;
        max-height: calc(100dvh - 76px)
    }

    .content {
        width: calc(100% - 42px)
    }

    .about-hero {
        min-height: auto
    }

    .hero-copy {
        padding: 70px 0
    }

    .hero-copy h1 {
        font-size: 45px
    }

    .hero-copy p {
        font-size: 15px
    }

    .split-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 58px 0
    }

    .statement {
        grid-template-columns: 78px 1fr;
        gap: 20px
    }

    .statement+.statement {
        padding-left: 0;
        border-left: 0
    }

    .icon-circle {
        width: 72px;
        height: 72px;
        font-size: 32px
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 0
    }

    .value:nth-child(3) {
        border-left: 0
    }

    .value {
        padding: 0 20px
    }

    .why-copy h2 {
        font-size: 43px
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .numbers-grid article+article {
        border-left: 0;
        border-top: 1px solid rgba(173, 139, 101, .4);
        padding-top: 34px
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 55px 0
    }

    .cta-inner img {
        display: none
    }

    .cta-inner a {
        width: min(100%, 310px);
        margin: auto
    }

    .center-heading .mini-rule {
        margin-bottom: 38px
    }
}

@media(max-width:450px) {
    .brand-copy strong {
        font-size: 12px;
        letter-spacing: 1.5px
    }

    .brand-copy small {
        font-size: 6px;
        letter-spacing: 1.5px
    }

    .hero-copy h1 {
        font-size: 38px
    }

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

    .value+.value {
        border-left: 0;
        border-top: 1px solid rgba(173, 139, 101, .35);
        padding-top: 38px
    }

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

    .numbers-grid article {
        padding-inline: 15px
    }

    .check-list li {
        align-items: flex-start;
        gap: 15px
    }

    .check-list b {
        flex: 0 0 28px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }

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