/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E8;
    --blush-light: #FDF3F4;
    --blush-mid: #F9E8EA;
    --cream: #FFFAF8;
    --white: #FFFFFF;
    --text-dark: #2D1F24;
    --text-mid: #5C4047;
    --text-light: #8A6B72;
    --text-muted: #B09A9F;
    --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.08);
    --shadow-lg: 0 12px 40px rgba(123, 45, 59, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}
.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 45, 59, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--light {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: var(--shadow-md);
}
.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--nav {
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.875rem;
}
.btn--nav:hover { background: var(--burgundy-deep); }

.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--burgundy);
}

.nav-logo { width: 32px; height: 32px; flex-shrink: 0; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--burgundy); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(123, 45, 59, 0.72) 0%,
            rgba(92, 31, 43, 0.55) 40%,
            rgba(245, 230, 232, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-title .accent {
    display: block;
    font-style: italic;
    color: var(--blush);
    font-size: 0.85em;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 400;
}
.trust-item svg { width: 16px; height: 16px; opacity: 0.7; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services .section-label,
.services .section-title,
.services .section-sub {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(123, 45, 59, 0.06);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--burgundy);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.925rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--blush-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    opacity: 0.08;
    z-index: -1;
}

.about-content .section-label { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-text em { color: var(--burgundy); font-style: italic; }

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(123, 45, 59, 0.1);
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
}

.stat { flex: 1; }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.825rem;
    color: var(--text-light);
    line-height: 1.4;
}

.about-content .btn { margin-top: 8px; }

/* ===== BENEFITS ===== */
.benefits {
    padding: 120px 0;
    background: var(--white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 56px;
}
.benefits-header .section-label,
.benefits-header .section-title { display: block; margin-left: auto; margin-right: auto; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid transparent;
    transition: all var(--transition);
}
.benefit:hover {
    border-color: rgba(123, 45, 59, 0.1);
    box-shadow: var(--shadow-md);
}

.benefit-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
    align-self: start;
}

.benefit h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 100%);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.visit-left .section-label,
.visit-left .section-title { text-align: left; display: block; }

.visit-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 16px;
}

.visit-steps { display: flex; flex-direction: column; gap: 20px; }

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(123, 45, 59, 0.05);
    transition: all var(--transition);
}
.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.step-header { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; }

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
    grid-column: 1 / -1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-label,
.contact-info .section-title { text-align: left; display: block; }

.contact-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--burgundy); }

.contact-hours {
    background: var(--blush-light);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}
.contact-hours strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.contact-hours span {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* FORM */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(123, 45, 59, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.925rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand .nav-brand { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { font-size: 0.75rem; color: rgba(255, 255, 255, 0.35); }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.nav-links.mobile-open {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    box-shadow: var(--shadow-lg);
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image img { height: 360px; }
    .about-stats { flex-direction: column; gap: 20px; }

    .benefits-grid { grid-template-columns: 1fr; }
    .benefit { grid-template-columns: 48px 1fr; }

    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .hero-content { padding: 100px 16px 60px; }
    .services, .about, .benefits, .visit, .contact { padding: 80px 0; }
    .cta-banner { padding: 72px 0; }
}
