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

:root {
    --charcoal-900: #1a1a1a;
    --charcoal-800: #2D2D2D;
    --charcoal-700: #3a3a3a;
    --charcoal-600: #4a4a4a;
    --charcoal-500: #6b6b6b;
    --coral-500: #E8644A;
    --coral-600: #d4533a;
    --coral-400: #f07860;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #DDDDDD;
    --neutral-400: #AAAAAA;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--coral-500);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── NAV ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--transition);
}
.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}
.nav-logo-text {
    font-family: var(--font-display);
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}
.nav-list a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.nav-cta {
    background: var(--coral-500) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
}
.nav-cta:hover {
    background: var(--coral-600) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}
.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal-900);
    overflow: hidden;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(45,45,45,0.82) 50%, rgba(26,26,26,0.90) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(232,100,74,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232,100,74,0.08) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 1.5rem 5rem;
    text-align: center;
}
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-400);
    margin-bottom: 1.25rem;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: normal;
    color: var(--coral-500);
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-coral {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}
.btn-coral:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,100,74,0.35);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: var(--charcoal-800);
    border-color: var(--charcoal-300);
}
.btn-outline-dark:hover {
    border-color: var(--coral-500);
    color: var(--coral-500);
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ─── SECTION COMMON ───────────────────────────── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal-800);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    max-width: 560px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ─── SERVICES ─────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--neutral-100);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.06);
}
.service-card-body {
    padding: 1.5rem;
}
.service-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal-800);
    margin-bottom: 0.5rem;
}
.service-card-body p {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    line-height: 1.65;
}

/* ─── ABOUT ────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-float {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text {
    font-size: 1rem;
    color: var(--charcoal-600);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-features {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--charcoal-700);
    font-weight: 500;
}

/* ─── GALLERY ──────────────────────────────────── */
.gallery {
    padding: 6rem 0;
    background: var(--charcoal-900);
}
.gallery .section-title {
    color: var(--white);
}
.gallery .section-desc {
    color: rgba(255,255,255,0.6);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* ─── REVIEWS ──────────────────────────────────── */
.reviews {
    padding: 6rem 0;
    background: var(--neutral-100);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--charcoal-600);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal-800);
}

/* ─── CTA ──────────────────────────────────────── */
.cta {
    padding: 6rem 0;
    background: var(--coral-500);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-eyebrow {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white);
    color: var(--coral-600);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-outline-coral {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-coral:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ─── CONTACT ──────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-desc {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-details {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}
.contact-item dt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-500);
    margin-bottom: 0.35rem;
}
.contact-item dd {
    font-size: 1rem;
    color: var(--charcoal-800);
    font-weight: 500;
}
.contact-item a {
    color: var(--charcoal-800);
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--coral-500);
}
.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-800);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal-700);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px rgba(232,100,74,0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* ─── FOOTER ───────────────────────────────────── */
.footer {
    background: var(--charcoal-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer-logo-text {
    font-family: var(--font-display);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}
.footer h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--coral-400);
}
.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-contact a {
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--coral-400);
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ─── MOBILE NAV ───────────────────────────────── */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
}
.nav-mobile-overlay.active {
    display: block;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-900);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 1.5rem 2rem;
        transition: right var(--transition);
        z-index: 100;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
    }
    .nav-list a {
        padding: 0.85rem 0.75rem;
        font-size: 1rem;
    }
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        text-align: center;
        display: block !important;
    }

    .hero-inner {
        padding: 7rem 1.5rem 4rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-img-float {
        right: 0;
        bottom: -1.5rem;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* ─── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
