/* ═══════════════════════════════════════════════════
   LA TABLE DE MARGAUX — Design System & Styles
   Mobile-First Responsive CSS
   ═══════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Utilities ────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Design Tokens ────────────────────────────────── */
:root {
    /* Colors - Enhanced Premium Palette */
    --color-bg: #FCFAF8;
    --color-bg-alt: #F4EFEA;
    --color-text: #211D18;
    --color-text-light: #6A6054;
    --color-accent: #9A7B56;
    --color-accent-hover: #7A5F40;
    --color-terracotta: #C4735B;
    --color-terracotta-light: #D4917D;
    --color-olive: #6B7F5E;
    --color-olive-light: #8A9E7D;
    --color-dark: #12100E;
    --color-white: #FFFFFF;
    --color-border: #E8E0D5;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --letter-spacing-heading: 0.02em;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Sizes */
    --header-height: 70px;
    --container-max: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows - Refined and softer */
    --shadow-sm: 0 4px 12px rgba(33, 29, 24, 0.04);
    --shadow-md: 0 10px 30px rgba(33, 29, 24, 0.08);
    --shadow-lg: 0 20px 40px rgba(33, 29, 24, 0.12);
    --shadow-xl: 0 30px 60px rgba(33, 29, 24, 0.15);

    /* Transitions - Smoother */
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 300ms var(--ease-out);
    --transition-base: 500ms var(--ease-out);
    --transition-slow: 800ms var(--ease-out);
}

/* ── Base ─────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

/* ── Layout ───────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    overflow-x: hidden;
    /* Prevents overflow from reveal-left/right animations */
    position: relative;
    width: 100%;
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2.5rem;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-accent);
}

.section__label--light {
    color: var(--color-terracotta-light);
}

.section__label--light::before {
    background: var(--color-terracotta-light);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: var(--letter-spacing-heading);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section__title em {
    font-style: italic;
    color: var(--color-accent);
}

.section__title--light {
    color: var(--color-white);
}

.section__title--light em {
    color: var(--color-terracotta-light);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section__intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(154, 123, 86, 0.25);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 123, 86, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

.btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 123, 86, 0.2);
}

.btn--full {
    width: 100%;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-base);
}

.header--scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

/* Remove backdrop-filter when mobile menu is open to prevent
   breaking position:fixed on the child nav overlay */
.header.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    text-decoration: none;
    z-index: 1001;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.header--scrolled .header__logo-text {
    color: var(--color-text);
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.header__nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header--scrolled .header__nav-link {
    color: var(--color-text-light);
}

.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link.active {
    color: var(--color-accent);
}

.header__nav-link--cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.header__nav-link--cta::after {
    display: none;
}

.header__nav-link--cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* Burger Menu */
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header--scrolled .header__burger span {
    background: var(--color-text);
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.header__nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: rgba(26, 22, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow: hidden;
}

.header__nav.mobile-open .header__nav-list {
    flex-direction: column;
    gap: var(--space-lg);
}

.header__nav.mobile-open .header__nav-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-white);
}

.header__burger.active span {
    background: var(--color-white) !important;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: var(--color-white);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(26, 22, 17, 0.45) 0%,
            rgba(26, 22, 17, 0.3) 40%,
            rgba(26, 22, 17, 0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-terracotta-light);
}

.hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.hero__cta {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   PROCESS — Comment ça marche
   ═══════════════════════════════════════════════════ */
.process {
    background: var(--color-bg);
}

.process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.process__step {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.process__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.process__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.process__text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
    background: var(--color-bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.4;
}

.about__content {
    max-width: 600px;
}

.about__text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.85;
}

.about__text strong {
    color: var(--color-text);
    font-weight: 500;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about__value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.about__value:hover {
    transform: translateX(4px);
}

.about__value-icon {
    font-size: 1.3rem;
}

.about__value-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
    background: var(--color-bg-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__image-wrapper {
    overflow: hidden;
    aspect-ratio: 16/14;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card__image {
    transform: scale(1.05);
}

.service-card__content {
    padding: var(--space-md);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.service-card__text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.gallery {
    background: var(--color-bg);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 16, 14, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform var(--transition-slow);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 2001;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 2001;
}

.lightbox__prev {
    left: 1rem;
}

.lightbox__next {
    right: 1rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 115, 91, 0.15), transparent 70%);
}

.testimonials__carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials__track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 var(--space-md);
    text-align: center;
}

.testimonial-card__stars {
    color: var(--color-terracotta-light);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card__author strong {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-card__author span {
    color: var(--color-terracotta-light);
    font-size: 0.85rem;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.testimonials__dot.active {
    background: var(--color-terracotta-light);
    width: 24px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
    background: var(--color-bg-alt);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 100%;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.form__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form__input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 111, 78, 0.12);
}

.form__input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(196, 75, 75, 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 1.5L6 6.5L11 1.5' stroke='%236B6055' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

input[type="date"].form__input {
    box-sizing: border-box;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Cards */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__info-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact__info-card--accent {
    background: var(--color-accent);
    color: var(--color-white);
}

.contact__info-card--accent p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact__info-card--accent strong {
    color: var(--color-white);
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact__info-item:last-child {
    border-bottom: none;
}

.contact__info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact__info-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.contact__info-item a,
.contact__info-item span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.contact__info-item a:hover {
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer__tagline {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-terracotta-light);
}

.footer__bottom {
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.8rem;
}

.footer__bottom p {
    margin-bottom: 0.25rem;
}

.footer__bottom a {
    color: var(--color-terracotta-light);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS — Scroll Reveal
   ═══════════════════════════════════════════════════ */

/* Initial hidden states */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.15s;
}

.animate-delay-2 {
    transition-delay: 0.3s;
}

.animate-delay-3 {
    transition-delay: 0.45s;
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Body no scroll (lightbox / mobile menu) */
body.no-scroll {
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet (≥768px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Process */
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero CTAs */
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1.3fr 1fr;
    }

    .form__row {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Desktop (≥1024px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    /* Header */
    .header__nav {
        display: flex;
    }

    .header__burger {
        display: none;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Process */
    .process__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Large Desktop (≥1440px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 1440px) {
    :root {
        --container-max: 1400px;
    }

    .hero__title {
        font-size: 5.5rem;
    }
}

/* ═══════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════ */
@media print {

    .header,
    .hero__scroll,
    .lightbox,
    .testimonials__dots,
    .contact__form,
    .footer__social {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}