/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #f97316; color: #fff; padding: 8px 16px; z-index: 9999; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ── Variables ──────────────────────────────────── */
:root {
    --charcoal: #1e293b;
    --charcoal-light: #334155;
    --coral: #f97316;
    --coral-dark: #ea6c0a;
    --coral-light: #fff7ed;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(30,41,59,.08);
    --shadow-md: 0 4px 20px rgba(30,41,59,.1);
    --shadow-lg: 0 10px 40px rgba(30,41,59,.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

/* ── Layout ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ── Section Tags & Titles ──────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 18px;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
}
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.lead {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--coral);
    color: var(--white);
    border: 2px solid var(--coral);
}
.btn--primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--white {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--white);
}
.btn--white:hover { background: var(--neutral-100); transform: translateY(-2px); }
.btn--nav {
    background: var(--coral);
    color: var(--white);
    padding: 10px 24px;
    font-size: 14px;
}
.btn--nav:hover { background: var(--coral-dark); }
.btn--full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 14px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 2px;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    transition: color var(--transition);
}
.logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.site-header.scrolled .logo-text { color: var(--charcoal); }
.site-header.scrolled .logo-sub { color: var(--neutral-500); }

/* ── Nav ────────────────────────────────────────── */
.nav-menu ul { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.site-header.scrolled .nav-menu a { color: var(--neutral-600); }
.site-header.scrolled .nav-menu a:hover { color: var(--charcoal); }

/* ── Mobile Nav Toggle ──────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .hamburger { background: var(--charcoal); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(30,41,59,.82) 0%, rgba(30,41,59,.55) 60%, rgba(30,41,59,.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 60px;
    max-width: 720px;
}
.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(42px, 7vw, 80px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.2);
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: .4; }
}

/* ── About ──────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 560px;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}
.about-img-accent img { width: 100%; height: 165px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    box-shadow: var(--shadow-md);
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--neutral-600);
}
.icon-check {
    width: 18px;
    height: 18px;
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Areas ──────────────────────────────────────── */
.areas { background: var(--neutral-50); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.area-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    group: true;
}
.area-img {
    height: 260px;
    overflow: hidden;
}
.area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.area-card:hover .area-img img { transform: scale(1.08); }
.area-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(30,41,59,.85));
    color: var(--white);
}
.area-info h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.area-info p {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

/* ── Services ───────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    background: var(--white);
    border-color: var(--neutral-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--coral-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--coral);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--coral); color: var(--white); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────── */
.testimonials { background: var(--charcoal); }
.testimonials .section-tag { color: var(--coral); }
.testimonials .section-title { color: var(--white); }
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
    flex: 0 0 100%;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .testimonial-card { flex: 0 0 50%; }
}
.testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 40px;
}
.quote-mark {
    width: 40px;
    height: 40px;
    color: var(--coral);
    margin-bottom: 20px;
    opacity: .7;
}
.testimonial-text {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--neutral-600);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}
.author-location {
    font-size: 13px;
    color: var(--neutral-400);
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.slider-btn:hover { background: var(--coral); border-color: var(--coral); }
.slider-btn svg { width: 18px; height: 18px; }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(30,41,59,.9) 0%, rgba(30,41,59,.7) 100%);
}
.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Contact ────────────────────────────────────── */
.contact { background: var(--neutral-50); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
}
.contact-item a {
    color: var(--charcoal);
    transition: color var(--transition);
}
.contact-item a:hover { color: var(--coral); }

/* ── Contact Form ───────────────────────────────── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}
.contact-form h3 {
    font-size: 24px;
    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: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--charcoal);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow 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(249,115,22,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
    font-size: 13px;
    color: var(--neutral-400);
    margin-top: 16px;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success svg {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
}
.form-success h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.form-success p {
    color: var(--neutral-500);
    font-size: 15px;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.65);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.45); }
.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 8px;
}
.footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
    margin-top: 20px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 15px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

/* ── Animations ─────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 16px;
    }
    .nav-menu a {
        color: var(--charcoal);
        font-size: 17px;
    }
    .nav-menu a::after { display: none; }
    .btn--nav { background: var(--coral); color: var(--white); }
    .hero-content { padding-top: 100px; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 28px; }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images { min-height: 400px; }
    .about-img-main img { height: 400px; }
    .about-img-accent { width: 160px; right: -10px; bottom: -20px; }
    .about-img-accent img { height: 120px; }
    .about-badge { top: -12px; left: -10px; padding: 12px 16px; font-size: 12px; }
    .about-features { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .area-img { height: 200px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 32px 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { display: none; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 280px; }
}
