:root {
    --premium-orange: #bd7739;
    --premium-orange-dark: #925522;
    --premium-cream: #fbf5ea;
    --premium-cream-deep: #f2e3cf;
    --premium-charcoal: #242326;
    --premium-gold: #f9e111;
    --premium-line: rgba(146, 85, 34, .18);
    --premium-shadow: 0 22px 60px rgba(55, 34, 18, .12);
}

body {
    overflow-x: hidden;
    background: #fff;
    color: #29262a;
}

.container {
    position: relative;
}

.navbar {
    box-shadow: 0 10px 35px rgba(55, 34, 18, .07);
    backdrop-filter: blur(14px);
}

.navbar .nav-link {
    position: relative;
    padding-block: 12px;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 7px;
    left: 8px;
    height: 2px;
    border-radius: 3px;
    background: var(--premium-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.btn {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .01em;
    box-shadow: 0 10px 24px rgba(40, 29, 20, .14);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(40, 29, 20, .22);
}

.btn::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -65%;
    width: 42%;
    height: 250%;
    background: rgba(255,255,255,.28);
    transform: rotate(24deg);
    transition: left .55s ease;
}

.btn:hover::after {
    left: 125%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 80px 0 70px;
    background:
        radial-gradient(circle at 8% 15%, rgba(249,225,17,.14), transparent 28%),
        linear-gradient(115deg, rgba(251,245,234,.98), rgba(242,227,207,.9)),
        url("../images/hero-bg.webp") center/cover no-repeat;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    top: -190px;
    right: -100px;
    border: 55px solid rgba(189,119,57,.09);
}

.hero::after {
    width: 190px;
    height: 190px;
    bottom: -100px;
    left: 7%;
    background: rgba(189,119,57,.08);
}

.hero .row {
    position: relative;
    z-index: 1;
}

.hero-copy {
    padding-top: 34px;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 26px;
    color: var(--premium-charcoal);
    font-size: clamp(48px,5vw,72px);
    line-height: .98;
    letter-spacing: -.045em;
}

.hero h1 .accent {
    color: var(--premium-orange);
}

.hero-copy>p {
    max-width: 610px;
    color: #595159;
    font-size: 16px;
    line-height: 1.8;
}

.hero .col-lg-6:last-child {
    padding: 36px;
    border: 1px solid rgba(189,119,57,.2);
    border-radius: 28px;
    background: rgba(255,255,255,.82);
    box-shadow: var(--premium-shadow);
    backdrop-filter: blur(12px);
}

.form-heading h2 {
    color: var(--premium-charcoal);
    font-size: 29px;
}

.form-heading p {
    color: #78675b;
}

.form-control,
.form-select {
    border-color: #ddc9b5;
    background: rgba(255,255,255,.78);
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-control:focus,
.form-select:focus {
    /* border-color: var(--premium-orange); */
    /* background: #fff; */
    /* box-shadow: 0 0 0 4px rgba(189,119,57,.12); */
}

.award-row img {
    filter: drop-shadow(0 8px 12px rgba(55,34,18,.13));
    transition: transform .25s ease;
}

.award-row img:hover {
    transform: translateY(-5px) scale(1.04);
}

.stats {
    position: relative;
    padding: 45px 0;
    border-block: 1px solid var(--premium-line);
    background: var(--premium-charcoal);
}

.stats .col-md-4:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.13);
}

.stat-icon,
.stats strong,
.stats span {
    color: var(--premium-gold);
}

