:root {
    --cream: #FFF8EC;
    --ivory: #FFFCF5;
    --linen: #F6EAD8;
    --almond: #EAD7BE;
    --champagne: #D8B579;
    --gold: #B98A4A;
    --walnut: #362416;
    --espresso: #21150D;
    --clay: #8B5E3C;
    --olive: #7F8F64;
    --sage: #AEBE9B;
    --rose: #E8BFAF;
    --muted: #7D6A58;
    --border: rgba(54, 36, 22, 0.12);
    --white: #FFFFFF;
    --shadow: 0 28px 80px rgba(76, 48, 25, 0.14);
    --card-shadow: 0 18px 48px rgba(76, 48, 25, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--walnut);
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-main {
    min-height: 60vh;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    padding: 0 18px 14px;

    background:
        radial-gradient(circle at 12% 0%, rgba(216, 181, 121, 0.20), transparent 34%),
        rgba(255, 248, 236, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 252, 245, 0.94);
}

.estate-notice {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 4px 8px;
}

.estate-notice-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.estate-notice span {
    color: rgba(54, 36, 22, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28px;
}

.header-shell {
    position: relative;
    overflow: hidden;

    max-width: 1180px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 14px 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;

    border-radius: 999px;

    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 236, 0.80)),
        var(--ivory);

    border: 1px solid rgba(54, 36, 22, 0.10);

    box-shadow:
        0 20px 55px rgba(76, 48, 25, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transition:
        min-height 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.header-shell::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    top: -155px;

    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 181, 121, 0.30), transparent 68%);

    animation: headerGlowFloat 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.header-shell::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: 18%;
    bottom: -145px;

    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 190, 155, 0.28), transparent 68%);

    animation: headerGlowFloatTwo 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.site-header.is-scrolled .header-shell {
    min-height: 66px;
    box-shadow:
        0 18px 48px rgba(76, 48, 25, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Logo */

.site-logo {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;
}

.site-logo a {
    display: inline-flex;
    align-items: baseline;

    color: var(--espresso);
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.4px;
}

.site-logo a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    margin-bottom: 5px;

    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(185, 138, 74, 0.12);
}

.custom-logo {
    max-height: 46px;
    width: auto;
}

/* Navigation */

.main-navigation {
    position: relative;
    z-index: 2;

    flex: 1;

    display: flex;
    justify-content: center;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 7px;

    display: flex;
    align-items: center;
    gap: 4px;

    border-radius: 999px;
    background: rgba(246, 234, 216, 0.66);
    border: 1px solid rgba(54, 36, 22, 0.08);
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    position: relative;

    min-height: 38px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: rgba(54, 36, 22, 0.66);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.1px;

    transition:
        color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--espresso);
    background: rgba(255, 252, 245, 0.86);
    box-shadow: 0 10px 24px rgba(76, 48, 25, 0.08);
    transform: translateY(-1px);
}

/* Header Actions */

.header-actions {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 10px;
}

.header-link {
    min-height: 44px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(54, 36, 22, 0.10);

    color: var(--walnut);
    font-size: 13px;
    font-weight: 850;

    transition:
        transform 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

.header-link:hover {
    transform: translateY(-2px);
    background: var(--ivory);
    box-shadow: 0 14px 28px rgba(76, 48, 25, 0.10);
}

.header-cta {
    position: relative;

    min-height: 46px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: var(--espresso);
    color: var(--cream);

    font-size: 13.5px;
    font-weight: 900;
    white-space: nowrap;

    box-shadow:
        0 16px 34px rgba(33, 21, 13, 0.18),
        7px 7px 0 rgba(216, 181, 121, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.header-cta:hover {
    transform: translate(-2px, -2px);
    background: var(--walnut);
    box-shadow:
        0 20px 42px rgba(33, 21, 13, 0.22),
        10px 10px 0 rgba(216, 181, 121, 0.24);
}

/* Mobile Toggle */

.mobile-menu-toggle {
    position: relative;
    z-index: 3;

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(54, 36, 22, 0.12);
    border-radius: 999px;

    background: rgba(255, 252, 245, 0.82);
    box-shadow: 0 12px 28px rgba(76, 48, 25, 0.08);

    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;

    border-radius: 999px;
    background: var(--espresso);

    transition: all 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Placeholder Home */

.placeholder-home {
    position: relative;
    overflow: hidden;

    min-height: 68vh;
    padding: 128px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 16% 12%, rgba(232, 191, 175, 0.54), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(174, 190, 155, 0.36), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(216, 181, 121, 0.28), transparent 34%),
        linear-gradient(180deg, var(--cream) 0%, var(--linen) 100%);
}

.placeholder-home::before {
    content: "";
    position: absolute;
    inset: 24px;

    border-radius: 42px;
    border: 1px solid rgba(54, 36, 22, 0.08);

    pointer-events: none;
}

.placeholder-home::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -220px;
    bottom: -240px;

    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 252, 245, 0.70), transparent 70%);

    animation: paperOrb 11s ease-in-out infinite alternate;
    pointer-events: none;
}

