/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: #FDFBF8; color: #2C2824; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ─── Navigation ─── */
.nav-fixed {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 99, 60, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled { box-shadow: 0 1px 20px rgba(44, 40, 36, 0.06); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.125rem;
    color: #2C2824; letter-spacing: -0.01em;
}
.nav-logo-icon { color: #B8633C; }
.nav-logo-text { display: none; }
.nav-menu-btn, .nav-cta { display: flex; align-items: center; }
.nav-menu-btn { color: #2C2824; padding: 8px; transition: color 0.2s; }
.nav-menu-btn:hover { color: #B8633C; }
.nav-cta-btn {
    display: inline-flex; align-items: center;
    padding: 10px 22px; border-radius: 100px;
    background: #B8633C; color: #FDFBF8;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta-btn:hover { background: #A35230; transform: translateY(-1px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    display: flex; flex-direction: column; padding: 100px 32px 40px;
    animation: fadeSlideDown 0.3s ease;
}
.mobile-menu.hidden { display: none; }
.mobile-menu-close {
    position: absolute; top: 20px; right: 24px; color: #2C2824; padding: 8px;
    transition: color 0.2s;
}
.mobile-menu-close:hover { color: #B8633C; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400;
    color: #2C2824; padding: 8px 0; border-bottom: 1px solid rgba(184, 99, 60, 0.1);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-link:hover { color: #B8633C; padding-left: 8px; }
.mobile-menu-footer { margin-top: auto; padding-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-phone, .mobile-menu-email {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9375rem; color: #8A8278; transition: color 0.2s;
}
.mobile-menu-phone:hover, .mobile-menu-email:hover { color: #B8633C; }

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px; min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr;
    max-width: 1200px; margin: 0 auto; padding: 48px 24px;
    gap: 40px; align-items: center; flex: 1;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: #B8633C; margin-bottom: 24px;
}
.hero-eyebrow-line {
    width: 32px; height: 1px; background: #B8633C; flex-shrink: 0;
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.15;
    letter-spacing: -0.02em; color: #2C2824; margin-bottom: 24px;
    max-width: 600px;
}
.hero-subhead {
    font-size: 1.0625rem; line-height: 1.7; color: #8A8278;
    max-width: 440px; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    background: #B8633C; color: #FDFBF8;
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #A35230; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184, 99, 60, 0.25); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
    display: inline-flex; align-items: center;
    padding: 14px 28px; border-radius: 100px;
    border: 1px solid rgba(44, 40, 36, 0.2); color: #2C2824;
    font-size: 0.875rem; font-weight: 400;
    transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: #B8633C; color: #B8633C; }
.hero-stats {
    display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 1.75rem;
    font-weight: 500; color: #B8633C; line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: #8A8278; line-height: 1.4; letter-spacing: 0.02em; }
.hero-stat-divider {
    width: 1px; height: 40px; background: rgba(184, 99, 60, 0.2);
}
.hero-image-wrap { position: relative; }
.hero-image-frame {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 32px 64px rgba(44, 40, 36, 0.12);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute; top: -16px; right: -16px; width: 120px; height: 120px;
    border: 1px solid rgba(184, 99, 60, 0.2); border-radius: 16px; z-index: -1;
}
.hero-image-caption {
    margin-top: 12px; font-size: 0.75rem; color: #8A8278;
    letter-spacing: 0.04em; font-style: italic;
}
.hero-line {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-line span {
    display: block; height: 1px;
    background: linear-gradient(90deg, #B8633C 0%, rgba(184, 99, 60, 0) 100%);
}

/* ─── Section Shared ─── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: #B8633C; margin-bottom: 16px;
}
.section-eyebrow-line { width: 24px; height: 1px; background: #B8633C; flex-shrink: 0; }
.section-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.2;
    letter-spacing: -0.01em; color: #2C2824; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1rem; line-height: 1.7; color: #8A8278; font-weight: 300;
}
.text-terracotta { color: #B8633C; }

/* ─── Services ─── */
.services { padding: 100px 0; }
.services-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.service-card {
    padding: 32px; border-radius: 16px;
    border: 1px solid rgba(184, 99, 60, 0.08);
    background: rgba(253, 251, 248, 0.5);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #B8633C, #E8C4A8);
    opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(184, 99, 60, 0.2); box-shadow: 0 16px 48px rgba(184, 99, 60, 0.08); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-num {
    font-family: 'Cormorant Garamond', serif; font-size: 0.875rem;
    color: rgba(184, 99, 60, 0.35); font-weight: 500; margin-bottom: 16px;
}
.service-icon { color: #B8633C; margin-bottom: 20px; }
.service-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.375rem;
    font-weight: 500; color: #2C2824; margin-bottom: 12px; line-height: 1.3;
}
.service-desc { font-size: 0.9375rem; line-height: 1.7; color: #8A8278; font-weight: 300; margin-bottom: 20px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8125rem; font-weight: 500; color: #B8633C;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(2px); }

/* ─── About ─── */
.about { padding: 100px 0; background: #F9F3EA; }
.about-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.about-image-col { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-image-main { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 48px rgba(44, 40, 36, 0.1); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-secondary {
    border-radius: 12px; overflow: hidden; box-shadow: 0 16px 32px rgba(44, 40, 36, 0.08);
    display: none;
}
.about-divider { width: 48px; height: 1px; background: #B8633C; margin: 24px 0; }
.about-body { font-size: 1rem; line-height: 1.8; color: #8A8278; font-weight: 300; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value-icon { color: #B8633C; flex-shrink: 0; margin-top: 2px; }
.about-value-title { display: block; font-size: 0.9375rem; font-weight: 500; color: #2C2824; margin-bottom: 4px; }
.about-value-desc { font-size: 0.875rem; color: #8A8278; line-height: 1.6; font-weight: 300; }

/* ─── Process ─── */
.process { padding: 100px 0; }
.process-steps {
    display: grid; grid-template-columns: 1fr; gap: 0;
    max-width: 900px; margin: 0 auto;
}
.process-step { padding: 32px 0; position: relative; }
.process-step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem;
    font-weight: 300; color: rgba(184, 99, 60, 0.15); line-height: 1;
    margin-bottom: 12px;
}
.process-step-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    font-weight: 500; color: #2C2824; margin-bottom: 12px;
}
.process-step-desc { font-size: 0.9375rem; line-height: 1.7; color: #8A8278; font-weight: 300; max-width: 480px; }
.process-step-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: rgba(184, 99, 60, 0.1);
}
.process-step:last-child .process-step-line { display: none; }

/* ─── Areas ─── */
.areas { padding: 100px 0; background: #F9F3EA; }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.areas-desc { font-size: 1rem; line-height: 1.8; color: #8A8278; font-weight: 300; margin: 24px 0 32px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
    padding: 8px 16px; border-radius: 100px;
    border: 1px solid rgba(184, 99, 60, 0.2);
    font-size: 0.8125rem; color: #2C2824; font-weight: 400;
    transition: background 0.2s, color 0.2s;
}
.area-tag:hover { background: #B8633C; color: #FDFBF8; border-color: #B8633C; }
.areas-map-placeholder {
    background: #FDFBF8; border-radius: 16px; padding: 48px;
    text-align: center; border: 1px solid rgba(184, 99, 60, 0.08);
}
.areas-map-icon { color: #B8633C; margin: 0 auto 16px; }
.areas-map-text { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #2C2824; margin-bottom: 24px; }
.text-sand-600 { color: #A8875A; }
.areas-map-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 100px;
    background: #B8633C; color: #FDFBF8;
    font-size: 0.875rem; font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}
.areas-map-btn:hover { background: #A35230; transform: translateY(-1px); }

/* ─── CTA Banner ─── */
.cta-banner { padding: 80px 0; background: #2C2824; }
.cta-banner-inner {
    display: flex; flex-direction: column; gap: 32px; align-items: center;
    text-align: center;
}
.cta-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #FDFBF8; line-height: 1.2;
}
.cta-desc { font-size: 1rem; line-height: 1.7; color: rgba(253, 251, 248, 0.6); font-weight: 300; max-width: 480px; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    background: #FDFBF8; color: #2C2824;
    font-size: 0.875rem; font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: #F2E8D5; transform: translateY(-2px); }
.btn-terracotta-outline {
    display: inline-flex; align-items: center;
    padding: 14px 28px; border-radius: 100px;
    border: 1px solid rgba(184, 99, 60, 0.5); color: #E8C4A8;
    font-size: 0.875rem; font-weight: 400;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-terracotta-outline:hover { border-color: #B8633C; color: #B8633C; background: rgba(184, 99, 60, 0.05); }

/* ─── Contact ─── */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-desc { font-size: 1rem; line-height: 1.8; color: #8A8278; font-weight: 300; margin: 24px 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { color: #B8633C; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #B8633C; margin-bottom: 4px; }
.contact-detail p { font-size: 0.9375rem; color: #2C2824; line-height: 1.6; }
.contact-detail a { color: #2C2824; text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: #B8633C; }

/* Form */
.contact-form-col { }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; color: #8A8278;
}
.form-input {
    padding: 14px 16px; border-radius: 10px;
    border: 1px solid rgba(184, 99, 60, 0.15);
    background: #FDFBF8; color: #2C2824;
    font-size: 0.9375rem; font-family: 'Inter', sans-serif; font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; width: 100%;
}
.form-input:focus { border-color: #B8633C; box-shadow: 0 0 0 3px rgba(184, 99, 60, 0.08); }
.form-input::placeholder { color: rgba(138, 130, 120, 0.5); }
.form-select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%238A8278' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 120px; }
.btn-full { width: 100%; justify-content: center; }

/* Form Success */
.form-success {
    text-align: center; padding: 48px 24px;
    animation: fadeIn 0.4s ease;
}
.form-success-icon { color: #B8633C; margin: 0 auto 20px; }
.form-success-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.75rem;
    font-weight: 500; color: #2C2824; margin-bottom: 12px;
}
.form-success-desc { font-size: 0.9375rem; color: #8A8278; line-height: 1.7; font-weight: 300; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Footer ─── */
.footer { padding: 64px 0 0; background: #2C2824; }
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 1.125rem; color: #FDFBF8; margin-bottom: 16px;
}
.footer-logo svg { color: #E8C4A8; }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; color: rgba(253, 251, 248, 0.5); font-weight: 300; max-width: 280px; }
.footer-heading {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(253, 251, 248, 0.4);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(253, 251, 248, 0.6); line-height: 1.5; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #E8C4A8; }
.footer-bottom {
    border-top: 1px solid rgba(253, 251, 248, 0.08);
    padding: 24px 0;
    display: flex; flex-direction: column; gap: 8px; align-items: center;
    text-align: center;
}
.footer-copy { font-size: 0.8125rem; color: rgba(253, 251, 248, 0.35); }
.footer-location { font-size: 0.8125rem; color: rgba(253, 251, 248, 0.25); }

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .about-image-secondary { display: block; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
    .nav-logo-text { display: block; }
    .nav-menu-btn { display: none; }
    .hero-grid { grid-template-columns: 1fr 0.8fr; }
    .about-grid { grid-template-columns: 0.8fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step-line { display: none; }
    .cta-banner-inner { flex-direction: row; text-align: left; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(4, 1fr); }
}