.stats p {
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

.section,
.portfolio,
.process,
.story,
.advantages,
.reviews,
.faq,
.coupon,
.inner-intro,
.services-included,
.inner-why,
.inner-service-cta {
    padding-top: 85px;
    padding-bottom: 85px;
}

.section-title {
    margin-bottom: 55px;
}

.section-title .eyebrow,
.eyebrow {
    color: var(--premium-orange);
    letter-spacing: .18em;
}

.section-title h2,
.story h2,
.faq h2 {
    color: var(--premium-charcoal);
    letter-spacing: -.035em;
}

.why-item,
.adv-card,
.benefit-card {
    border: 1px solid var(--premium-line)!important;
    background: #fff;
    box-shadow: 0 12px 35px rgba(55,34,18,.06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.why-item {
    padding: 22px;
    border-radius: 18px;
}

.why-item:hover,
.adv-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(189,119,57,.42)!important;
    box-shadow: var(--premium-shadow);
}

.why-item img {
    width: 62px;
    height: 62px;
    padding: 11px;
    border-radius: 16px;
    background: var(--premium-cream);
}

.why-item h3 {
    flex: 1;
    color: var(--premium-charcoal);
    font-size: 18px;
}

.why-item p {
    width: 100%;
    color: #625b61;
}

.why-visual img,
.story .visual,
.inner-main-image,
.included-image,
.inner-service-cta img {
    filter: drop-shadow(0 25px 35px rgba(55,34,18,.15));
}

.portfolio {
    background:
        radial-gradient(circle at 100% 0, rgba(249,225,17,.09), transparent 25%),
        var(--premium-cream);
}

.portfolio-tabs .nav-link {
    border-color: rgba(189,119,57,.36);
    background: rgba(255,255,255,.7);
    color: var(--premium-charcoal);
    transition: all .22s ease;
}

.portfolio-tabs .nav-link:hover,
.portfolio-tabs .nav-link.active {
    border-color: var(--premium-orange);
    background: var(--premium-orange);
    box-shadow: 0 9px 22px rgba(146,85,34,.2);
}

.book-grid {
    gap: 30px;
}

.book-grid img {
    border-radius: 4px;
    filter: drop-shadow(0 18px 18px rgba(30,25,24,.2));
    transition: transform .35s ease, filter .35s ease;
}

.book-grid img:hover {
    transform: translateY(-12px) rotate(-1deg);
    filter: drop-shadow(0 28px 24px rgba(30,25,24,.27));
}

.process {
    background:
        linear-gradient(rgba(255,255,255,.82),rgba(255,255,255,.82)),
        url("../images/hero-bg.webp") center/cover no-repeat;
}

.process-shell {
    padding: 46px;
    border: 1px solid rgba(189,119,57,.22);
    border-radius: 28px;
    box-shadow: var(--premium-shadow);
}

.process-tabs .nav-link {
    border-color: rgba(189,119,57,.4);
}

.process-tabs .nav-link.active,
.process-tabs .nav-link:hover {
    border-color: var(--premium-charcoal);
    background: var(--premium-charcoal);
}

.connect-cta {
    padding: 80px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(249,225,17,.16), transparent 25%),
        var(--premium-charcoal);
}

.connect-copy h2 {
    letter-spacing: -.04em;
}

.connect-copy h2 .highlight {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.story .visual {
    border: 1px solid var(--premium-line);
    background: var(--premium-cream);
}

.quote-band {
    background: var(--premium-orange);
}

.quote-band blockquote {
    position: relative;
    color: #fff;
}

.quote-band cite {
    color: var(--premium-gold);
}

.adv-card {
    padding: 34px;
}

.adv-card .icon {
    background: var(--premium-cream);
    color: var(--premium-orange);
}

.reviews {
    background: var(--premium-cream);
}

.review-card {
    border-color: rgba(189,119,57,.15);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(55,34,18,.08);
}

.stars {
    color: #d49a12;
}

.accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--premium-line);
    border-radius: 14px!important;
    background: #fff;
}

.accordion-button {
    padding: 22px 24px;
}

.accordion-button:not(.collapsed) {
    background: var(--premium-cream);
    color: var(--premium-orange-dark);
}

.accordion-body {
    padding: 0 24px 24px;
}

.coupon-box {
    border-color: rgba(189,119,57,.25);
    background: #fff;
    box-shadow: var(--premium-shadow);
}

.coupon-form {
    background:
        radial-gradient(circle at 0 0, rgba(249,225,17,.13), transparent 28%),
        #fff;
}

footer {
    background:
        radial-gradient(circle at 10% 0, rgba(189,119,57,.14), transparent 24%),
        #1d1c1f;
}

