/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2C3B;
    --burgundy-dark: #5C1F2C;
    --burgundy-deeper: #3D141D;
    --blush: #F4E8E4;
    --blush-light: #FBF6F4;
    --blush-mid: #E8D5CE;
    --cream: #FDF9F7;
    --charcoal: #1A1416;
    --text-dark: #2D1F24;
    --text-mid: #5C4A4F;
    --text-light: #8A747A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 44, 59, 0.08);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(123, 44, 59, 0.08);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--burgundy);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s var(--ease-smooth);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--burgundy-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--burgundy);
    padding: 8px;
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 22, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.nav__overlay.active {
    opacity: 1;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--burgundy-deeper);
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(123, 44, 59, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(92, 31, 44, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero__bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--blush);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__headline-accent {
    color: var(--blush);
    font-style: italic;
    font-weight: 400;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(244, 232, 228, 0.7);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    white-space: nowrap;
}

.btn--primary {
    background: var(--blush);
    color: var(--burgundy-deeper);
}

.btn--primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--blush);
    border: 1.5px solid rgba(244, 232, 228, 0.3);
}

.btn--ghost:hover {
    border-color: var(--blush);
    background: rgba(244, 232, 228, 0.08);
}

.btn--light {
    background: var(--white);
    color: var(--burgundy);
}

.btn--light:hover {
    background: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========== HERO VISUAL ========== */
.hero__visual {
    position: relative;
    height: 480px;
}

.hero__card--main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.hero__card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-card--top {
    top: 20px;
    right: -20px;
}

.hero__stat-card--bottom {
    bottom: 40px;
    left: -20px;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--burgundy);
}

.section-tag--light {
    color: var(--blush);
}

.section-tag--light::before {
    background: var(--blush);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.section-title--light {
    color: var(--white);
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 520px;
}

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

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid rgba(123, 44, 59, 0.06);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 44, 59, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 22px;
    transition: background 0.3s var(--ease-smooth);
}

.service-card:hover .service-card__icon {
    background: var(--burgundy);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    background: var(--burgundy-deeper);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__image-stack {
    position: relative;
    height: 520px;
}

.about__image-stack img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.about__image-stack img:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 5px solid var(--burgundy-deeper);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about__image-badge {
    position: absolute;
    bottom: 195px;
    right: 30px;
    background: var(--blush);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about__badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.about__badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--burgundy-dark);
}

.about__content {
    color: var(--white);
}

.about__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(244, 232, 228, 0.75);
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--blush);
}

.about__value svg {
    flex-shrink: 0;
    color: var(--blush);
}

/* ========== PROJECTS ========== */
.projects {
    padding: 120px 0;
    background: var(--cream);
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 7 / 5;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 22, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.3s var(--ease-smooth);
}

.project-card:hover .project-card__overlay {
    background: linear-gradient(to top, rgba(61, 20, 29, 0.9) 0%, transparent 70%);
}

.project-card__tag {
    display: inline-block;
    background: var(--blush);
    color: var(--burgundy);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}

.project-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 120px 0;
    background: var(--blush);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    border: 1px solid rgba(123, 44, 59, 0.06);
    transition: all 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(123, 44, 59, 0.08);
}

.testimonial-card__quote {
    position: absolute;
    top: 24px;
    right: 28px;
    color: var(--burgundy);
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 24px;
    margin-top: 28px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__author-avatar {
    width: 40px;
    height: 40px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-card__author-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== CTA ========== */
.cta {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(244, 232, 228, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(244, 232, 228, 0.7);
    margin-top: 20px;
    max-width: 480px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(244, 232, 228, 0.65);
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(244, 232, 228, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush);
    flex-shrink: 0;
}

.contact__detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(244, 232, 228, 0.4);
}

.contact__detail-text a,
.contact__detail-text span {
    font-size: 0.95rem;
    color: var(--blush);
    transition: color 0.2s;
}

.contact__detail-text a:hover {
    color: var(--white);
}

/* ========== FORM ========== */
.contact__form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(244, 232, 228, 0.5);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: all 0.2s var(--ease-smooth);
    outline: none;
}

.form__input::placeholder {
    color: rgba(244, 232, 228, 0.3);
}

.form__input:focus {
    border-color: var(--blush);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(244, 232, 228, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4E8E4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__select option {
    background: var(--charcoal);
    color: var(--white);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    text-align: center;
    padding: 40px 20px;
}

.form__success svg {
    color: #4ADE80;
    margin-bottom: 16px;
}

.form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.form__success-text {
    font-size: 0.95rem;
    color: rgba(244, 232, 228, 0.65);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: #120D0F;
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(244, 232, 228, 0.45);
    max-width: 280px;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blush);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact a,
.footer__contact li {
    font-size: 0.9rem;
    color: rgba(244, 232, 228, 0.45);
    transition: color 0.2s;
    line-height: 1.5;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--blush);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(244, 232, 228, 0.25);
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        padding: 40px;
    }

    .nav__links.active {
        transform: translateX(0);
    }

    .nav__overlay {
        display: block;
    }

    .nav__link {
        color: var(--blush) !important;
        font-size: 1.1rem;
    }

    .nav__link::after {
        background: var(--blush);
    }

    .nav__link--cta {
        background: var(--blush) !important;
        color: var(--burgundy-deeper) !important;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }

    .hero__visual {
        height: 320px;
        order: -1;
    }

    .hero__stat-card--top {
        right: 10px;
        top: 10px;
    }

    .hero__stat-card--bottom {
        left: 10px;
        bottom: 20px;
    }

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

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-stack {
        height: 380px;
        order: -1;
    }

    .about__image-stack img:first-child {
        width: 70%;
        height: 380px;
    }

    .about__image-stack img:last-child {
        width: 55%;
    }

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

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

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

    .cta__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cta__actions {
        justify-content: center;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 90px 0 50px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

    .hero__visual {
        height: 260px;
    }

    .hero__stat-card {
        padding: 14px 16px;
    }

    .hero__stat-number {
        font-size: 1.3rem;
    }

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

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        justify-content: center;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
