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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --charcoal-mid: #3a3a3a;
    --coral: #E07A5F;
    --coral-dark: #c4624a;
    --coral-light: #f0a08a;
    --cream: #FDF8F5;
    --cream-dark: #f5efe9;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #a0a0a0;
    --gray-500: #6b6b6b;
    --gray-600: #4a4a4a;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

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

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal);
}

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

.nav__menu a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

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

.nav__menu a:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero__sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 56px;
}

.hero__divider {
    width: 60px;
    height: 1px;
    background: var(--coral);
    margin-bottom: 32px;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 2px;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--coral);
    border-radius: 2px;
    z-index: -1;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

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

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

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

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

.btn--sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

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

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

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

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

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

.service-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--coral);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-card__icon {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

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

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

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

.about__image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 2px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.about__body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-600);
}

.about__value-line {
    width: 40px;
    height: 1px;
    background: var(--coral);
    flex-shrink: 0;
}

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

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

.gallery__item {
    overflow: hidden;
    border-radius: 2px;
}

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

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

.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(1) img { height: 100%; }
.gallery__item:nth-child(3) { grid-row: span 2; }
.gallery__item:nth-child(3) img { height: 100%; }

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

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

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

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta__body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.cta__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-300);
    transition: color 0.3s var(--ease-smooth);
}

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

/* ─── FORM ─── */
.cta__form-wrap {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-mid);
    border-radius: 2px;
    padding: 40px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--charcoal-mid);
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
    border-radius: 0;
    -webkit-appearance: none;
}

.form__input::placeholder {
    color: var(--gray-500);
}

.form__input:focus {
    border-bottom-color: var(--coral);
}

.form__select {
    color: var(--gray-400);
    cursor: pointer;
}

.form__select option {
    background: var(--charcoal);
    color: var(--white);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(224, 122, 95, 0.1);
    border: 1px solid rgba(224, 122, 95, 0.3);
    border-radius: 2px;
    margin-top: 16px;
}

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

.form__success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-300);
}

.form__success.show {
    display: flex;
}

/* ─── FOOTER ─── */
.footer {
    padding: 64px 0 32px;
    background: var(--charcoal);
    border-top: 1px solid var(--charcoal-mid);
    color: var(--gray-400);
}

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

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-500);
}

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

.footer__links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer__info a {
    color: var(--gray-400);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--charcoal-mid);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE MENU ─── */
.nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__image img {
        height: 560px;
    }

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

    .about__container {
        gap: 48px;
    }

    .about__image img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu.open {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero__image {
        order: -1;
    }

    .hero__image img {
        height: 400px;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__stats {
        gap: 24px;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about__image img {
        height: 360px;
    }

    .gallery {
        padding: 80px 0;
    }

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

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

    .gallery__item img {
        height: 260px;
    }

    .cta {
        padding: 80px 0;
    }

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

    .cta__form-wrap {
        padding: 28px;
    }

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

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

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

    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .gallery__item img {
        height: 300px;
    }
}
