:root {
    --earth-900: #582f0e;
    --earth-800: #7f4f24;
    --earth-700: #936639;
    --earth-600: #a68a64;
    --earth-500: #b6ad90;
    --earth-400: #c2c5aa;
    --earth-300: #a4ac86;
    --earth-200: #656d4a;
    --green-800: #414833;
    --green-900: #333d29;
    --cream: #fbf6ea;
    --cream-strong: #fffaf1;
    --cream-muted: #ebe2d1;
    --ink: #1f281c;
    --ink-soft: #46523a;
    --muted: #716a5d;
    --line: rgba(65, 72, 51, 0.16);
    --line-strong: rgba(88, 47, 14, 0.24);
    --accent: #7f4f24;
    --accent-strong: #582f0e;
    --inverse: #fffaf1;
    --shadow-soft: 0 18px 48px rgba(51, 61, 41, 0.10);
    --shadow-card: 0 22px 70px rgba(31, 40, 28, 0.13);
    --font-heading: "Fraunces", serif;
    --font-body: "Manrope", sans-serif;
    --max: 1160px;
    --nav-height: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(194, 197, 170, 0.28), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(166, 138, 100, 0.20), transparent 30rem),
        linear-gradient(180deg, #fbf7ee 0%, #f4ede0 60%, #efe5d5 100%);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
}

main,
section,
header {
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

img,
video,
svg {
    max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--earth-300);
    outline-offset: 4px;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--green-900);
    color: var(--inverse);
    font-weight: 900;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(51, 61, 41, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 61, 41, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 650;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--nav-height);
    border-bottom: 1px solid rgba(65, 72, 51, 0.12);
    background: rgba(251, 246, 234, 0.86);
    backdrop-filter: blur(18px);
}

.nav-container {
    width: min(var(--max), calc(100% - 2rem));
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.logo-mark {
    width: 2.1rem;
    height: 2.1rem;
}

.nav-right {
    align-items: center;
    gap: 1.35rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-link,
.nav-cta,
.mobile-link,
.mobile-cta,
.btn,
.contact-btn,
.text-link {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--ink-soft);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-strong);
}

.nav-cta,
.mobile-cta,
.btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.nav-cta {
    min-height: 2.85rem;
    padding: 0.78rem 1.05rem;
    background: var(--accent-strong);
    color: var(--inverse);
}

.nav-cta:hover,
.btn:hover,
.contact-btn:hover {
    transform: translateY(-2px);
}

.menu-btn {
    width: 2.85rem;
    height: 2.85rem;
    display: none;
    place-items: center;
    gap: 0.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.82);
    cursor: pointer;
}

.bar {
    width: 1.25rem;
    height: 2px;
    background: var(--accent-strong);
    transition: transform 0.24s var(--ease), opacity 0.24s ease;
}

.menu-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--nav-height) 1rem auto;
    z-index: 99;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow-card);
}

.mobile-menu.active {
    display: grid;
    gap: 0.45rem;
}

.mobile-link,
.mobile-cta {
    padding: 0.9rem;
    border-radius: 8px;
}

.mobile-link {
    color: var(--ink-soft);
}

.mobile-cta {
    margin-top: 0.5rem;
    background: var(--accent-strong);
    color: var(--inverse);
}

.hero {
    min-height: clamp(34rem, calc(100svh - var(--nav-height) - 9rem), 46rem);
    display: grid;
    align-items: center;
    padding: clamp(1.6rem, 3.4vw, 2.8rem) 1rem 2.2rem;
}

.hero-container,
.section-container,
.footer-container {
    width: min(var(--max), 100%);
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: clamp(2.4rem, 6vw, 5.2rem);
}

.hero-copy,
.section-container,
.footer-container {
    min-width: 0;
}

.badge,
.section-subtitle,
.eyebrow,
.service-index,
.process-index,
.showcase-badge,
.footer-kicker {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge {
    display: inline-flex;
    margin-bottom: 1.2rem;
    padding: 0.48rem 0.78rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.72);
    color: var(--accent-strong);
}

.title {
    max-width: 12.4ch;
    margin-bottom: 1rem;
    font-size: clamp(2.9rem, 5.2vw, 5.05rem);
}

.focus {
    max-width: 44rem;
    color: var(--accent-strong);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    font-weight: 750;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.45rem;
}

.btn {
    min-height: 3.25rem;
    padding: 0.98rem 1.28rem;
    border: 1px solid transparent;
}

.primary-btn {
    background: var(--accent-strong);
    color: var(--inverse);
    box-shadow: 0 14px 30px rgba(88, 47, 14, 0.17);
}

.primary-btn:hover {
    background: #472407;
}

.secondary-btn {
    border-color: var(--line);
    background: rgba(255, 250, 241, 0.78);
    color: var(--ink);
}

.secondary-btn:hover {
    border-color: var(--line-strong);
    color: var(--accent-strong);
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.offer-pills span {
    padding: 0.58rem 0.72rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.66);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 850;
}

