/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1F2937;
    background: #FAFAF9;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
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; }

/* ── Custom Properties ── */
:root {
    --coral: #E8735A;
    --coral-light: #F49782;
    --coral-pale: #FDEAE6;
    --charcoal: #1F2937;
    --charcoal-light: #374151;
    --cream: #FAFAF9;
    --warm-white: #FDF8F6;
    --sand: #F5F0EC;
    --sand-light: #FAF5F1;
    --text: #1F2937;
    --text-muted: #6B7280;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(31,41,55,0.08);
    --shadow-lg: 0 12px 48px rgba(31,41,55,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; color: var(--charcoal); }
.text-coral { color: var(--coral); }
.text-white { color: #fff; }
em { font-style: italic; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif; font-weight: 600;
    font-size: 15px; border-radius: 50px; padding: 14px 32px;
    transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-coral { background: var(--coral); color: #fff; border-color: var(--coral); }
.btn-coral:hover { background: #D4614A; border-color: #D4614A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,115,90,0.35); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-white { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--coral); margin-bottom: 12px; }
.section-eyebrow--light { color: rgba(255,255,255,0.7); }
.section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-title--light { color: #fff; }
.section-desc { font-size: 17px; color: var(--text-muted); line-height: 1.8; }
.section-desc--light { color: rgba(255,255,255,0.75); }

/* ── Header ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,250,249,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31,41,55,0.06);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(31,41,55,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 18px; color: var(--charcoal); }
.logo--light { color: #fff; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 8px 18px; border-radius: 50px; font-weight: 500; font-size: 15px; transition: var(--transition); }
.main-nav a:hover { background: var(--coral-pale); color: var(--coral); }
.main-nav .btn-coral { padding: 10px 24px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--charcoal); }
.icon-close { display: none; }

/* ── Mobile Nav ── */
.nav-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(250,250,249,0.98); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-overlay-inner ul { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nav-overlay-inner a { font-size: 22px; font-family: 'Playfair Display', serif; font-weight: 600; padding: 12px 24px; transition: var(--transition); }
.nav-overlay-inner a:hover { color: var(--coral); }
.nav-overlay-inner .btn-coral { font-size: 16px; font-family: 'DM Sans', sans-serif; padding: 14px 36px; }

/* ── Hero ── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--sand-light) 50%, var(--coral-pale) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(232,115,90,0.12) 0%, transparent 60%); }
.hero-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--coral); margin-bottom: 16px; }
.hero-headline { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15; margin-bottom: 24px; color: var(--charcoal); }
.hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--charcoal-light); }
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute; top: -20px; right: -20px; width: 120px; height: 120px;
    background: var(--coral); border-radius: 50%; opacity: 0.15; z-index: -1;
}
.hero-card {
    position: absolute; bottom: -24px; left: -32px;
    background: var(--charcoal); color: #fff;
    padding: 20px 28px; border-radius: var(--radius);
    display: flex; align-items: center; gap: 16px;
    box-shadow: var(--shadow-lg);
}
.hero-card-icon { background: var(--coral); width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-stat { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1; }
.hero-card-label { font-size: 12px; opacity: 0.7; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--coral), 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); } }

/* ── Services ── */
.services { padding: 100px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #fff; border-radius: var(--radius); padding: 40px 32px;
    transition: var(--transition); border: 1px solid rgba(31,41,55,0.05);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--coral-pale); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--coral-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--coral); }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: var(--sand-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -40px; right: -40px;
    border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
    border: 6px solid var(--sand-light);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute; top: -20px; left: -20px;
    background: var(--coral); color: #fff;
    padding: 20px 24px; border-radius: var(--radius);
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 8px 24px rgba(232,115,90,0.4);
}
.badge-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; }
.badge-text { font-size: 13px; opacity: 0.9; text-align: center; line-height: 1.4; }
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-lead { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; align-items: center; gap: 24px; margin: 32px 0; padding: 28px 0; }
.stat { text-align: center; flex: 1; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--coral); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(31,41,55,0.1); }
.about-content > a { margin-top: 8px; }

/* ── Why Us ── */
.why-us { padding: 100px 0; position: relative; overflow: hidden; }
.why-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2D3748 100%);
}
.why-us .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 40px 32px;
    transition: var(--transition); backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: rgba(232,115,90,0.4); }
.why-card-number { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: rgba(232,115,90,0.3); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── Gallery ── */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 260px); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,41,55,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 15px; }
.gallery-item--large { grid-column: span 6; }
.gallery-item:not(.gallery-item--large) { grid-column: span 6; }
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item--large, .gallery-item:not(.gallery-item--large) { grid-column: span 1; }
    .gallery-item { height: 260px; }
}

/* ── CTA Banner ── */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--coral) 0%, #D4614A 100%); position: relative; overflow: hidden; }
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text { flex: 1; min-width: 280px; }
.cta-headline { font-size: clamp(24px, 3.5vw, 40px); color: #fff; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 520px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--sand-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-eyebrow { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--coral-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-value { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.contact-link { color: var(--coral); transition: var(--transition); }
.contact-link:hover { color: var(--coral-light); text-decoration: underline; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-form-wrapper { }
.contact-form-card {
    background: #fff; border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow); border: 1px solid rgba(31,41,55,0.05);
}
.form-title { font-size: 24px; margin-bottom: 8px; }
.form-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid rgba(31,41,55,0.12);
    border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 15px;
    color: var(--charcoal); background: var(--cream); transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px rgba(232,115,90,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { color: var(--coral); margin-bottom: 16px; }
.form-success h4 { font-size: 22px; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ── Footer ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer-contact p { font-size: 14px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-content { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .main-nav { display: none; }
    .hero { padding: 100px 0 60px; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-card { left: 0; bottom: -16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-secondary { right: 0; bottom: -24px; }
    .about-experience-badge { left: 0; top: -16px; }
    .about-content .section-eyebrow, .about-content .section-title { text-align: center; }
    .about-content > a { display: block; text-align: center; }
    .about-stats { justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-header { margin-bottom: 48px; }
    .services, .about, .why-us, .gallery, .contact { padding: 72px 0; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 28px; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .service-card { padding: 28px 24px; }
    .contact-form-card { padding: 24px; }
}
