
        :root {
            --maroon-950: #004438;
            --maroon-800: #0B5B4C;
            --maroon-700: #116B59;
            --gold-500: #D8B888;
            --gold-300: #E5CCA3;
            --gold-100: #F3E7CE;
            --cream-50: #FBF5E9;
            --ivory: #FFFDF8;
            --ink-900: #241512;
            --ink-600: #5A473F;
            --line: #E4D7BD;                  
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

       
        h1,
        h2,
        h3,
        h4 {
            
            font-weight: 600;  
            margin: 0 0 .5em;
              
            line-height: 1.15;
        }

        .eyebrow {
            
            letter-spacing: .14em;
            text-transform: uppercase;
            font-size: .78rem;
           
            display: flex;
            align-items: center;
            gap: .6em;
            margin-bottom: .9em;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: var(--gold-500);
            display: inline-block;
        }

        a {
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .wrap {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: .55em;
            
            font-size: .95rem;
            letter-spacing: .03em;
            padding: .95em 1.7em;
            border-radius: 2px;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-500), #B8935F);
            color: var(--maroon-950);
            box-shadow: 0 8px 24px -10px rgba(216, 184, 136, .7);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
        }

        .btn-ghost {
            border-color: rgba(255, 253, 248, .5);
            color: var(--ivory);
        }

        .btn-ghost:hover {
            background: rgba(255, 253, 248, .1);
        }

        .btn-outline {
            border-color: var(--maroon-800);
            color: var(--maroon-800);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--maroon-800);
            color: var(--ivory);
        }

        /* ---------- HERO ---------- */
        .hero {
            position: relative;
            background: radial-gradient(120% 100% at 15% 0%, #0B6252 0%, var(--maroon-950) 55%, #00251E 100%);
            color: var(--ivory);
            overflow: hidden;
            padding: 76px 0 64px;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 90% 10%, rgba(216, 184, 136, .16), transparent 45%),
                radial-gradient(circle at 8% 90%, rgba(216, 184, 136, .10), transparent 40%);
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        @media(min-width:960px) {
            .hero-grid {
                grid-template-columns: 1.15fr .85fr;
            }
        }

        .hero .eyebrow {
            color: var(--gold-300);
        }                  

        .hero .eyebrow::before {
            background: var(--gold-300);
        }

        .hero-heading {  
            color: var(--ivory);
            margin: auto !important;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--gold-300);
        }

        .hero p.lede {
            font-size: 1.08rem;
            color: #EADFCB;
            max-width: 52ch;
            margin-bottom: 1.7em;
        }

        .hero p.lede-intro {
            font-size: 1.08rem;
            color: #EADFCB;
            max-width: 52ch;
            margin-bottom: 1em;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 2.2em;
        }

        .hero-note {
            
            font-size: .82rem;
            color: var(--gold-300);
            letter-spacing: .03em;
        }

        /* Signature: dual-clock time bridge */
        .clockcard {
            position: relative;
            background: linear-gradient(180deg, rgba(255, 253, 248, .06), rgba(255, 253, 248, .02));
            border: 1px solid rgba(231, 211, 161, .28);
            border-radius: 4px;
            padding: 28px 24px 24px;
        }

        .clockcard .tag {
            
            font-size: .72rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold-300);
            text-align: center;
            margin-bottom: 18px;
        }

        .clock-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .clock-col {
            text-align: center;
            flex: 1;
        }

        .clock-col .place {
            
            font-size: .78rem;
            letter-spacing: .06em;
            color: #D8C79D;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .clock-col .time {
            
            font-size: 2.1rem;
            font-weight: 600;
            color: var(--ivory);
        }

        .clock-col .daypart {
            font-size: .72rem;
            color: #B7A587;
            margin-top: 2px;
        }

        .clock-link {
            flex: 0 0 auto;
            width: 44px;
            height: 1px;
            position: relative;
            background: repeating-linear-gradient(90deg, var(--gold-500) 0 6px, transparent 6px 11px);
            margin-top: -10px;
        }

        .clockcard .foot {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px dashed rgba(231, 211, 161, .25);
            text-align: center;
            font-size: .83rem;
            color: #D8C79D;
        }

        /* ---------- SECTION SHELLS ---------- */
        section {
            padding: 76px 0;
        }

        .section-head {
            
            margin-bottom: 44px;
        }

        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-head p {
           
            
        }                                             

        .divider {
            width: 56px;
            height: 2px;
            background: var(--gold-500);
            margin: 0 auto 18px;
        }

        .band-dark {
            background: var(--maroon-950);
            color: var(--ivory);
        }

        .band-dark h2 {
            color: var(--ivory);
        }

        .band-dark .eyebrow {
            color: var(--gold-300);
        }

        .band-dark .eyebrow::before {
            background: var(--gold-300);
        }

        .band-dark .section-head p {
            color: #D9CBB4;
        }

        /* ---------- PROBLEM CARDS ---------- */
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
        }

        @media(min-width:720px) {
            .problem-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .problem-card {
            background: var(--ivory);
            padding: 30px 28px;
        }

        .problem-card .mark {
            
            font-size: 1.5rem;
            color: var(--gold-500);
            font-style: italic;
            display: block;
            margin-bottom: .4em;
        }

        .problem-card p {               
            margin: 0;
           
            
        }

        .problem-card.wide {
            grid-column: 1/-1;
        }

        .problem-card.wide p.closer {
            margin-top: .9em;
            color: var(--maroon-800);
            font-weight: 600;
        }

        /* ---------- PROCESS (real sequence, numbered) ---------- */
        .process-list {
            display: flex;
            flex-direction: column;
        }

        .process-item {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: 26px;
            padding: 30px 0;
            border-top: 1px solid var(--line);
        }

        .process-item:last-child {
            border-bottom: 1px solid var(--line);
        }

        .process-num {
            
            font-size: 2.6rem;
            color: var(--gold-500);
            font-weight: 600;
            line-height: 1;
        }

        .process-item h3 {
            font-size: 1.35rem;
            margin-bottom: .3em;
        }

        .process-item p {
           
            margin: 0;
            max-width: 60ch;
        }

        /* ---------- DOCS SECTION ---------- */
        .docs-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media(min-width:900px) {
            .docs-wrap {
                grid-template-columns: .85fr 1.15fr;
            }
        }

        .docs-panel {
            background: var(--maroon-950);
            color: var(--ivory);
            padding: 36px 32px;
            border-radius: 4px;
            position: relative;
        }

        .docs-panel::after {
            content: "⚭";
            position: absolute;
            top: 24px;
            right: 28px;
            font-size: 1.6rem;
            color: var(--gold-500);
            opacity: .7;
        }

        .docs-panel h3 {
            color: var(--gold-300);
            font-size: 1.5rem;
        }

        .docs-panel p {
            color: #E3D6BE;
            font-size: .95rem;
        }

        .docs-panel .disclaimer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px dashed rgba(231, 211, 161, .3);
            font-size: .82rem;
            color: #C9B993;
            font-style: italic;
        }

        .doc-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .doc-list li {
            padding-left: 30px;
            position: relative;
           
            
        }

        .doc-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .45em;
            width: 9px;
            height: 9px;
            border: 2px solid var(--gold-500);
            border-radius: 50%;
            background: var(--ivory);
        }

        .doc-list li strong {
            display: block;
            color: var(--ink-900);
            
            
            margin-bottom: 2px;
        }

        /* ---------- GUESTS ---------- */
        .guest-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }

        @media(min-width:820px) {
            .guest-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .guest-card {
            background: var(--ivory);
            border: 1px solid var(--line);
            padding: 30px 26px;
            border-top: 3px solid var(--gold-500);
        }

        .guest-card h4 {
            
            font-size: .85rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--maroon-800);
            margin-bottom: 1em;
        }

        .guest-card ul {
            margin: 0;
            padding-left: 18px;
           
            font-size: .94rem;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .guest-card ul li::marker {
            color: var(--gold-500);
        }

        /* ---------- BUDGET ---------- */
        .budget-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        @media(min-width:900px) {
            .budget-wrap {
                grid-template-columns: 1fr 1fr;
            }
        }

        .budget-copy p {
           
        }

        .budget-points {
            list-style: none;
            margin: 22px 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .budget-points li {
            padding-left: 28px;
            position: relative;
            font-size: .96rem;
            color: var(--ink-900);
        }

        .budget-points li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-500);
            font-weight: 700;
        }

        .rate-card {
            background: var(--maroon-950);
            border-radius: 6px;
            padding: 34px 30px;
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }

        .rate-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 90% 0%, rgba(216, 184, 136, .25), transparent 60%);
        }

        .rate-row {
            position: relative;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(231, 211, 161, .18);
        }

        .rate-row:last-of-type {
            border-bottom: none;
        }

        .rate-row .fn {
            
            font-size: .92rem;
            color: #EADFCB;
        }

        .rate-row .amt {
            
            font-size: 1.15rem;
            color: var(--gold-300);
        }

        .rate-row .amt small {
            color: #B7A587;
            font-size: .72rem;
            font-family: 'Karla', sans-serif;
            display: block;
            text-align: right;
        }

        .rate-foot {
            position: relative;
            margin-top: 18px;
            font-size: .8rem;
            color: #C9B993;
            font-style: italic;
        }

        /* ---------- TIMELINE ---------- */
        .timeline {
            position: relative;
            margin-top: 20px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 15px;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: var(--gold-500);
            opacity: .4;
        }

        @media(min-width:760px) {
            .timeline::before {
                left: 50%;
            }
        }

        .t-item {
            position: relative;
            padding: 0 0 44px 46px;
        }

        @media(min-width:760px) {
            .t-item {
                width: 50%;
                padding: 0 0 50px 0;
            }

            .t-item:nth-child(odd) {
                padding-right: 46px;
                text-align: right;
                left: 0;
            }

            .t-item:nth-child(even) {
                padding-left: 46px;
                left: 50%;
            }
        }

        .t-dot {
            position: absolute;
            left: 9px;
            top: 2px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--gold-500);
            border: 3px solid var(--cream-50);
        }

        @media(min-width:760px) {
            .t-item:nth-child(odd) .t-dot {
                right: -7px;
                left: auto;
            }

            .t-item:nth-child(even) .t-dot {
                left: -7px;
            }
        }

        /* ---------- CREDENTIALS ---------- */
        .cred-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }

        @media(min-width:820px) {
            .cred-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .cred-card {
            display: flex;
            gap: 16px;
            padding: 24px 22px;
            background: var(--ivory);
            border: 1px solid var(--line);
        }

        .cred-icon {
            flex: 0 0 auto;
            width: 38px;
            height: 38px;
            border: 1px solid var(--gold-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-500);
            
            font-weight: 700;
        }

        .cred-card p {
            margin: 0;
           
        }

        /* ---------- FAQ ---------- */
        .faq {
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--line);
        }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            
            font-size: 1.18rem;
            color: var(--maroon-950);
            padding: 22px 34px 22px 0;
            position: relative;
            cursor: pointer;
        }

        .faq-q::after {
            content: "+";
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.4rem;
            color: var(--gold-500);
            font-family: 'Karla', sans-serif;
            transition: transform .2s ease;
        }

        .faq-item.open .faq-q::after {
            content: "–";
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .28s ease;
        }

        .faq-a p {
            margin: 0 0 22px;
           
            font-size: .96rem;
            max-width: 66ch;
        }

        /* ---------- FINAL CTA ---------- */
        .final-cta {
            background: linear-gradient(135deg, var(--maroon-950), #012E25);
            color: var(--ivory);
            text-align: center;
            padding: 80px 0;
        }

        .final-cta h2 {
            color: var(--ivory);
            /*font-size: clamp(1.9rem, 4vw, 2.7rem);*/
            /*max-width: 20ch;*/
            margin: 0 auto .4em;
        }

        .final-cta p {
            color: #E3D6BE;
            max-width: 52ch;
            margin:auto;              
        }

        .final-cta .ctas {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .final-cta .phoneline {
            margin-top: 28px;
            
            color: var(--gold-300);
            font-size: .95rem;
            letter-spacing: .02em;
        }

        footer {
            background: var(--ivory);
            border-top: 1px solid var(--line);
            padding: 36px 0;
        }

        .foot-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
        }

        .foot-row p {
            margin: 0;
            font-size: .82rem;
           
        }

        .foot-logo {
            
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--maroon-950);
        }

        @media(prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }
        .hero-heading{
    width:100%;
    text-align:center;
    margin-bottom:50px;
}

.hero-heading .eyebrow{
    display:block;
    text-align:center;
    margin-bottom:15px;
}
  
.hero-heading h1{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    line-height:1.2;
    font-weight:700;
}
  .btn-primary {
    color: #fff;
    background-color: #d8b888 !important;
    border-color: #d8b888 !important;
}