/* ===== 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-weight: 300; line-height: 1.7; color: #262626; background: #f6f6f6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAV ===== */
.nav-fixed {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent; transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav-fixed.scrolled {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-fixed.scrolled .nav-logo span { color: #1c1c1c; }
.nav-fixed.scrolled .nav-link { color: #565656; }
.nav-fixed.scrolled .nav-link:hover { color: #e07a5f; }

.nav-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em;
    color: #fff; transition: color 0.3s;
}
.nav-link {
    font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); transition: color 0.3s;
}
.nav-link:hover { color: #e07a5f; }

.nav-menu-btn {
    background: none; border: none; cursor: pointer; padding: 8px;
    color: #fff; transition: color 0.3s;
}
.nav-fixed.scrolled .nav-menu-btn { color: #262626; }

/* Mobile menu */
#mobile-menu { transition: opacity 0.3s ease, pointer-events 0.3s ease; }
#mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
    font-size: 1.25rem; font-weight: 300; letter-spacing: 0.02em;
    color: #262626; padding: 12px 0; border-bottom: 1px solid #e3e3e3;
    transition: color 0.3s;
}
.mobile-link:hover { color: #e07a5f; }

/* ===== BUTTONS ===== */
.btn-coral {
    display: inline-flex; align-items: center; gap: 8px;
    background: #e07a5f; color: #fff; font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 2px; border: 1.5px solid #e07a5f;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-coral:hover { background: #d46142; border-color: #d46142; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,122,95,0.3); }
.btn-coral.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-coral.btn-lg { padding: 16px 36px; font-size: 0.875rem; }
.btn-coral.btn-full { width: 100%; justify-content: center; }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; font-size: 0.875rem; font-weight: 400;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.35);
    transition: border-color 0.3s, background 0.3s;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline-light.btn-lg { padding: 16px 36px; font-size: 0.875rem; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #262626; font-size: 0.875rem; font-weight: 400;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 2px; border: 1px solid #c4c4c4;
    transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: #e07a5f; color: #e07a5f; }
.btn-outline.btn-lg { padding: 16px 36px; font-size: 0.875rem; }

/* ===== HERO ===== */
.hero { position: relative; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,15,15,0.72) 0%, rgba(28,28,28,0.55) 50%, rgba(224,122,95,0.15) 100%);
}
.hero-content { padding-top: 0; }
.hero-eyebrow {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 400; line-height: 1.1;
    color: #fff; margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.0625rem; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    border-top: 1px solid #e3e3e3; border-bottom: 1px solid #e3e3e3;
    background: #fff;
}
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    padding: 28px 32px; border-right: 1px solid #e3e3e3;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: #e07a5f; flex-shrink: 0; }
.trust-item span { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.02em; color: #565656; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
    font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    color: #e07a5f; margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; line-height: 1.15;
    color: #1c1c1c; letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-desc {
    font-size: 1.0625rem; font-weight: 300; line-height: 1.8;
    color: #737373; max-width: 560px;
}

/* ===== SERVICES ===== */
.services-section { background: #f6f6f6; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: #e3e3e3; border: 1px solid #e3e3e3; border-radius: 2px;
}
.service-card {
    background: #fff; padding: 44px 36px;
    transition: background 0.3s, transform 0.3s;
}
.service-card:hover { background: #fdf4f0; transform: translateY(-2px); }
.service-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    border: 1px solid #e3e3e3; border-radius: 2px; margin-bottom: 28px;
    color: #e07a5f; transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon { border-color: #e07a5f; background: rgba(224,122,95,0.06); }
.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem; font-weight: 400; color: #1c1c1c; margin-bottom: 12px;
}
.service-desc { font-size: 0.9375rem; font-weight: 300; line-height: 1.75; color: #737373; }

/* ===== ABOUT ===== */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 2px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 880px; object-fit: cover; }
.about-stat {
    position: absolute; bottom: -32px; right: -32px;
    background: #e07a5f; color: #fff; padding: 32px 40px;
    display: flex; flex-direction: column; gap: 4px;
}
.stat-number { font-family: 'Playfair Display', Georgia, serif; font-size: 3rem; font-weight: 400; line-height: 1; }
.stat-label { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.about-content { max-width: 480px; }
.about-text { font-size: 1rem; font-weight: 300; line-height: 1.85; color: #565656; margin-bottom: 20px; }
.about-values { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 14px; }
.value-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #e07a5f; flex-shrink: 0;
}
.value-item span { font-size: 0.9375rem; font-weight: 400; color: #323232; }

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.project-card { border-radius: 2px; overflow: hidden; cursor: pointer; }
.project-img { overflow: hidden; }
.project-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-img img { transform: scale(1.03); }
.project-info { padding: 24px 4px; }
.project-cat { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #e07a5f; }
.project-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 400; color: #fff; margin-top: 8px; }

/* ===== CTA ===== */
.cta-section { background: #fdf4f0; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ===== CONTACT ===== */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-text { font-size: 1rem; font-weight: 300; line-height: 1.85; color: #737373; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail svg { color: #e07a5f; flex-shrink: 0; margin-top: 2px; }
.detail-label { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: #9e9e9e; margin-bottom: 4px; }
.detail-value { display: block; font-size: 0.9375rem; font-weight: 400; color: #323232; line-height: 1.6; }
.detail-value:hover { color: #e07a5f; }

/* Form */
.contact-form-wrap { max-width: 520px; }
.contact-form { background: #f6f6f6; padding: 48px; border-radius: 2px; }
.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 400; color: #1c1c1c; 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.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: #737373; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 300;
    color: #262626; background: #fff; border: 1px solid #e3e3e3; border-radius: 2px;
    transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e07a5f; box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4c4c4; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-success {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 40px; text-align: center; color: #262626;
}
.form-success svg { color: #e07a5f; }
.form-success p { font-size: 0.9375rem; font-weight: 300; line-height: 1.7; color: #565656; }
.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: #0f0f0f; color: rgba(255,255,255,0.5); padding: 64px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; flex-wrap: wrap; gap: 32px; }
.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 500; color: #fff;
}
.footer-tagline { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.4); margin-top: 8px; max-width: 280px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-link { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-link:hover { color: #e07a5f; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.3); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid #e3e3e3; }
    .trust-item:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-img-wrap img { height: 500px; }
    .about-stat { bottom: -24px; right: 16px; padding: 24px 28px; }
    .stat-number { font-size: 2.25rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-img img { height: 280px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid #e3e3e3; }
    .trust-item:last-child { border-bottom: none; }
    .hero-title { font-size: 2.25rem; }
}
