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

:root {
    --coral: #E8635B;
    --coral-dark: #D14E47;
    --charcoal: #1E2128;
    --charcoal-mid: #2C2F36;
    --charcoal-light: #3D4048;
    --neutral-900: #111317;
    --neutral-800: #1A1D23;
    --neutral-700: #252830;
    --neutral-600: #32363F;
    --neutral-500: #4A4E59;
    --neutral-400: #6B7080;
    --neutral-300: #9498A5;
    --neutral-200: #C4C8D1;
    --neutral-100: #E8E9ED;
    --neutral-50: #F4F5F7;
    --white: #FFFFFF;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.16), 0 4px 12px rgba(0,0,0,0.08);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    box-shadow: 0 4px 16px rgba(232, 99, 91, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn--outline-light:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* SECTION HEADER */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.65;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 33, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav__brand {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo {
    color: var(--coral);
}

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

.nav__links a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-300);
    transition: color var(--transition);
    position: relative;
}
.nav__links a:not(.btn):hover {
    color: var(--white);
}
.nav__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition);
}
.nav__links a:not(.btn):hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__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);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/20092122/pexels-photo-20092122.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 19, 23, 0.88) 0%,
        rgba(30, 33, 40, 0.82) 50%,
        rgba(44, 47, 54, 0.75) 100%
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__accent {
    color: var(--coral);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: var(--neutral-300);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    text-align: center;
}

.hero__trust-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__trust-label {
    font-size: 0.75rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-600);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--neutral-500);
    border-radius: 12px;
    position: relative;
}
.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--coral);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}

/* SERVICES */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}
.service-card:hover {
    background: var(--white);
    border-color: var(--coral);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 99, 91, 0.1);
    border-radius: var(--radius-md);
    color: var(--coral);
    margin-bottom: 20px;
}

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

.service-card__text {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.65;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: var(--neutral-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    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-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__accent-box {
    position: absolute;
    top: -20px;
    left: -16px;
    background: var(--coral);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about__accent-num {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.about__accent-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 28px 0 32px;
}

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

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

.about__content > .btn {
    margin-top: 8px;
}

/* GALLERY */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(4) { grid-row: span 2; }
.gallery__item:nth-child(6) { grid-row: span 2; }

/* REVIEWS */
.reviews {
    padding: 100px 0;
    background: var(--charcoal);
}

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

.reviews .section-subtitle {
    color: var(--neutral-400);
}

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

.review-card {
    background: var(--neutral-800);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}
.review-card:hover {
    border-color: var(--coral);
    box-shadow: 0 0 0 1px var(--coral);
    transform: translateY(-2px);
}

.review-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-card__text {
    font-size: 0.9375rem;
    color: var(--neutral-200);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    color: rgba(255,255,255,0.8);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

/* CONTACT */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact__info .section-title {
    text-align: left;
}

.contact__text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.contact__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 99, 91, 0.1);
    border-radius: var(--radius-sm);
    color: var(--coral);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact__detail p,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}
.contact__detail a:hover {
    color: var(--coral);
}

/* FORM */
.contact__form-wrap {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    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);
    box-shadow: 0 0 0 3px rgba(232, 99, 91, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236B7080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-success {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    color: #059669;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--neutral-800);
}

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

.footer__brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--neutral-400);
    max-width: 280px;
}

.footer__col strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a,
.footer__col li {
    font-size: 0.875rem;
    color: var(--neutral-400);
    transition: color var(--transition);
}
.footer__col a:hover {
    color: var(--coral);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--neutral-500);
}
.footer__bottom a {
    color: var(--neutral-400);
    transition: color var(--transition);
}
.footer__bottom a:hover {
    color: var(--coral);
}

/* MOBILE NAV */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        border-top: 1px solid var(--neutral-700);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__links a:not(.btn) {
        padding: 14px 0;
        border-bottom: 1px solid var(--neutral-700);
        font-size: 1rem;
    }
    .nav__links a:not(.btn)::after {
        display: none;
    }
    .nav__links .btn {
        margin-top: 16px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

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

    .about__images {
        max-width: 480px;
    }

    .about__img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about__content .section-title,
    .contact__info .section-title {
        text-align: center;
    }
    .about__content,
    .contact__info {
        text-align: center;
    }
    .about__text { text-align: center; }
    .about__values { justify-content: center; }
    .about__content > .btn { margin: 0 auto; }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item:nth-child(1),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(6) {
        grid-row: span 1;
    }

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

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

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

    .footer__brand {
        grid-column: span 2;
    }

    .hero__trust {
        gap: 20px;
    }
    .hero__trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

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

    .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;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure content is visible even without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
