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

:root {
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --coral: #E07A5F;
    --coral-dark: #C9664D;
    --cream: #F7F5F3;
    --white: #FFFFFF;
    --gray-100: #F0EDEA;
    --gray-200: #E2DED9;
    --gray-300: #C4BFB8;
    --gray-400: #9E9890;
    --gray-500: #7A746C;
    --gray-600: #5C5650;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--coral {
    background: var(--coral);
    color: var(--white);
    border: 1px solid var(--coral);
}

.btn--coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

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

.btn--outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn--outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.1rem 2.4rem;
    font-size: 0.75rem;
}

.btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
}

.btn--full {
    width: 100%;
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    position: relative;
    transition: color 0.3s var(--ease-out);
}

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

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

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

.mobile-menu-btn {
    display: none;
    color: var(--charcoal);
    padding: 0.5rem;
}

/* ── Mobile Menu ────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem;
    z-index: 999;
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s;
}

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

/* ── Hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.45) 0%,
        rgba(44, 44, 44, 0.55) 50%,
        rgba(44, 44, 44, 0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding-top: 72px;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero__sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Intro ──────────────────────────────────────────── */
.intro {
    padding: 8rem 0;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro__text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-top: 1rem;
    transition: color 0.3s, gap 0.3s;
}

.link-arrow:hover {
    color: var(--coral);
    gap: 0.8rem;
}

.intro__image {
    overflow: hidden;
}

.intro__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.intro__image:hover img {
    transform: scale(1.03);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-title {
    margin-bottom: 0.75rem;
}

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

.service-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44, 44, 44, 0.08);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--coral);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-500);
}

/* ── Gallery ────────────────────────────────────────── */
.gallery {
    padding: 8rem 0;
}

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

.gallery__item {
    overflow: hidden;
}

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

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

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

.gallery__item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery__item:nth-child(3) {
    grid-column: span 3;
}

.gallery__item:nth-child(4) {
    grid-column: span 3;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
    padding: 8rem 0;
    background: var(--charcoal);
}

.cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__inner .section-eyebrow {
    color: var(--coral);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.cta__text a {
    color: var(--coral);
    transition: color 0.3s;
}

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

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ────────────────────────────────────────── */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__details {
    font-style: normal;
    margin-bottom: 2.5rem;
}

.contact__details p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contact__details a {
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-300);
    transition: color 0.3s, border-color 0.3s;
}

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

.contact__hours h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact__hours ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.contact__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact__hours li span:first-child {
    color: var(--charcoal);
    font-weight: 400;
}

/* ── Form ───────────────────────────────────────────── */
.contact__form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
}

.contact__form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-300);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--coral);
}

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

.form-group select {
    cursor: pointer;
}

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

.form-success {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--coral);
    text-align: center;
    border: 1px solid var(--coral);
}

.form-success.show {
    display: block;
}

/* ── Map ────────────────────────────────────────────── */
.map-section {
    border-top: 1px solid var(--gray-200);
}

.map-section iframe {
    filter: grayscale(0.6) contrast(1.05);
    transition: filter 0.4s;
}

.map-section:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    padding: 3rem 0;
    background: var(--charcoal);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__brand .logo {
    color: var(--white);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

.footer__copy {
    width: 100%;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
}

/* ── Animations ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

    .gallery__grid {
        grid-template-rows: repeat(3, 220px);
    }

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

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

@media (max-width: 768px) {
    .nav,
    .site-header .btn--coral {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro__image img {
        height: 350px;
    }

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

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

    .gallery__item,
    .gallery__item--wide,
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__hours ul {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

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

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

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

    .gallery__item,
    .gallery__item--wide {
        grid-column: span 1;
        height: 240px;
    }
}
