
        :root {
            --cream: #fbf7f3;
            --blush: #efd9d4;
            --rose: #c88f89;
            --sage: #94a08f;
            --sage-dark: #7c8877;
            --ink: #272523;
            --muted: #6f6a66;
            --line: #eaded7;
            --white: #fff;
            --shadow: 0 20px 60px rgba(66, 48, 40, .1)
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            color: var(--ink);
            background: #fff;
            font-family: Outfit, Arial, sans-serif
        }

        img {
            display: block;
            max-width: 100%
        }

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

        button {
            font: inherit
        }

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

        h1,
        h2,
        h3,
        h4 {
            font-family: "Cormorant Garamond", serif
        }

        .announcement {
            position: relative;
            min-height: 42px;
            overflow: hidden;
            color: #fff;
            background: linear-gradient(110deg, #687363 0%, var(--sage-dark) 46%, #8b7772 100%);
            font-size: 12px;
            letter-spacing: .035em;
            isolation: isolate
        }

        .announcement::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, .1) 48%, transparent 78%);
            animation: announcementSheen 8s ease-in-out infinite
        }

        .announcement-inner {
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            text-align: center
        }

        .announcement-detail {
            color: rgba(255, 255, 255, .72)
        }

        .announcement-separator {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #f0cbc5
        }

        @keyframes announcementSheen {
            0%, 62% { transform: translateX(-100%) }
            88%, 100% { transform: translateX(100%) }
        }

        .header {
            position: absolute;
            top: 42px;
            right: 0;
            left: 0;
            z-index: 20
        }

        .nav {
            height: 92px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 30px
        }

        .brand {
            grid-column: 1;
            justify-self: start;
            display: inline-flex;
            align-items: center;
            width: 74px;
            height: 74px;
            padding: 4px;
            border: 1px solid rgba(200, 143, 137, .18);
            border-radius: 17px;
            background: #fff;
            box-shadow: 0 7px 20px rgba(69, 47, 38, .08);
            transition: transform .25s ease, box-shadow .25s ease
        }

        .brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(69, 47, 38, .12)
        }

        .brand img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 13px
        }

        .menu {
            grid-column: 2;
            justify-self: center;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px;
            border: 1px solid rgba(200, 143, 137, .14);
            border-radius: 999px;
            background: rgba(255, 255, 255, .58);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
            font-size: 13px
        }

        .menu a {
            padding: 10px 14px;
            border-radius: 999px;
            color: #514b47;
            transition: color .2s ease, background .2s ease
        }

        .menu a:hover,
        .menu a.active {
            color: #8f5f5a;
            background: #f8ece6
        }

        .nav-actions {
            grid-column: 3;
            justify-self: end;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px;
            border: 1px solid rgba(200, 143, 137, .14);
            border-radius: 999px;
            background: rgba(255, 255, 255, .62);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px)
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #413c38;
            background: transparent;
            cursor: pointer;
            transition: color .2s ease, background .2s ease, transform .2s ease
        }

        .icon-btn svg {
            width: 19px;
            height: 19px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .icon-btn:hover {
            color: #8f5f5a;
            background: #f8ece6;
            transform: translateY(-1px)
        }

        .mobile-toggle {
            display: none
        }

        .brand:focus-visible,
        .menu a:focus-visible,
        .icon-btn:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--rose);
            outline-offset: 3px
        }

        .hero {
            position: relative;
            min-height: 470px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-image: linear-gradient(90deg, rgba(251, 247, 243, .98) 0%, rgba(251, 247, 243, .89) 36%, rgba(251, 247, 243, .2) 63%, rgba(251, 247, 243, .02) 100%), var(--ppp-background-image,url('pageHero.png'));
            background-size: cover;
            background-position: center
        }

        .hero::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 1px;
            background: rgba(200, 143, 137, .16)
        }

        .hero-copy {
            position: relative;
            z-index: 1;
            max-width: 560px;
            padding: 128px 0 46px
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 18px;
            color: #756d68;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase
        }

        .breadcrumb a:hover {
            color: #9c6863
        }

        .breadcrumb span {
            color: var(--rose)
        }

        .eyebrow {
            margin-bottom: 14px;
            color: #706963;
            font-size: 12px;
            letter-spacing: .26em;
            text-transform: uppercase
        }

        .hero h1 {
            margin: 0 0 15px;
            font-size: clamp(52px, 5.5vw, 68px);
            font-weight: 600;
            line-height: .92
        }

        .hero p {
            max-width: 450px;
            margin: 0;
            color: #514c48;
            font-size: 16px;
            line-height: 1.65
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 46px;
            padding: 14px 23px;
            border: 0;
            border-radius: 999px;
            color: #fff;
            background: var(--rose);
            box-shadow: 0 10px 24px rgba(200, 143, 137, .22);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease
        }

        .btn:hover {
            transform: translateY(-2px);
            background: #b87e78;
            box-shadow: 0 14px 29px rgba(200, 143, 137, .28)
        }

        .btn.sage {
            background: var(--sage-dark);
            box-shadow: 0 10px 24px rgba(124, 136, 119, .22)
        }

        .story-section {
            padding: 94px 0;
            background: #fff
        }

        .story-grid {
            display: grid;
            grid-template-columns: .94fr 1.06fr;
            gap: clamp(50px, 7vw, 92px);
            align-items: center
        }

        .story-visual {
            position: relative;
            min-height: 585px;
            padding: 0 52px 54px 0
        }

        .story-visual::before {
            content: '';
            position: absolute;
            top: 40px;
            right: 4px;
            bottom: 4px;
            left: 40px;
            border-radius: 28px;
            background: linear-gradient(145deg, #f6e5df, #eef0eb)
        }

        .story-main-image {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 530px;
            object-fit: cover;
            border: 8px solid #fff;
            border-radius: 26px;
            box-shadow: var(--shadow)
        }

        .story-note {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 2;
            width: 196px;
            padding: 25px 22px;
            border: 1px solid rgba(200, 143, 137, .24);
            border-radius: 20px;
            color: #5d5652;
            background: rgba(255, 252, 249, .96);
            box-shadow: 0 16px 38px rgba(66, 48, 40, .13);
            font-family: "Cormorant Garamond", serif;
            font-size: 22px;
            font-style: italic;
            line-height: 1.2
        }

        .story-note span {
            display: block;
            margin-top: 12px;
            color: var(--rose);
            font-family: Allura, cursive;
            font-size: 24px;
            font-style: normal
        }

        .story-copy h2,
        .section-head h2,
        .closing-copy h2 {
            margin: 8px 0 22px;
            font-size: clamp(46px, 5vw, 58px);
            font-weight: 600;
            line-height: .98
        }

        .story-copy > p {
            margin: 0 0 16px;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8
        }

        .signature {
            margin: 26px 0 30px;
            color: #817770;
            font-family: Allura, cursive;
            font-size: 34px;
            transform: rotate(-2deg)
        }

        .values-section {
            position: relative;
            overflow: hidden;
            padding: 88px 0 96px;
            background:
                radial-gradient(circle at 5% 8%, rgba(200, 143, 137, .12), transparent 25%),
                radial-gradient(circle at 94% 88%, rgba(148, 160, 143, .12), transparent 28%),
                #fffaf7
        }

        .section-head {
            max-width: 720px;
            margin: 0 auto 44px;
            text-align: center
        }

        .section-head p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px
        }

        .value-card {
            position: relative;
            min-height: 310px;
            padding: 37px 32px 34px;
            overflow: hidden;
            border: 1px solid rgba(200, 143, 137, .2);
            border-radius: 24px;
            background: rgba(255, 255, 255, .88);
            box-shadow: 0 15px 40px rgba(66, 48, 40, .07);
            transition: transform .35s ease, box-shadow .35s ease
        }

        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 23px 50px rgba(66, 48, 40, .12)
        }

        .value-number {
            display: inline-grid;
            width: 48px;
            height: 48px;
            place-items: center;
            margin-bottom: 46px;
            border: 1px solid rgba(200, 143, 137, .22);
            border-radius: 50%;
            color: #a36d68;
            background: #fbf1ed;
            font-family: "Cormorant Garamond", serif;
            font-size: 20px;
            font-style: italic
        }

        .value-card h3 {
            margin: 0 0 12px;
            font-size: 32px;
            font-weight: 600;
            line-height: 1
        }

        .value-card p {
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7
        }

        .closing-section {
            padding: 94px 0;
            background: #fffaf7
        }

        .closing-card {
            display: grid;
            grid-template-columns: 1.03fr .97fr;
            min-height: 470px;
            overflow: hidden;
            border: 1px solid rgba(200, 143, 137, .2);
            border-radius: 28px;
            background: #fff;
            box-shadow: var(--shadow)
        }

        .closing-image {
            min-height: 470px
        }

        .closing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .closing-copy {
            padding: 58px clamp(38px, 5vw, 68px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(145deg, #fff 0%, #f9ece7 100%)
        }

        .closing-copy p {
            margin: 0 0 28px;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.75
        }

        .closing-copy .btn {
            align-self: flex-start
        }

        .footer {
            color: #f8f3ef;
            background: linear-gradient(135deg, #343631 0%, #42423c 48%, #493b38 100%);
            padding: 68px 0 24px
        }

        .footer-main {
            display: grid;
            grid-template-columns: .84fr 1.16fr;
            gap: 72px
        }

        .footer-brand {
            padding-right: 30px
        }

        .footer-logo {
            display: block;
            width: 116px;
            height: 116px;
            padding: 7px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 20px;
            background: rgba(255, 255, 255, .94)
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 14px
        }

        .footer-brand h3 {
            margin: 25px 0 9px;
            font-size: 28px
        }

        .footer-brand p {
            max-width: 360px;
            margin: 0;
            color: #cdc5bf;
            font-size: 14px;
            line-height: 1.7
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            padding: 16px 0
        }

        .footer-column h4 {
            margin: 0 0 18px;
            color: #fff;
            font-family: Outfit, Arial, sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase
        }

        .footer-column a {
            display: block;
            width: fit-content;
            margin: 11px 0;
            color: #cec6c0;
            font-size: 14px;
            transition: color .2s ease, transform .2s ease
        }

        .footer-column a:hover {
            color: #fff;
            transform: translateX(3px)
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .14);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            color: #bfb7b1;
            font-size: 12px
        }

        .footer-legal {
            display: flex;
            gap: 20px
        }

        @media (max-width: 900px) {
            .menu {
                position: absolute;
                top: 92px;
                right: 20px;
                left: 20px;
                display: none;
                padding: 16px 22px 20px;
                border-radius: 0 0 20px 20px;
                flex-direction: column;
                align-items: stretch;
                background: rgba(255, 252, 249, .98);
                box-shadow: var(--shadow)
            }

            .menu.open {
                display: flex
            }

            .menu a {
                width: 100%;
                padding: 12px 14px
            }

            .mobile-toggle {
                display: grid
            }

            .hero {
                background-position: 62% center
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 54px
            }

            .story-visual {
                width: min(620px, 100%);
                margin: auto
            }

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

            .value-card {
                min-height: 0
            }

            .value-number {
                margin-bottom: 28px
            }

            .closing-card {
                grid-template-columns: 1fr
            }

            .closing-image {
                min-height: 400px
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 38px
            }
        }

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

            .announcement-inner {
                padding: 0 10px;
                font-size: 11px
            }

            .announcement-detail,
            .announcement-separator {
                display: none
            }

            .nav {
                height: 76px;
                grid-template-columns: auto minmax(0, 1fr) auto;
                gap: 10px
            }

            .brand {
                width: 54px;
                height: 54px;
                border-radius: 14px
            }

            .brand img {
                border-radius: 10px
            }

            .nav-actions {
                gap: 3px;
                padding: 3px
            }

            .icon-btn {
                width: 34px;
                height: 34px
            }

            .icon-btn svg {
                width: 18px;
                height: 18px
            }

            .menu {
                top: 76px;
                right: 14px;
                left: 14px
            }

            .hero {
                min-height: 520px;
                align-items: flex-start;
                background-image: linear-gradient(180deg, rgba(251, 247, 243, .97) 0%, rgba(251, 247, 243, .91) 49%, rgba(251, 247, 243, .14) 100%), var(--ppp-background-image,url('pageHero.png'));
                background-size: 100% 100%, auto 46%;
                background-position: center, 68% bottom;
                background-repeat: no-repeat
            }

            .hero-copy {
                max-width: 100%;
                padding: 106px 0 205px
            }

            .breadcrumb {
                margin-bottom: 20px
            }

            .hero h1 {
                font-size: clamp(44px, 13vw, 54px)
            }

            .hero p {
                font-size: 15px;
                line-height: 1.65
            }

            .story-section,
            .closing-section {
                padding: 62px 0
            }

            .story-visual {
                min-height: 410px;
                padding: 0 28px 42px 0
            }

            .story-main-image {
                height: 390px;
                border-width: 5px;
                border-radius: 20px
            }

            .story-visual::before {
                top: 28px;
                left: 24px;
                border-radius: 22px
            }

            .story-note {
                width: 166px;
                padding: 19px 17px;
                border-radius: 16px;
                font-size: 19px
            }

            .story-copy h2,
            .section-head h2,
            .closing-copy h2 {
                font-size: 42px
            }

            .story-copy > p,
            .section-head p,
            .closing-copy p {
                font-size: 15px
            }

            .values-section {
                padding: 64px 0 68px
            }

            .section-head {
                margin-bottom: 32px
            }

            .value-card {
                padding: 30px 25px;
                border-radius: 19px
            }

            .closing-card {
                border-radius: 20px
            }

            .closing-copy {
                padding: 43px 25px 47px
            }

            .closing-image {
                min-height: 300px
            }

            .footer {
                padding-top: 52px
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px 20px
            }

            .footer-column:last-child {
                grid-column: 1 / -1
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px
            }
        }

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

            .announcement::before {
                animation: none
            }

            .brand,
            .icon-btn,
            .btn,
            .value-card {
                transition: none
            }

            .brand:hover,
            .icon-btn:hover,
            .btn:hover,
            .value-card:hover {
                transform: none
            }
        }
    