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

:root {
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --charcoal-mid: #3A3A3A;
    --coral: #C85A3C;
    --coral-light: #E07A5F;
    --coral-dark: #A8432A;
    --cream: #F5F0EB;
    --cream-dark: #E8E0D8;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-light: #999999;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    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;
}

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 90, 60, 0.15);
    transition: var(--transition);
}

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

.nav__logo {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: var(--transition);
}

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

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

.nav__cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--coral);
    padding: 10px 20px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--coral-light);
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    padding: 120px 24px 80px;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.5) 100%);
}

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

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

.hero__headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero__accent {
    color: var(--coral);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 90, 60, 0.35);
}

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

.btn--outline:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn--ghost:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn--large {
    padding: 18px 36px;
    font-size: 0.9rem;
}

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

/* ── Stat Cards ── */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    border-color: rgba(200, 90, 60, 0.3);
}

.stat-card--primary {
    border-left: 3px solid var(--coral);
}

.stat-card--secondary {
    border-left: 3px solid var(--coral-light);
}

.stat-card--tertiary {
    border-left: 3px solid var(--cream);
}

.stat-card__number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.stat-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Hero Scroll ── */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero__scroll svg {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-card__img {
    overflow: hidden;
    height: 220px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.about__img-main img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--charcoal);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.about__img-accent img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.about__img-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 12px 32px rgba(200, 90, 60, 0.4);
}

.about__content {
    padding: 20px 0;
}

.about__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 28px;
    color: var(--white);
}

.about__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

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

/* ── Gallery ── */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

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

.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 8;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 4;
}

/* ── CTA Strip ── */
.cta-strip {
    padding: 100px 0;
    background: var(--coral);
}

.cta-strip__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-strip__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-strip__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.btn--large.btn--primary {
    background: var(--charcoal);
}

.btn--large.btn--primary:hover {
    background: var(--charcoal-light);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.4);
}

.btn--large.btn--ghost {
    border-color: var(--white);
    color: var(--white);
}

.btn--large.btn--ghost:hover {
    background: var(--white);
    color: var(--coral);
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--coral);
    transition: var(--transition);
}

.contact__detail a:hover {
    color: var(--coral-dark);
    text-decoration: underline;
}

.contact__map {
    overflow: hidden;
}

/* ── Form ── */
.contact__form-wrap {
    position: relative;
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group__input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.form-group__input:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 90, 60, 0.1);
}

.form-group__input::placeholder {
    color: var(--text-light);
}

.form-group__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.contact__success svg {
    color: var(--coral);
}

.contact__success h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.contact__success p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
}

.footer__brand {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--coral);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--coral);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__cards {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__img-accent {
        right: 0;
    }

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(200, 90, 60, 0.15);
    }

    .nav__menu.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        text-align: center;
        width: 100%;
    }

    .hero {
        padding: 100px 24px 80px;
    }

    .hero__cards {
        flex-direction: column;
    }

    .stat-card {
        border-left: none;
        border-top: 3px solid;
    }

    .stat-card--primary { border-top-color: var(--coral); }
    .stat-card--secondary { border-top-color: var(--coral-light); }
    .stat-card--tertiary { border-top-color: var(--cream); }

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

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .gallery__item img {
        height: 250px;
    }

    .about__img-main img {
        height: 400px;
    }

    .about__img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about__img-accent img {
        width: 100%;
    }

    .about__img-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 16px;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-strip__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .section-header {
        margin-bottom: 48px;
    }

    .services, .about, .gallery, .contact {
        padding: 80px 0;
    }
}