@media (max-width: 991px) {
    .navbar .nav-link::after {
        display: none;
    }

    .hero {
        padding: 55px 0;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero .col-lg-6:last-child {
        margin-inline: 10px;
        width: calc(100% - 20px);
    }

    .stats .col-md-4:not(:last-child) {
        border-right: 0;
    }

    .connect-copy {
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 45px;
        line-height: 1.03;
    }

    .hero .col-lg-6:last-child {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .section,
    .portfolio,
    .process,
    .story,
    .advantages,
    .reviews,
    .faq,
    .coupon,
    .inner-intro,
    .services-included,
    .inner-why,
    .inner-service-cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .process-shell {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .book-grid {
        gap: 18px 12px;
    }

    .quote-band blockquote {
        padding: 22px 14px;
    }
}

/* Motion and conversion-focused interaction layer */
@keyframes cta-breathe {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 24px rgba(40,29,20,.14), 0 0 0 0 rgba(249,225,17,.34);
    }
    50% {
        transform: translateY(-3px) scale(1.025);
        box-shadow: 0 16px 32px rgba(40,29,20,.22), 0 0 0 12px rgba(249,225,17,0);
    }
}

@keyframes book-float {
    0%, 100% { transform: translateY(0) rotate(-.4deg); }
    50% { transform: translateY(-12px) rotate(.6deg); }
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes accent-sweep {
    0% { background-position: 100% 100%; }
    100% { background-position: 0 100%; }
}

.hero .btn-coral,
.navbar .btn-coral,
.final-cta .btn,
.coupon-form .btn,
.inner-service-cta .btn {
    animation: cta-breathe 2.8s ease-in-out infinite;
}

.hero .btn-coral:hover,
.navbar .btn-coral:hover,
.final-cta .btn:hover,
.coupon-form .btn:hover,
.inner-service-cta .btn:hover {
    animation-play-state: paused;
}

.why-visual img,
.story .visual img,
.process-pane img {
    animation: book-float 5s ease-in-out infinite;
}

.award-row img {
    animation: badge-float 3.6s ease-in-out infinite;
}

.award-row img:nth-child(2) { animation-delay: -.7s; }
.award-row img:nth-child(3) { animation-delay: -1.4s; }
.award-row img:nth-child(4) { animation-delay: -2.1s; }

.section-title h2 .accent,
.story h2 .accent,
.hero h1 .accent {
    background-image: linear-gradient(90deg, transparent 0 48%, rgba(249,225,17,.42) 48% 88%, transparent 88%);
    background-size: 220% 12px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    animation: accent-sweep 1.1s .4s ease forwards;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.25,1);
}

.reveal-ready.reveal-left {
    transform: translateX(-38px);
}

.reveal-ready.reveal-right {
    transform: translateX(38px);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translate(0,0);
}

.why-grid .reveal-ready:nth-child(2),
.adv-grid .reveal-ready:nth-child(2),
.included-grid .reveal-ready:nth-child(2) {
    transition-delay: .1s;
}

.why-grid .reveal-ready:nth-child(3),
.adv-grid .reveal-ready:nth-child(3),
.included-grid .reveal-ready:nth-child(3) {
    transition-delay: .2s;
}

.why-grid .reveal-ready:nth-child(4),
.adv-grid .reveal-ready:nth-child(4),
.included-grid .reveal-ready:nth-child(4) {
    transition-delay: .3s;
}

.navbar.scrolled {
    min-height: 70px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 40px rgba(55,34,18,.12);
}

.navbar,
.navbar-brand img {
    transition: min-height .25s ease, height .25s ease, background .25s ease, box-shadow .25s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 48px;
}

.process-pane {
    animation: pane-enter .45s ease;
}

@keyframes pane-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        border: 1px solid var(--premium-line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(55,34,18,.12);
    }

    .navbar .btn-coral {
        width: 100%;
        margin: 12px 0 0!important;
    }

    .inner-hero .row,
    .inner-intro .row,
    .inner-service-cta .row {
        row-gap: 38px;
    }

    .connect-logo img {
        max-width: 62%;
    }
}

@media (max-width: 575px) {
    .navbar {
        min-height: 68px;
    }

    .navbar-brand img,
    .navbar.scrolled .navbar-brand img {
        height: 46px;
        max-width: 190px;
    }

    .hero {
        padding: 42px 0 52px;
    }

    .hero h1 {
        font-size: clamp(38px,11vw,46px);
    }

    .hero-copy>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-copy .d-flex {
        display: grid!important;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-copy .btn {
        width: 100%;
    }

    .award-row {
        justify-content: center;
    }

    .stats {
        padding: 34px 0;
    }

    .stats .col-md-4 {
        padding-block: 14px;
    }

    .stats strong {
        font-size: 48px;
    }

    .portfolio-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start!important;
        overflow-x: auto;
        padding: 4px 4px 14px;
        scrollbar-width: none;
    }

    .portfolio-tabs::-webkit-scrollbar {
        display: none;
    }

    .portfolio-tabs .nav-item {
        flex: 0 0 auto;
    }

    .connect-logo img {
        max-width: 78%;
    }

    .coupon-image {
        min-height: 300px;
    }

    footer .row {
        --bs-gutter-y: 2.2rem;
    }
}

/* Premium service-page system */
.inner-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 78px 0;
    background:
        radial-gradient(circle at 6% 18%, rgba(249,225,17,.16), transparent 25%),
        radial-gradient(circle at 94% 85%, rgba(189,119,57,.14), transparent 28%),
        linear-gradient(115deg, rgba(251,245,234,.98), rgba(242,227,207,.92)),
        url("../images/hero-bg.webp") center/cover no-repeat;
}

