/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D2A26;
    background: #FAF6F1;
    -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; }

/* ── Color Palette ────────────────────────────────── */
:root {
    --terracotta: #C4704B;
    --terracotta-dark: #A85A38;
    --terracotta-light: #D4896A;
    --sand: #E8D5C0;
    --sand-light: #F5EDE3;
    --sand-lighter: #FAF6F1;
    --charcoal: #2D2A26;
    --charcoal-light: #4A4540;
    --cream: #FFF9F4;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 112, 75, 0.35);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-light {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
}
.btn-light:hover {
    background: var(--sand-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Top Bar ──────────────────────────────────────── */
.top-bar {
    background: var(--charcoal);
    color: var(--sand);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.3px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sand);
    font-weight: 600;
    transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--terracotta-light); }

/* ── Header ───────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    height: 72px;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 5px;
    line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-primary {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.2;
}
.logo-sub {
    font-size: 11px;
    color: var(--charcoal-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}
.nav a:hover { color: var(--terracotta); }
.nav a:hover::after { width: 100%; }
.nav-cta { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,42,38,0.82) 0%, rgba(45,42,38,0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 112, 75, 0.2);
    border: 1px solid rgba(196, 112, 75, 0.5);
    color: var(--sand);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 28px;
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

/* ── Section Shared ───────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.section-desc {
    font-size: 17px;
    color: var(--charcoal-light);
    line-height: 1.7;
    max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--sand-lighter);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--sand-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-card > p {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--charcoal-light);
}
.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 4px solid var(--white);
}
.about-img-secondary img { width: 260px; height: 200px; object-fit: cover; }
.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(196, 112, 75, 0.4);
}
.about-exp-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.about-exp-text {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.4;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-value-icon {
    width: 36px;
    height: 36px;
    background: var(--sand-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}
.about-value strong {
    display: block;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.about-value span {
    font-size: 14px;
    color: var(--charcoal-light);
    line-height: 1.5;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    padding: 100px 0;
    background: var(--charcoal);
}
.why-us .section-tag { color: var(--terracotta-light); }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: rgba(255,255,255,0.6); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(196, 112, 75, 0.4);
    transform: translateY(-4px);
}
.why-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(196, 112, 75, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
    padding: 80px 0;
    background: var(--terracotta);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}
.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--sand-lighter);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-desc {
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-item a, .contact-item span {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--terracotta); }

.contact-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E0D8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--sand-lighter);
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 112, 75, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 8px;
    color: #2E7D32;
    font-weight: 500;
    margin-top: 16px;
}
.form-success.show { display: flex; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo { margin-bottom: 0; }
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--terracotta-light); }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav ───────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    padding: 8px 16px;
}
.mobile-nav a:hover { color: var(--terracotta); }

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-img-secondary { right: -20px; bottom: -20px; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; }
    .header-inner { height: 64px; }
    .nav, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero { min-height: 80vh; }
    .hero-content { padding: 60px 0; }
    .hero-stats { gap: 0; }
    .hero-stat-divider { margin: 0 16px; }
    .hero-stat-num { font-size: 22px; }
    .services { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .about { padding: 64px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { position: relative; bottom: 0; right: 0; margin-top: -60px; margin-left: 20px; }
    .about-img-main img { height: 300px; }
    .about-experience { top: -12px; left: -12px; }
    .why-us { padding: 64px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 60px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .contact { padding: 64px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrapper { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