.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
}

.portrait-frame {
    width: clamp(300px, 25vw, 370px);
}

.portrait-card {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.72);
    border-radius: 14px;
    background: var(--green-900);
    box-shadow: var(--shadow-card);
    clip-path: inset(0 0 0 0 round 14px);
}

.hero-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.08) contrast(1.06);
}

.portrait-note {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.8rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 250, 241, 0.76);
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.portrait-note span {
    color: var(--muted);
}

.portrait-note strong {
    color: var(--accent-strong);
}

.section {
    padding: 6.2rem 1rem;
}

.outcome-section {
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
    border-block: 1px solid rgba(65, 72, 51, 0.10);
    background: rgba(255, 250, 241, 0.38);
}

.section-header {
    max-width: 50rem;
    margin-bottom: 2.6rem;
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    max-width: 12.8ch;
    margin-bottom: 0.9rem;
    font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

.section-header.center .section-title {
    margin-inline: auto;
}

.section-prescript {
    max-width: 43rem;
    color: var(--muted);
    font-size: 1rem;
}

.section-header.center .section-prescript {
    margin-inline: auto;
}

.outcome-grid,
.service-grid,
.process-grid {
    display: grid;
    gap: 1rem;
}

.outcome-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card,
.service-card,
.process-card,
.ad-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.70);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.outcome-card,
.service-card,
.process-card {
    padding: 1.45rem;
}

.service-card::before,
.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-strong), var(--earth-300));
}

.outcome-card h2,
.service-card h3,
.process-card h3 {
    margin: 0.95rem 0 0.75rem;
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    line-height: 1.08;
}

.outcome-card p,
.service-card p,
.process-card p {
    font-size: 0.95rem;
}

.service-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--accent-strong);
    font-size: 0.84rem;
    line-height: 1.5;
}

.studio-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(194, 197, 170, 0.18), transparent 24rem),
        linear-gradient(135deg, var(--green-900), #20281b);
    color: var(--inverse);
}

.studio-section h2,
.studio-section h3,
.studio-section p,
.studio-section .section-subtitle {
    color: var(--inverse);
}

.studio-section .section-prescript {
    color: rgba(255, 250, 241, 0.70);
}

.studio-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.8rem;
}

.swipe-hint {
    display: none;
}

.featured-ad {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    margin-bottom: 1.1rem;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.featured-copy h3 {
    max-width: 9ch;
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.featured-copy p {
    max-width: 32rem;
    color: rgba(255, 250, 241, 0.76);
}

.text-link {
    display: inline-flex;
    margin-top: 1.35rem;
    color: var(--earth-400);
}

.text-link:hover {
    color: var(--inverse);
}

.video-preview-wrapper {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 250, 241, 0.10), rgba(0, 0, 0, 0.16)),
        var(--green-900);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.video-featured {
    width: min(100%, 290px);
    justify-self: end;
}

.video-preview-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(255, 250, 241, 0.13), transparent 9rem),
        linear-gradient(180deg, rgba(31, 40, 28, 0.18), rgba(31, 40, 28, 0.84));
    color: var(--inverse);
    cursor: pointer;
}

.play-btn,
.play-label {
    display: block;
    margin-inline: auto;
}

.play-btn {
    width: 3.35rem;
    height: 3.35rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.7rem;
    border: 1px solid rgba(255, 250, 241, 0.34);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.24s var(--ease);
}

