/* ==========================================================================
   Carole Khreiche — Landing Page Styles
   Aesthetic: Luxury editorial · Warm cream · Didone typography
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --color-cream: #F8F1EC;
    --color-cream-deep: #EDE4DA;
    --color-beige: #9F834E;
    --color-beige-light: #C4A87A;
    --color-beige-dark: #7A6238;
    --color-black: #463F3C;
    --color-white: #FFFFFF;
    --color-text: #463F3C;
    --color-text-light: #7A7370;
    --color-text-muted: #A09C9A;
    --color-border: #DED5CB;

    --font-display: 'GFS Didot', 'Georgia', serif;
    --font-body: 'Karla', 'Helvetica Neue', sans-serif;

    --header-height: 80px;
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

::selection {
    background-color: var(--color-beige-light);
    color: var(--color-black);
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.875rem;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
}

p + p {
    margin-top: 1.25rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: var(--color-beige);
    color: var(--color-black);
    padding: 1.05rem 2.8rem;
    border: 1px solid var(--color-beige);
}

.btn--primary:hover {
    background-color: var(--color-beige-dark);
    border-color: var(--color-beige-dark);
}

.btn--primary:focus-visible {
    outline: 2px solid var(--color-beige-dark);
    outline-offset: 3px;
}

.btn--secondary {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0;
    background: none;
    position: relative;
}

.btn--secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--secondary:hover {
    color: var(--color-white);
}

.btn--secondary:hover::after {
    background-color: var(--color-beige-light);
    transform: scaleX(0.6);
    transform-origin: left;
}

.btn--submit {
    width: 100%;
    text-align: center;
    padding: 1.15rem 2.8rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.header--scrolled {
    background-color: rgba(248, 244, 238, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
    height: 68px;
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-img {
    height: 28px;
    width: auto;
    display: block;
    /* Invert dark SVG to white on the dark hero */
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.header--scrolled .header__logo-img {
    /* Restore original dark colour on cream background */
    filter: none;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    position: relative;
}

.header--scrolled .nav__link {
    color: var(--color-text-light);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-beige-light);
    transition: width 0.3s ease;
}

.header--scrolled .nav__link::after {
    background-color: var(--color-beige-dark);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--color-white);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link.is-active {
    color: var(--color-text);
}

.nav__link:hover::after,
.nav__link.is-active::after {
    width: 100%;
}

.nav__link--cta {
    color: var(--color-white);
    font-weight: 500;
}

.header--scrolled .nav__link--cta {
    color: var(--color-black);
}

/* Hamburger */
.header__menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-white);
    transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.4s ease;
}

.header--scrolled .header__menu-btn span {
    background-color: var(--color-text);
}

.header__menu-btn span + span {
    margin-top: 7px;
}

body.menu-open .header__menu-btn span:first-child {
    transform: translateY(4.25px) rotate(45deg);
}

body.menu-open .header__menu-btn span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

body.menu-open .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

body.menu-open .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
body.menu-open .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav__link:hover {
    color: var(--color-beige-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) clamp(1.5rem, 4vw, 3rem) 4rem;
    background-color: #000;
    overflow: hidden;
}

/* Video background */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    pointer-events: none;
}

.hero__video--mobile {
    display: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__content {
    max-width: 680px;
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero__divider {
    width: 48px;
    height: 1px;
    background-color: var(--color-beige);
    margin: 0 auto 2rem;
}

.hero__intro {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Sections — Shared
   ========================================================================== */
.section {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 3rem);
}

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-beige-dark);
    margin-bottom: 1.5rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.75;
    max-width: 580px;
    margin-top: 1.25rem;
}

/* Alternating backgrounds */
.section--about {
    background-color: var(--color-white);
}

.section--services {
    background-color: var(--color-cream);
}

.section--process {
    background-color: var(--color-white);
}

.section--testimonials {
    background-color: var(--color-cream);
}

.section--contact {
    background-color: var(--color-white);
}

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.about__text p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.about__quote {
    padding: 2rem 0 2rem 2rem;
    border-left: 2px solid var(--color-beige);
    margin-bottom: 2.5rem;
}

.about__quote p {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
}

.about__quote cite {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-beige-dark);
}