.inner-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -210px;
    right: -90px;
    border: 55px solid rgba(189,119,57,.1);
    border-radius: 50%;
}

.inner-hero .row {
    position: relative;
    z-index: 1;
}

.inner-hero .col-lg-7 {
    padding-right: 5%;
}

.inner-hero h1 {
    margin-bottom: 24px;
    color: var(--premium-charcoal);
    font-size: clamp(54px,6vw,78px);
    line-height: .96;
    letter-spacing: -.055em;
}

.inner-hero p {
    max-width: 720px;
    color: #625851;
    font-size: 16px;
    line-height: 1.8;
}

.inner-hero .d-flex {
    margin-top: 30px;
}

.inner-hero .hero-form {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(189,119,57,.22);
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--premium-shadow);
    backdrop-filter: blur(12px);
}

.inner-hero .hero-form::before {
    content: "FREE CONSULTATION";
    position: absolute;
    top: -13px;
    right: 28px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.inner-hero .form-heading h2 {
    font-size: 28px;
    line-height: 1.18;
}

.inner-hero .lead-form {
    gap: 14px;
}

.inner-hero .form-control,
.inner-hero .form-select {
    min-height: 50px;
    margin-bottom: 0;
    border-radius: 12px;
}

.inner-hero .lead-form textarea {
    min-height: 110px;
}

.inner-intro {
    position: relative;
    background: #fff;
}

.inner-intro .col-lg-6:first-child {
    padding-right: 4%;
}

.inner-intro h2,
.services-included h2,
.inner-why h2,
.inner-service-cta h2 {
    color: var(--premium-charcoal);
    letter-spacing: -.04em;
}

.inner-intro p,
.inner-service-cta p {
    color: #625b61;
    font-size: 15px;
    line-height: 1.8;
}

.inner-intro h3 {
    color: var(--premium-orange-dark);
    font-size: 22px;
}

.service-list {
    display: grid;
    gap: 11px;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding: 12px 16px 12px 47px;
    border: 1px solid var(--premium-line);
    border-radius: 12px;
    background: var(--premium-cream);
    color: #4f494d;
    font-weight: 500;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--premium-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.inner-main-image,
.included-image,
.inner-service-cta img {
    border-radius: 26px;
    box-shadow: var(--premium-shadow);
    transition: transform .45s ease, box-shadow .45s ease;
}

.inner-main-image:hover,
.included-image:hover,
.inner-service-cta img:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 30px 75px rgba(55,34,18,.2);
}

.services-included {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(249,225,17,.1), transparent 25%),
        var(--premium-cream);
}

.services-included::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -130px;
    bottom: -100px;
    border: 38px solid rgba(189,119,57,.08);
    border-radius: 50%;
}

.services-included .container {
    z-index: 1;
}

.included-grid {
    gap: 22px;
}

.included-item {
    position: relative;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--premium-line);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 12px 32px rgba(55,34,18,.06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.included-item:hover {
    transform: translateY(-7px);
    border-color: rgba(189,119,57,.42);
    box-shadow: var(--premium-shadow);
}

.included-item img {
    padding: 9px;
    border-radius: 15px;
    background: var(--premium-cream-deep);
}

.included-item h3 {
    margin-bottom: 8px;
    color: var(--premium-charcoal);
    font-size: 19px;
}

.inner-why {
    position: relative;
    background: #fff;
}

.inner-why .section-title::after {
    color: #736963;
}

.inner-why .benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    padding: 34px 30px;
    border-radius: 20px;
}

.inner-why .benefit-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(189,119,57,.08);
    transition: transform .35s ease;
}

.inner-why .benefit-card:hover::after {
    transform: scale(1.8);
}

.benefit-number {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: var(--premium-charcoal);
    color: var(--premium-gold);
    font: 700 16px Syne,sans-serif;
}

.inner-why .benefit-card h3 {
    position: relative;
    z-index: 1;
    color: var(--premium-charcoal);
    font-size: 21px;
    line-height: 1.3;
}

.inner-why .benefit-card p {
    position: relative;
    z-index: 1;
    color: #645c61;
}

.inner-service-cta {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, var(--premium-charcoal) 0 62%, #302e32 62% 100%);
    color: #fff;
}