.placeholder-inner {
    position: relative;
    z-index: 2;

    max-width: 880px;
    text-align: center;
}

.placeholder-inner > span {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 10px 15px;

    border-radius: 999px;

    background: rgba(255, 252, 245, 0.72);
    border: 1px solid rgba(54, 36, 22, 0.10);

    color: var(--gold);
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    box-shadow: 0 16px 36px rgba(76, 48, 25, 0.08);
}

.placeholder-inner h1 {
    margin: 0;

    color: var(--espresso);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 8vw, 104px);
    line-height: 0.88;
    font-weight: 700;
    letter-spacing: -3.4px;
}

.placeholder-inner p {
    max-width: 660px;
    margin: 26px auto 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
}

.placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;

    margin-top: 36px;
}

.placeholder-actions a {
    min-height: 58px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 900;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.placeholder-actions a:first-child {
    background: var(--espresso);
    color: var(--cream);

    box-shadow:
        0 18px 42px rgba(33, 21, 13, 0.18),
        8px 8px 0 rgba(216, 181, 121, 0.22);
}

.placeholder-actions a:first-child:hover {
    transform: translate(-3px, -3px);
    box-shadow:
        0 24px 52px rgba(33, 21, 13, 0.22),
        12px 12px 0 rgba(216, 181, 121, 0.26);
}

.placeholder-actions a:last-child {
    background: rgba(255, 252, 245, 0.76);
    border: 1px solid rgba(54, 36, 22, 0.10);
    color: var(--espresso);

    box-shadow:
        0 18px 42px rgba(76, 48, 25, 0.08),
        8px 8px 0 rgba(174, 190, 155, 0.18);
}

.placeholder-actions a:last-child:hover {
    transform: translate(-3px, -3px);
    background: var(--ivory);
    box-shadow:
        0 24px 52px rgba(76, 48, 25, 0.11),
        12px 12px 0 rgba(174, 190, 155, 0.24);
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;

    padding: 104px 20px 30px;

    background:
        radial-gradient(circle at top left, rgba(232, 191, 175, 0.50), transparent 34%),
        radial-gradient(circle at top right, rgba(174, 190, 155, 0.30), transparent 32%),
        linear-gradient(180deg, var(--linen) 0%, var(--cream) 100%);
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-orb-one {
    width: 440px;
    height: 440px;
    left: -190px;
    top: 80px;

    background: radial-gradient(circle, rgba(255, 252, 245, 0.72), transparent 68%);
    animation: footerOrbOne 10s ease-in-out infinite alternate;
}

.footer-orb-two {
    width: 360px;
    height: 360px;
    right: -150px;
    bottom: -120px;

    background: radial-gradient(circle, rgba(216, 181, 121, 0.25), transparent 68%);
    animation: footerOrbTwo 12s ease-in-out infinite alternate;
}

.footer-cta-card,
.footer-main,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-cta-card {
    position: relative;
    overflow: hidden;

    max-width: 1180px;
    margin: 0 auto 46px;
    padding: 42px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;

    border-radius: 34px;

    background:
        linear-gradient(135deg, rgba(255, 252, 245, 0.92), rgba(255, 248, 236, 0.82)),
        var(--ivory);

    border: 1px solid rgba(54, 36, 22, 0.10);

    box-shadow:
        0 30px 86px rgba(76, 48, 25, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.footer-cta-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -150px;
    top: -170px;

    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 181, 121, 0.24), transparent 68%);
    pointer-events: none;
}

.footer-cta-card::after {
    content: "";
    position: absolute;
    inset: 14px;

    border-radius: 26px;
    border: 1px solid rgba(54, 36, 22, 0.07);

    pointer-events: none;
}

.footer-cta-copy {
    position: relative;
    z-index: 2;
}

.footer-cta-card span {
    display: inline-flex;
    margin-bottom: 12px;

    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.footer-cta-card h2 {
    max-width: 780px;
    margin: 0;

    color: var(--espresso);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -2px;
}

.footer-cta-card p {
    max-width: 660px;
    margin: 18px 0 0;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

.footer-cta-card a {
    position: relative;
    z-index: 2;

    min-height: 56px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: var(--espresso);
    color: var(--cream);

    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;

    box-shadow:
        0 18px 42px rgba(33, 21, 13, 0.18),
        8px 8px 0 rgba(216, 181, 121, 0.22);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta-card a:hover {
    transform: translate(-3px, -3px);
    box-shadow:
        0 24px 52px rgba(33, 21, 13, 0.22),
        12px 12px 0 rgba(216, 181, 121, 0.26);
}

.footer-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 0 36px;

    display: grid;
    grid-template-columns: 1.25fr 0.65fr 0.85fr 0.95fr;
    gap: 36px;

    border-top: 1px solid rgba(54, 36, 22, 0.10);
    border-bottom: 1px solid rgba(54, 36, 22, 0.10);
}

.footer-brand h3 {
    margin: 0 0 16px;

    color: var(--espresso);
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.footer-brand h3::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    margin-bottom: 6px;

    display: inline-block;

    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(185, 138, 74, 0.12);
}

.footer-brand p,
.footer-column span,
.footer-column a,
.footer-note p {
    color: rgba(54, 36, 22, 0.66);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-column h4 {
    margin: 0 0 10px;

    color: var(--espresso);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-note p {
    margin: 0;
}

.footer-bottom {
    max-width: 1180px;
    margin: 24px auto 0;

    color: rgba(54, 36, 22, 0.50);
    font-size: 14px;
    font-weight: 650;
}

/* Basic Page */

.basic-page {
    min-height: 60vh;
    padding: 120px 20px;
    background: var(--cream);
}

.basic-page-inner {
    max-width: 1180px;
    margin: 0 auto;
}

/* Animations */

@keyframes headerGlowFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-36px, 18px) scale(1.06);
    }
}

@keyframes headerGlowFloatTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(44px, -10px) scale(1.08);
    }
}

