/* ===== Custom Properties ===== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF4F1;
    --blush-dark: #E8D0C8;
    --cream: #FDF8F5;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --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);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== Utility ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--burgundy); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius);
    z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ===== Header ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--burgundy); font-weight: 600;
}
.logo-mark { color: var(--burgundy); flex-shrink: 0; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 18px; line-height: 1.2;
    font-weight: 600;
}
.logo-text em { font-style: italic; font-weight: 400; }

/* Nav */
.nav-list {
    display: flex; align-items: center; gap: 32px;
}
.nav-list a {
    font-size: 14px; font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}
.nav-list a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--burgundy);
    transition: width var(--transition);
}
.nav-list a:hover { color: var(--burgundy); }
.nav-list a:hover::after { width: 100%; }
.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--burgundy-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    position: relative; align-items: center; justify-content: center;
}
.hamburger {
    position: relative;
    width: 22px; height: 16px;
    display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: ''; position: absolute;
    left: 0; width: 100%; height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 7px; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 7px; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 7px; transform: 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(26, 26, 26, 0.82) 0%,
        rgba(123, 45, 59, 0.65) 50%,
        rgba(26, 26, 26, 0.72) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-tag {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1px solid rgba(245, 230, 224, 0.3);
    border-radius: 100px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700; line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}
.hero-headline em {
    font-style: italic;
    color: var(--blush);
}
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 16px;
}
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.35);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== Section Shared ===== */
.section-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700; line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--white);
}
.services .container { text-align: center; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    text-align: left;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 45, 59, 0.1);
    background: var(--white);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--blush);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
}
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px; font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px; color: var(--text-light);
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-content .section-lead { margin-bottom: 24px; }
.about-text {
    font-size: 16px; color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-stats {
    display: flex; align-items: center; gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--blush-dark);
}
.stat { flex: 1; }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px; font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px; height: 40px;
    background: var(--blush-dark);
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
    background: var(--burgundy);
    color: var(--white);
}
.why-us .section-label { color: var(--blush); }
.why-us .section-title { color: var(--white); }
.why-us .section-title em { color: var(--blush); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 72px;
}
.why-item { position: relative; }
.why-number {
    font-family: var(--font-serif);
    font-size: 72px; font-weight: 700;
    color: rgba(245, 230, 224, 0.15);
    line-height: 1;
    margin-bottom: -8px;
}
.why-item h3 {
    font-family: var(--font-serif);
    font-size: 24px; font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.why-item p {
    font-size: 15px; color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 420px;
}

/* ===== Trust / Testimonials ===== */
.trust {
    padding: 120px 0;
    background: var(--white);
}
.trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.testimonial {
    margin-bottom: 40px;
}
.testimonial:last-child { margin-bottom: 0; }
.quote-mark {
    color: var(--blush-dark);
    margin-bottom: 16px;
}
.testimonial p {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.testimonial-author {
    font-family: var(--font-sans);
    font-size: 14px; font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.trust-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.trust-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trust-image:hover img { transform: scale(1.03); }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0; z-index: 0;
}
.cta-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 45, 59, 0.9) 0%,
        rgba(92, 31, 43, 0.88) 100%
    );
}
.cta-content {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-tag {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}
.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700; line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-headline em { font-style: italic; color: var(--blush); }
.cta-text {
    font-size: 17px; color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--cream);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-details {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 28px;
}
.contact-item {
    display: flex; gap: 16px;
}
.contact-icon {
    width: 48px; height: 48px;
    background: var(--blush);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 16px; color: var(--text);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--burgundy); text-decoration: underline; }
.map-container {
    margin-top: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 28px; font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-lead {
    font-size: 15px; color: var(--text-muted);
    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: 13px; font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--blush-light);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--burgundy);
    margin: 0 auto 16px;
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 24px; font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px; color: var(--text-light);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}
.footer-inner {
    display: flex; flex-direction: column; gap: 40px;
}
.footer-brand .logo { color: var(--blush); margin-bottom: 12px; }
.footer-brand p {
    font-size: 14px; line-height: 1.7;
    max-width: 280px;
}
.footer-links {
    display: flex; flex-wrap: wrap; gap: 24px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

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

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list a { font-size: 20px; }
    .nav-cta { font-size: 16px; padding: 14px 28px; }
    
    .hero-content { padding: 100px 24px 60px; }
    .hero-scroll { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .about-layout,
    .trust-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { order: -1; }
    .trust-image { order: -1; }
    
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    
    .about-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    
    .footer-inner { gap: 32px; }
    .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
