/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== VARIABLES ===== */
:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;
    --coral: #F4845F;
    --coral-deep: #E86A3A;
    --coral-light: #FDEEE8;
    --coral-pale: #FFF5F0;
    --bg: #FDF8F5;
    --bg-alt: #F7F0EC;
    --white: #FFFFFF;
    --cream: #FDF6F0;
    --gray: #8A8A8A;
    --gray-light: #E8E4E0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(45, 45, 45, 0.06);
    --shadow-lg: 0 12px 48px rgba(45, 45, 45, 0.10);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}
.section-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-coral:hover {
    background: var(--coral-deep);
    border-color: var(--coral-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 132, 95, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--coral-pale);
    border-color: var(--coral-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 132, 95, 0.1);
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(253, 248, 245, 0.95);
    box-shadow: 0 2px 20px rgba(45, 45, 45, 0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
}
.logo-icon { width: 32px; height: 32px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--charcoal-light);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--coral-deep) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(244, 132, 95, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(244, 132, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
}
.hero-headline em {
    font-style: italic;
    color: var(--coral);
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-main-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-main-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 2px solid rgba(244, 132, 95, 0.2);
    pointer-events: none;
}
/* Floating cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}
.float-card svg { width: 24px; height: 24px; flex-shrink: 0; }
.float-card strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}
.float-card span {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.3;
}
.float-card--1 {
    top: 12%;
    left: -40px;
    animation-delay: 0s;
}
.float-card--2 {
    bottom: 28%;
    left: -20px;
    animation-delay: -2s;
}
.float-card--3 {
    bottom: 8%;
    right: -30px;
    animation-delay: -4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SERVICES ===== */
.section {
    padding: 100px 0;
}
.services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--coral-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244, 132, 95, 0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--coral-pale);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-alt); }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 640px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 600px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-alt);
}
.about-img-secondary img { width: 100%; height: 400px; object-fit: cover; }
.about-pattern {
    position: absolute;
    top: 40%;
    left: 55%;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    background-image: radial-gradient(circle, var(--coral) 2px, transparent 2px);
    background-size: 16px 16px;
    transform: translate(-50%, -50%);
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal-light);
}
.about-feature svg { width: 18px; height: 18px; flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay span {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item--large { grid-column: span 5; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 7; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 5; }
.gallery-item:nth-child(5) { grid-column: span 7; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-alt); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244, 132, 95, 0.12);
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.review-stars svg { width: 16px; height: 16px; }
.review-card p {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}
.review-author span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--charcoal);
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(244, 132, 95, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(244, 132, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}
.cta-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-item span, .contact-item a {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}
.contact-item a:hover { color: var(--coral); }
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.contact-form-wrapper > p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    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 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(244, 132, 95, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}
.form-success p {
    font-size: 1rem;
    color: var(--charcoal);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 0.82rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL 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: 48px; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .float-card--1 { left: 0; }
    .float-card--2 { left: 10px; }
    .float-card--3 { right: 0; }
    .about-container { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 245, 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(244, 132, 95, 0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-main-img img { height: 440px; }
    .float-card { padding: 12px 16px; }
    .float-card--1 { top: 5%; left: -10px; }
    .float-card--2 { bottom: 40%; left: 0; }
    .float-card--3 { bottom: 5%; right: -10px; }
    .float-card strong { font-size: 1.1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item, .gallery-item--large, .gallery-item--wide,
    .gallery-item:nth-child(2), .gallery-item:nth-child(3),
    .gallery-item:nth-child(4), .gallery-item:nth-child(5) {
        grid-column: span 1;
    }
    .gallery-grid .gallery-item { height: 220px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 32px 24px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    .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%; max-width: 280px; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-item { height: 240px; }
    .footer-links { grid-template-columns: 1fr; }
    .about-images { height: 380px; }
    .about-img-main img { height: 380px; }
    .about-img-secondary img { height: 260px; }
}
