/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D1F1A;
    background: #FDF6F0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GEOMETRIC BACKGROUND ===== */
.geometric-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.geo-shape {
    position: absolute;
    opacity: 0.06;
}
.geo-circle-1 {
    width: 600px; height: 600px;
    border-radius: 50%;
    background: #C2704E;
    top: -200px; right: -150px;
}
.geo-circle-2 {
    width: 400px; height: 400px;
    border-radius: 50%;
    background: #E8A87C;
    bottom: 10%; left: -100px;
}
.geo-triangle {
    width: 0; height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid #C2704E;
    top: 40%; right: -80px;
    transform: rotate(15deg);
    opacity: 0.04;
}
.geo-square {
    width: 250px; height: 250px;
    background: #D4845A;
    top: 60%; left: 5%;
    transform: rotate(45deg);
    opacity: 0.05;
}
.geo-ring {
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 60px solid #E8A87C;
    bottom: 5%; right: 10%;
    opacity: 0.04;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: 0 4px 30px rgba(194, 112, 78, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 44px; height: 44px;
    background: #C2704E;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D1F1A;
    line-height: 1.2;
}
.logo-sub {
    font-size: 11px;
    color: #C2704E;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: #4A3728;
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #C2704E;
    transition: width 0.3s;
}
.nav a:hover { color: #C2704E; }
.nav a:hover::after { width: 100%; }
.nav-cta {
    background: #C2704E;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: #A85A3A;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(194, 112, 78, 0.3);
    color: #fff !important;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: #2D1F1A;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    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, 31, 26, 0.82) 0%,
        rgba(45, 31, 26, 0.65) 50%,
        rgba(194, 112, 78, 0.4) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
    max-width: 780px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #E8A87C;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-headline em {
    color: #E8A87C;
    font-style: italic;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #C2704E;
    color: #fff;
    box-shadow: 0 4px 20px rgba(194, 112, 78, 0.4);
}
.btn-primary:hover {
    background: #A85A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 112, 78, 0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: #E8A87C;
    color: #E8A87C;
    background: rgba(232, 168, 124, 0.08);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-white {
    background: #fff;
    color: #C2704E;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #E8A87C;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C2704E;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px; height: 2px;
    background: #C2704E;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #2D1F1A;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: #6B5344;
    max-width: 600px;
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}
.services .container { position: relative; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}
.service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    border: 1px solid rgba(194, 112, 78, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(194, 112, 78, 0.12);
}
.card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C2704E, #E8A87C);
    border-radius: 20px 20px 0 0;
}
.card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #FDF6F0, #F5E6D8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2704E;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D1F1A;
    margin-bottom: 10px;
}
.service-card > p {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.6;
    margin-bottom: 18px;
}
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-features li {
    font-size: 0.88rem;
    color: #4A3728;
    padding-left: 20px;
    position: relative;
}
.card-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    background: #E8A87C;
    border-radius: 50%;
}

/* ===== ABOUT ===== */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(194, 112, 78, 0.15);
}
.about-image img { width: 100%; height: 700px; object-fit: cover; }
.about-accent-block {
    position: absolute;
    bottom: -24px; right: -24px;
    background: #C2704E;
    color: #fff;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(194, 112, 78, 0.3);
}
.accent-stat { display: flex; flex-direction: column; }
.accent-number {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 600;
}
.accent-id {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
}
.about-content .section-title { margin-top: 8px; }
.about-body {
    font-size: 1.02rem;
    color: #6B5344;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #FDF6F0, #F5E6D8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2704E;
}
.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: #2D1F1A;
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.88rem;
    color: #6B5344;
    line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: linear-gradient(180deg, #FDF6F0 0%, #F8EDE3 100%);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(194, 112, 78, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D1F1A;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.92rem;
    color: #6B5344;
    line-height: 1.6;
}
.step-line {
    position: absolute;
    top: 52px;
    right: -12px;
    width: 24px; height: 2px;
    background: #C2704E;
    opacity: 0.3;
}
.process-step:last-child .step-line { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: #FDF6F0;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(194, 112, 78, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(194, 112, 78, 0.1);
}
.testimonial-quote {
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    color: #4A3728;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2D1F1A;
}
.author-detail {
    font-size: 0.82rem;
    color: #C2704E;
    font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, #C2704E 0%, #A85A3A 100%);
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.cta-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #FDF6F0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-body {
    font-size: 1.02rem;
    color: #6B5344;
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2704E;
    box-shadow: 0 4px 15px rgba(194, 112, 78, 0.08);
}
.detail-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2D1F1A;
    margin-bottom: 4px;
    font-weight: 700;
}
.detail-item span, .detail-item a {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.5;
}
.detail-item a:hover { color: #C2704E; }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(194, 112, 78, 0.08);
    border: 1px solid rgba(194, 112, 78, 0.06);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2D1F1A;
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.88rem;
    color: #6B5344;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A3728;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(194, 112, 78, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2D1F1A;
    background: #FDF6F0;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C2704E;
    box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B89780;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: #4CAF50;
    margin-bottom: 16px;
}
.form-success p {
    font-size: 1rem;
    color: #4A3728;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    background: #2D1F1A;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand .logo-mark {
    width: 40px; height: 40px;
    font-size: 14px;
}
.footer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.footer-company {
    font-size: 12px;
    color: #E8A87C;
    font-weight: 600;
}
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: #E8A87C; }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}
.footer-contact a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #E8A87C; }
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.footer-bottom {
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}
.footer-legal {
    margin-top: 8px;
    font-size: 11px !important;
    line-height: 1.6 !important;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .step-line { display: none; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-contact { text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(253, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(194, 112, 78, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav a { font-size: 16px; }

    .hero-content { padding: 100px 24px 60px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat { padding: 0 16px; }
    .stat-divider { display: none; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 450px; }
    .about-accent-block { bottom: -16px; right: 16px; }

    .process-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .cta-banner .container { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