@keyframes paperOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(70px, -28px) scale(1.08);
    }
}

@keyframes footerOrbOne {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(70px, 34px) scale(1.08);
    }
}

@keyframes footerOrbTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-60px, -28px) scale(1.1);
    }
}

/* Responsive */

@media (max-width: 1080px) {
    .primary-menu {
        gap: 2px;
    }

    .primary-menu a {
        padding: 0 12px;
    }

    .header-link {
        display: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        padding: 10px 14px;
    }

    .estate-notice {
        display: none;
    }

    .header-shell {
        min-height: 68px;
        padding: 0 14px 0 18px;
        border-radius: 26px;
    }

    .main-navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);

        display: flex;
        justify-content: flex-start;

        padding: 14px;

        border-radius: 24px;

        background: rgba(255, 252, 245, 0.98);
        border: 1px solid rgba(54, 36, 22, 0.10);
        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);

        transition: all 0.25s ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-menu {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        padding: 0;

        background: transparent;
        border: 0;
    }

    .primary-menu a {
        width: 100%;
        justify-content: flex-start;

        min-height: 46px;
        padding: 0 16px;

        background: rgba(246, 234, 216, 0.72);
        border: 1px solid rgba(54, 36, 22, 0.08);
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .footer-cta-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .site-logo a {
        font-size: 26px;
        letter-spacing: -0.7px;
    }

    .custom-logo {
        max-height: 38px;
    }

    .placeholder-home {
        padding: 90px 16px;
    }

    .placeholder-home::before {
        inset: 12px;
        border-radius: 26px;
    }

    .placeholder-inner h1 {
        font-size: 48px;
        letter-spacing: -1.4px;
    }

    .placeholder-inner p {
        font-size: 16px;
    }

    .placeholder-actions {
        flex-direction: column;
    }

    .placeholder-actions a {
        width: 100%;
    }

    .footer-cta-card {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .footer-cta-card h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .footer-cta-card a {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}