.play-label {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.video-error {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: var(--inverse);
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
}

.ad-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.ad-card {
    overflow: hidden;
    border-color: rgba(255, 250, 241, 0.13);
    background: rgba(255, 250, 241, 0.07);
    transition: transform 0.28s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.ad-card .video-preview-wrapper {
    border: 0;
    border-radius: 14px 14px 0 0;
    box-shadow: none;
}

.ad-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.9rem;
    color: rgba(255, 250, 241, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

.ad-card-meta strong {
    color: var(--earth-400);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-section {
    background: rgba(255, 250, 241, 0.28);
}

.footer {
    padding: 6rem 1rem 2rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(194, 197, 170, 0.18), transparent 25rem),
        var(--green-900);
    color: var(--inverse);
    text-align: center;
}

.footer-title {
    max-width: 14ch;
    margin: 0 auto 1rem;
    color: var(--inverse);
    font-size: clamp(2.5rem, 5.4vw, 5rem);
}

.footer-subtitle {
    max-width: 44rem;
    margin: 0 auto 2rem;
    color: rgba(255, 250, 241, 0.74);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.6rem;
}

.contact-btn {
    min-height: 3.08rem;
    padding: 0.92rem 1.1rem;
    border: 1px solid transparent;
    background: var(--earth-400);
    color: var(--green-900);
}

.contact-btn.outline {
    border-color: rgba(255, 250, 241, 0.24);
    background: transparent;
    color: var(--inverse);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 250, 241, 0.14);
    color: rgba(255, 250, 241, 0.58);
    font-size: 0.84rem;
}

.fade-up {
    opacity: 0;
    animation: fade-up 0.76s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.07s;
}

.delay-2 {
    animation-delay: 0.14s;
}

.delay-3 {
    animation-delay: 0.21s;
}

.delay-4 {
    animation-delay: 0.28s;
}

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.68s ease, transform 0.68s var(--ease);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(2) {
    transition-delay: 0.06s;
}

.reveal-item:nth-child(3) {
    transition-delay: 0.12s;
}

.reveal-item:nth-child(4) {
    transition-delay: 0.18s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: hover) and (pointer: fine) {
    .ad-card:hover {
        transform: translateY(-7px);
        border-color: rgba(194, 197, 170, 0.45);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }

    .video-overlay:hover .play-btn {
        transform: scale(1.07);
    }
}

@media (max-width: 1120px) {
    .hero-container,
    .featured-ad {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.56fr);
    }

    .service-grid,
    .ad-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding: 1rem 1rem 2.4rem;
    }

    .hero-container,
    .featured-ad,
    .studio-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-container {
        gap: 0;
    }

    .hero-copy {
        display: contents;
        margin-inline: auto;
    }

    .badge {
        justify-self: center;
        order: 1;
        margin-bottom: 0.9rem;
    }

    .title {
        max-width: 9.4ch;
        justify-self: center;
        order: 2;
        margin-inline: auto;
        margin-bottom: 0.75rem;
        font-size: clamp(2.3rem, 7.6vw, 3.2rem);
    }

    .hero-image-wrapper {
        order: 3;
        justify-content: center;
        margin: 0.1rem 0 0.8rem;
    }

    .hero-support {
        order: 4;
        width: min(100%, 38rem);
        margin-inline: auto;
    }

    .focus,
    .section-prescript,
    .featured-copy p {
        margin-inline: auto;
    }

    .hero-actions,
    .offer-pills {
        justify-content: center;
    }

    .portrait-frame {
        width: min(100%, 205px);
    }

    .portrait-note {
        gap: 0.55rem;
        padding: 0.62rem 0.7rem;
        font-size: 0.69rem;
    }

    .outcome-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4.8rem 1rem;
    }

    .outcome-section {
        padding: 2.3rem 1rem;
    }

    .section-header,
    .studio-header {
        text-align: center;
    }

    .section-title {
        margin-inline: auto;
        font-size: clamp(2.1rem, 8vw, 3.2rem);
    }

    .video-featured {
        justify-self: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 520px) {
    .nav-container {
        width: calc(100% - 1.2rem);
    }

    .logo {
        gap: 0.5rem;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .logo-mark {
        width: 1.8rem;
        height: 1.8rem;
    }

    .title {
        max-width: 9.4ch;
        font-size: clamp(1.9rem, 8vw, 2.25rem);
    }

    .focus {
        max-width: 32ch;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero-actions {
        flex-direction: column;
        width: min(100%, 18rem);
        gap: 0.65rem;
        margin-inline: auto;
        margin-top: 1.05rem;
    }

    .btn {
        min-height: 3rem;
        padding: 0.85rem 1rem;
    }

    .btn,
    .contact-btn {
        width: 100%;
    }

    .offer-pills {
        width: min(100%, 18rem);
        margin-inline: auto;
        margin-top: 0.85rem;
    }

    .offer-pills span {
        flex: 1 1 calc(50% - 0.55rem);
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .swipe-hint {
        display: block;
        margin: -1.1rem 0 1rem;
        color: rgba(255, 250, 241, 0.62) !important;
        font-size: 0.76rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-align: center;
        text-transform: uppercase;
    }

    .ad-gallery {
        display: flex;
        gap: 0.85rem;
        margin-inline: -1rem;
        padding: 0 1rem 0.65rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-left: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .ad-gallery::-webkit-scrollbar {
        height: 0.35rem;
    }

    .ad-gallery::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(194, 197, 170, 0.36);
    }

    .ad-card {
        flex: 0 0 min(82vw, 19rem);
        scroll-snap-align: center;
    }

    .featured-ad {
        padding: 1rem;
    }

    .featured-copy h3 {
        max-width: 10ch;
        margin-inline: auto;
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .video-preview-wrapper {
        width: min(100%, 16.5rem);
        margin-inline: auto;
    }

    .ad-card .video-preview-wrapper {
        width: 100%;
    }

    .footer-title {
        max-width: 11ch;
    }
}

@media (max-width: 380px) {
    .title {
        font-size: 1.92rem;
    }

    .badge {
        max-width: calc(100vw - 2rem);
        white-space: nowrap;
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .portrait-frame {
        width: min(100%, 188px);
    }

    .section-title {
        font-size: 2rem;
    }

    .outcome-card,
    .service-card,
    .process-card {
        padding: 1.15rem;
    }
}

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

    .fade-up,
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
