:root {
    --cream: #F5F0E8;
    --off-white: #FAFAF7;
    --dark: #1A1A14;
    --dark-mid: #2C2C22;
    --brown: #5C4A2A;
    --gold: #C8952A;
    --gold-light: #E8B84B;
    --rust: #B85C2A;
    --text: #3A3A2E;
    --text-muted: #7A7A6A;
    --border: rgba(90, 74, 42, 0.15);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 20, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 149, 42, 0.2);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-text span {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--gold);
}

.header-cta {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
}

.header-cta:hover {
    background: var(--gold-light);
}

/* ===========================
   Hero (index.html)
   =========================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200,149,42,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184,92,42,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,149,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,149,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 149, 42, 0.12);
    border: 1px solid rgba(200, 149, 42, 0.3);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
}

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

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subhead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.6s 0.4s ease both;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,149,42,0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===========================
   Form Card (index.html)
   =========================== */
.hero-form-card {
    background: rgba(255,255,255,0.98);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 440px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header .highlight {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 1.2rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: var(--rust);
    transform: translateY(-1px);
}

/* ===========================
   Testimonials (index.html)
   =========================== */
.testimonials {
    background: white;
    padding: 80px 60px;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rust));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
}

.testimonial-text {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   Hero Section (inner pages)
   =========================== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a20 100%);
    color: white;
    padding: 140px 60px 80px;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Container (inner pages)
   =========================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* ===========================
   Shared Typography (inner pages)
   =========================== */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin: 60px 0 30px;
    letter-spacing: -0.01em;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 15px;
}

p {
    margin: 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

ul {
    margin-left: 30px;
    font-size: 1.05rem;
    line-height: 2;
}

ul li {
    margin: 12px 0;
}

/* ===========================
   Stats (index.html hero + about.html)
   =========================== */
.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* About page stat boxes */
.stat-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-box .stat {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(200,149,42,0.08), rgba(184,92,42,0.05));
    border-radius: 12px;
    border: 2px solid rgba(200,149,42,0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-box .stat-label {
    color: #666;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===========================
   Team Members (about.html)
   =========================== */
.team-member {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.team-member-header {
    display: flex;
    gap: 24px;
    align-items: start;
}

.team-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rust));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===========================
   Service Cards (services.html)
   =========================== */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card p {
    margin: 15px 0;
    line-height: 1.8;
}

.cost-range {
    background: linear-gradient(135deg, rgba(200,149,42,0.1), rgba(184,92,42,0.08));
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 700;
    color: var(--dark);
    border-left: 4px solid var(--gold);
}

/* ===========================
   FAQ Accordion (faq.html)
   =========================== */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    transition: all 0.2s;
}

.faq-question:hover {
    background: rgba(200,149,42,0.05);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .icon {
    transform: rotate(45deg);
}

.faq-answer {
    color: #555;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 32px 28px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 15px 0;
    line-height: 1.8;
}

.faq-answer ul {
    margin: 15px 0 15px 30px;
    line-height: 2;
}

/* ===========================
   CTA Section (inner pages)
   =========================== */
.cta-section {
    background: var(--gold);
    color: var(--dark);
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    border-radius: 12px;
}

.cta-section h2 {
    color: var(--dark);
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===========================
   Footer
   =========================== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 50px 60px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 30px 60px;
    }

    .header-nav {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .header-nav {
        display: none;
    }

    .container {
        padding: 60px 30px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 24px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.open .faq-answer {
        padding: 0 24px 20px;
    }
}
