/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Navigation ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 244, 0.0);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
header.nav-scrolled {
    background: rgba(245, 240, 244, 0.97);
    box-shadow: 0 2px 24px rgba(107, 76, 110, 0.08);
    backdrop-filter: blur(12px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 76px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #3d2c3f;
    z-index: 1001;
}
.nav-logo-text { letter-spacing: -0.01em; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.925rem;
    font-weight: 500;
    color: #4a344c;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(107, 76, 110, 0.08); color: #6B4C6E; }
.nav-cta {
    background: #6B4C6E !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: #5a3f5c !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #4a344c;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #f5f0f4;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(107, 76, 110, 0.12);
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; padding: 12px 16px; font-size: 1.05rem; }
    .nav-cta { text-align: center; }
}

/* ── 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(52, 38, 54, 0.82) 0%,
        rgba(107, 76, 110, 0.65) 50%,
        rgba(74, 52, 76, 0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 116, 0.18);
    border: 1px solid rgba(212, 165, 116, 0.35);
    color: #f5c76e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.925rem;
    font-weight: 400;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: #D4A574;
    color: #3d2c3f;
}
.btn-primary:hover { background: #c4903f; box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35); }
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
.btn-plum {
    background: #6B4C6E;
    color: #fff;
}
.btn-plum:hover { background: #5a3f5c; box-shadow: 0 8px 24px rgba(107, 76, 110, 0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 12px;
}
.section-tag.light { color: #f5c76e; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #3d2c3f;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-subtitle {
    font-size: 1.1rem;
    color: #6B4C6E;
    line-height: 1.7;
    opacity: 0.8;
}

/* ── Services ── */
.services { background: #f5f0f4; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(107, 76, 110, 0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(107, 76, 110, 0.1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f0f4, #ebe0e7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3d2c3f;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: #6B4C6E;
    line-height: 1.7;
    opacity: 0.85;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(107, 76, 110, 0.18);
    border: 4px solid #f5f0f4;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #6B4C6E;
    color: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(107, 76, 110, 0.3);
}
.about-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #D4A574;
}
.about-badge-text { font-size: 0.8rem; opacity: 0.85; line-height: 1.4; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-text {
    font-size: 1.025rem;
    color: #6B4C6E;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0 40px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #6B4C6E;
}
.stat-label { font-size: 0.85rem; color: #6B4C6E; opacity: 0.7; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-img-secondary { right: 16px; bottom: -24px; }
    .about-badge { left: 16px; }
}

/* ── Why Us ── */
.why-us { position: relative; padding: 100px 0; }
.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 38, 54, 0.92) 0%, rgba(107, 76, 110, 0.85) 100%);
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, background 0.3s;
}
.why-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.12); }
.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(212, 165, 116, 0.35);
    margin-bottom: 12px;
    line-height: 1;
}
.why-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ── */
.testimonials { background: #f5f0f4; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(107, 76, 110, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107, 76, 110, 0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-text {
    font-size: 0.975rem;
    color: #4a344c;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #ebe0e7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.925rem;
    color: #3d2c3f;
}
.testimonial-detail {
    display: block;
    font-size: 0.8rem;
    color: #6B4C6E;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ── Contact ── */
.contact { background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc {
    font-size: 1.025rem;
    color: #6B4C6E;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f0f4, #ebe0e7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6B4C6E;
    opacity: 0.6;
    margin-bottom: 4px;
}
.contact-value {
    font-size: 1rem;
    color: #3d2c3f;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-value:hover { color: #D4A574; }
.contact-form-wrap {
    background: #f5f0f4;
    border-radius: 24px;
    padding: 40px;
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3d2c3f;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a344c;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(107, 76, 110, 0.15);
    border-radius: 12px;
    font-size: 0.975rem;
    font-family: 'Outfit', sans-serif;
    color: #3d2c3f;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-input:focus {
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}
.form-input::placeholder { color: #b98fad; opacity: 0.6; }
.form-select { cursor: pointer; 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='%236B4C6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(107, 76, 110, 0.08);
    border-radius: 12px;
    margin-top: 16px;
    color: #6B4C6E;
    font-weight: 500;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 28px; }
}

/* ── Map ── */
.map-section { height: 380px; filter: saturate(0.6) brightness(1.05); }

/* ── Footer ── */
.footer {
    background: #342636;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 0.925rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #D4A574;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.925rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #D4A574; }
.footer-contact address {
    font-style: normal;
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-phone, .footer-email {
    display: block;
    font-size: 0.925rem;
    transition: color 0.2s;
}
.footer-phone:hover, .footer-email:hover { color: #D4A574; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

/* ── Reveal animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