.inner-service-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 20%, rgba(249,225,17,.13), transparent 25%);
}

.inner-service-cta h2 {
    color: #fff;
    font-size: clamp(46px,5vw,68px);
}

.inner-service-cta p {
    max-width: 720px;
    color: rgba(255,255,255,.74);
}

.inner-service-cta img {
    border: 1px solid rgba(255,255,255,.13);
}

.inner-service-cta .btn-coral {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
}

.inner-service-cta .btn-coral:hover {
    background: #fff;
}

body:has(.inner-hero) .story {
    background: var(--premium-cream);
}

body:has(.inner-hero) .story .visual {
    background: #fff;
}

body:has(.inner-hero) .faq {
    background: linear-gradient(180deg,#fff,var(--premium-cream));
}

body:has(.inner-hero) .coupon {
    background: var(--premium-cream);
}

@media (max-width: 991px) {
    .inner-hero {
        padding: 62px 0;
    }

    .inner-hero .col-lg-7 {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .inner-hero .hero-form {
        padding: 30px 26px;
    }

    .inner-intro .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .inner-main-image,
    .included-image {
        height: 500px;
    }

    .inner-service-cta {
        background: var(--premium-charcoal);
    }
}

@media (max-width: 575px) {
    .inner-hero {
        min-height: auto;
        padding: 48px 0 55px;
    }

    .inner-hero h1 {
        font-size: 46px;
    }

    .inner-hero .d-flex {
        display: grid!important;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .inner-hero .btn {
        width: 100%;
    }

    .inner-hero .hero-form {
        padding: 28px 18px 22px;
        border-radius: 20px;
    }

    .inner-hero .hero-form::before {
        right: 18px;
    }

    .inner-main-image,
    .included-image {
        height: 360px;
        border-radius: 20px;
    }

    .included-item {
        grid-template-columns: 52px 1fr;
        padding: 20px 17px;
    }

    .included-item img {
        width: 52px;
        height: 52px;
    }

    .inner-why .benefit-card {
        min-height: auto;
        padding: 28px 23px;
    }

    .inner-service-cta h2 {
        font-size: 43px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto!important;
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important;
    }

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

/* Legal pages */
.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 78px;
    background:
        radial-gradient(circle at 82% 20%, rgba(249,225,17,.16), transparent 24%),
        linear-gradient(120deg, var(--premium-cream), var(--premium-cream-deep));
}

.legal-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -150px;
    border: 42px solid rgba(189,119,57,.12);
    border-radius: 50%;
}

.legal-hero .eyebrow {
    margin-bottom: 14px;
}

.legal-hero h1 {
    max-width: 850px;
    margin: 0;
    color: var(--premium-charcoal);
    font-size: clamp(46px,6vw,72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.045em;
}

.legal-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #625851;
    font-size: 16px;
    line-height: 1.75;
}

.legal-page {
    padding: 80px 0 95px;
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0,1fr);
    gap: 50px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 105px;
    padding: 25px;
    border: 1px solid var(--premium-line);
    border-radius: 20px;
    background: var(--premium-cream);
}

.legal-nav strong {
    display: block;
    margin-bottom: 14px;
    color: var(--premium-charcoal);
    font: 700 17px Syne,sans-serif;
}

.legal-nav a {
    display: block;
    padding: 8px 0;
    color: #6b5d54;
    text-decoration: none;
    font-size: 13px;
    transition: color .2s, transform .2s;
}

.legal-nav a:hover {
    color: var(--premium-orange);
    transform: translateX(4px);
}

.legal-content {
    padding: 44px;
    border: 1px solid var(--premium-line);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(55,34,18,.07);
}

.legal-content section {
    scroll-margin-top: 120px;
}

.legal-content section+section {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid var(--premium-line);
}

.legal-content h2 {
    margin: 0 0 14px;
    color: var(--premium-charcoal);
    font-size: 26px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: #5f585d;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 21px;
}

.legal-note {
    margin-bottom: 34px;
    padding: 18px 20px;
    border-left: 4px solid var(--premium-orange);
    border-radius: 0 12px 12px 0;
    background: var(--premium-cream);
    color: #5b514b;
}

@media (max-width: 991px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 18px;
    }

    .legal-nav strong {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .legal-hero {
        padding: 58px 0 52px;
    }

    .legal-hero h1 {
        font-size: 42px;
    }

    .legal-page {
        padding: 50px 0 65px;
    }

    .legal-content {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .legal-content h2 {
        font-size: 22px;
    }
}