.about__image-placeholder {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-white);
    padding: clamp(2rem, 3vw, 2.75rem);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-beige);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-beige-light);
    line-height: 1;
    display: block;
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card__desc:last-of-type {
    margin-bottom: 1.5rem;
}

.service-card__pricing {
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.service-card__pricing p {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 clamp(3rem, 6vw, 5rem);
    row-gap: clamp(3rem, 6vw, 5rem);
}

.process__header {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.process__grid > .process__main,
.process__grid > .process__aside {
    align-self: center;
}

.process__steps {
    max-width: 720px;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 23px;
    bottom: 0;
    width: 1px;
    background-color: var(--color-border);
}

.process__step {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3rem;
    position: relative;
}

.process__step:last-child {
    padding-bottom: 0;
}

.process__step-marker {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process__step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-beige-dark);
    background-color: var(--color-white);
    padding: 0.25rem 0;
    line-height: 1;
}

.process__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process__step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 520px;
}

.process__image-placeholder {
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.process__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial {
    background-color: var(--color-white);
    padding: clamp(2rem, 3vw, 2.75rem);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial__quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-beige-light);
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    pointer-events: none;
    user-select: none;
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.testimonial__name {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.testimonial__role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.testimonials__note {
    margin-top: 2.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-muted);
    text-align: center;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.contact__wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.contact__grid .contact__wrapper {
    max-width: none;
    margin: 0;
}

.contact__image-placeholder {
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.form__group {
    margin-bottom: 1.75rem;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.6rem;
}

.form__optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-muted);
}

.form__input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form__input:focus {
    border-bottom-color: var(--color-beige-dark);
}

.form__input::placeholder {
    color: var(--color-text-muted);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form__select-wrapper {
    position: relative;
}

.form__select-wrapper::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-text-muted);
    pointer-events: none;
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    padding-right: 20px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
    border: 1px solid var(--color-border);
    padding: 1rem;
    margin-top: 0.25rem;
    transition: border-color 0.3s ease;
}

.form__textarea:focus {
    border-color: var(--color-beige-dark);
}

/* Validation */
.form__input:user-invalid {
    border-bottom-color: #c0392b;
}

.form__textarea:user-invalid {
    border-color: #c0392b;
}

/* Success */
.contact__success {
    text-align: center;
    padding: 4rem 2rem;
}

.success__icon {
    color: var(--color-beige-dark);
    margin-bottom: 1.5rem;
}

.success__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.success__text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__brand {
    margin-bottom: 2.5rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer__logo-img {
    height: 28px;
    width: auto;
    display: block;
    /* Invert to white for dark footer */
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.footer__contact-info a {
    transition: color 0.3s ease;
}

.footer__contact-info a:hover {
    color: var(--color-beige-light);
}

.footer__social {
    display: flex;
    gap: 1.25rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer__social-link:hover {
    color: var(--color-beige-light);
    border-color: var(--color-beige-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal {
    display: flex;
    gap: 1.75rem;
    font-size: 0.8125rem;
}

.footer__legal a {
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--color-beige-light);
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__credit {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer__credit a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__credit a:hover {
    color: var(--color-beige-light);
}

/* ==========================================================================
   Lenis
   ========================================================================== */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ==========================================================================
   Animation Initial States (Anime.js handles transitions)
   ========================================================================== */
.reveal,
.service-card,
.process__step,
.testimonial {
    opacity: 0;
}

.hero__title,
.hero__tagline,
.hero__divider,
.hero__intro,
.hero__actions .btn {
    opacity: 0;
}

.hero__divider {
    transform-origin: left;
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */
@media (max-width: 640px) {
    :root {
        --header-height: 68px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 3rem);
        padding-bottom: 3rem;
    }

    .hero__video--desktop {
        display: none;
    }

    .hero__video--mobile {
        display: block;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

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

    .process__steps::before {
        left: 19px;
    }

    .process__step {
        gap: 1.5rem;
    }

    .process__step-marker {
        width: 40px;
    }

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

    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer__links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer__legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .service-card,
    .process__step,
    .testimonial,
    .hero__title,
    .hero__tagline,
    .hero__divider,
    .hero__intro,
    .hero__actions .btn {
        opacity: 1 !important;
        transform: none !important;
    }

    .mobile-nav__link {
        opacity: 1;
        transform: none;
        transition: color 0.3s ease;
    }

    .service-card:hover {
        transform: none;
    }
}
