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

:root {
    --charcoal: #2D2D2D;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #F27A62;
    --coral-light: #F49783;
    --coral-pale: #FDEAE6;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F7F5F3;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--gray-200);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--gray-600);
}

.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::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--white);
}

.nav.scrolled .nav-menu a:hover,
.nav.scrolled .nav-menu a:focus {
    color: var(--charcoal);
}

.nav-cta {
    font-size: 0.8125rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: var(--coral) !important;
    border: 1px solid var(--coral);
    padding: 8px 18px;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--coral);
    color: var(--white) !important;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/35844834/pexels-photo-35844834.png?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.55) 0%,
        rgba(45, 45, 45, 0.65) 50%,
        rgba(26, 26, 26, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--coral-light);
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 0;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

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

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

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

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--charcoal-deep);
    border-color: var(--charcoal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 45, 45, 0.3);
}

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

.btn-ghost-light:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── SECTION COMMON ─── */
section {
    padding: 120px 0;
}

.section-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 520px;
}

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

.services .container {
    text-align: center;
}

.services .section-sub {
    margin: 0 auto 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    padding: 48px 32px;
    text-align: left;
    border-right: 1px solid var(--gray-200);
    transition: background 0.4s var(--ease-out);
}

.service-card:first-child {
    padding-left: 0;
}

.service-card:last-child {
    border-right: none;
    padding-right: 0;
}

.service-card:hover {
    background: var(--cream);
}

.service-card:hover .service-icon svg {
    stroke: var(--coral);
}

.service-card:hover .service-card-title {
    color: var(--coral);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--charcoal);
    transition: stroke 0.3s;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-image-wrapper {
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-sub {
    margin-bottom: 24px;
}

.about-content p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-details {
    margin: 32px 0;
    padding: 32px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.about-detail-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.about-detail-value {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
}

.about-detail-value a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.about-detail-value a:hover {
    color: var(--coral);
}

.about-content .btn {
    align-self: flex-start;
    margin-top: 8px;
}

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

.gallery .container {
    text-align: center;
}

.gallery .section-sub {
    margin: 0 auto 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 5/4;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ─── CTA ─── */
.cta {
    background: var(--charcoal-deep);
    padding: 120px 0;
    text-align: center;
}

.cta-tag {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-ghost-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: transparent;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--white);
}

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

.contact-info .section-sub {
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-item-value a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.contact-item-value a:hover {
    color: var(--coral);
}

/* ─── FORM ─── */
.contact-form-wrapper {
    background: var(--cream);
    padding: 48px;
}

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

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

.form-group label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(242, 122, 98, 0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--coral-pale);
    color: var(--charcoal);
    font-size: 0.9375rem;
    font-weight: 300;
    margin-top: 8px;
}

.form-success svg {
    width: 20px;
    height: 20px;
    stroke: var(--coral);
    flex-shrink: 0;
}

.form-success.visible {
    display: flex;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal-deep);
    padding: 64px 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

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

.footer-contact a {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: color 0.3s;
}

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

.footer-bottom {
    margin-top: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--gray-600);
}

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

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

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

    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .service-card:first-child,
    .service-card:last-child {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 0.9375rem;
        color: var(--charcoal) !important;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 24px;
        display: inline-block !important;
        text-align: center;
        width: 100%;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

    .hero-sub {
        font-size: 0.9375rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .service-card {
        padding: 40px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .service-card:first-child,
    .service-card:last-child {
        padding-left: 0;
        padding-right: 0;
    }

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

    .about-image-wrapper {
        max-height: 400px;
    }

    .about-content {
        padding: 64px 24px;
    }

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

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

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }

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

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
