*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --brown-dark: #3b1f0a;
    --brown-mid: #6b3a1f;
    --brown-light: #a0622a;
    --brown-pale: #d4a96a;
    --gold: #e8b84b;
    --gold-light: #f5d98e;
    --cream: #fdf6ec;
    --text-dark: #1a0f00;
    --text-mid: #4a2c10;
    --text-light: #8a5c2e;
    --white: #ffffff;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ── NAVBAR ── */
nav {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(59,31,10,0.4);
}
nav .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
nav .brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
}
nav ul { list-style: none; display: flex; gap: 0.25rem; }
nav ul li a {
    color: var(--gold-light);
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a.active {
    background: rgba(232,184,75,0.2);
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 50%, var(--brown-light) 100%);
    color: var(--white);
    padding: 5rem 2rem 4rem;
    text-align: center;
}
.hero .badge {
    display: inline-block;
    background: rgba(232,184,75,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 2rem;
}
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--brown-light));
    color: var(--brown-dark);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold-light);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}
.btn-outline:hover { background: rgba(232,184,75,0.15); }

/* ── STATS ── */
.stats {
    background: linear-gradient(135deg, var(--brown-mid), var(--brown-dark));
    padding: 2.5rem 2rem;
}
.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.stat-item .num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-item .label { font-size: 0.85rem; color: rgba(245,217,142,0.75); margin-top: 0.25rem; }

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: linear-gradient(180deg, #f9efe0 0%, var(--cream) 100%); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: var(--brown-dark); margin-bottom: 0.5rem; }
.section-title p { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(160,98,42,0.12);
    box-shadow: 0 4px 20px rgba(59,31,10,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(59,31,10,0.12); }
.card .icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--brown-light), var(--brown-mid));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--text-light); }

/* ── POSTS ── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}
.post-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(160,98,42,0.1);
    box-shadow: 0 4px 20px rgba(59,31,10,0.07);
    transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card .post-img {
    height: 180px;
    background: linear-gradient(135deg, var(--brown-mid), var(--brown-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.post-card .post-body { padding: 1.5rem; }
.post-card .tag {
    display: inline-block;
    background: rgba(160,98,42,0.1);
    color: var(--brown-mid);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.post-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.post-card p { font-size: 0.88rem; color: var(--text-light); }
.read-more { display: inline-block; margin-top: 1rem; color: var(--brown-light); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.read-more:hover { color: var(--gold); }

/* ── TEAM / ABOUT GRID ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.75rem;
    text-align: center;
}
.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(160,98,42,0.12);
    box-shadow: 0 4px 20px rgba(59,31,10,0.07);
}
.team-card .avatar {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--brown-light), var(--brown-mid));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.team-card h3 { font-weight: 700; color: var(--brown-dark); margin-bottom: 0.25rem; }
.team-card span { font-size: 0.82rem; color: var(--text-light); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--brown-light)); border-radius: 2px; }
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-item::before { content: ''; position: absolute; left: -2.45rem; top: 0.4rem; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 2px solid var(--brown-dark); }
.tl-item h3 { font-size: 1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.25rem; }
.tl-item .year { font-size: 0.8rem; color: var(--brown-light); font-weight: 600; margin-bottom: 0.4rem; }
.tl-item p { font-size: 0.9rem; color: var(--text-light); }

/* ── SERVICE PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}
.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(160,98,42,0.12);
    box-shadow: 0 4px 20px rgba(59,31,10,0.07);
    text-align: center;
    transition: transform 0.2s;
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--brown-mid), var(--brown-dark));
    color: var(--white);
    transform: scale(1.03);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card .plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brown-light); margin-bottom: 0.75rem; }
.pricing-card.featured .plan-name { color: var(--gold-light); }
.pricing-card .price { font-size: 2rem; font-weight: 800; color: var(--brown-dark); margin-bottom: 0.25rem; }
.pricing-card.featured .price { color: var(--gold); }
.pricing-card .price-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.6); }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 1.75rem; }
.pricing-card ul li { font-size: 0.9rem; color: var(--text-mid); padding: 0.35rem 0; border-bottom: 1px solid rgba(160,98,42,0.08); }
.pricing-card ul li::before { content: '✓  '; color: var(--gold); font-weight: 700; }
.pricing-card.featured ul li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }

/* ── CONTACT FORM ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--brown-dark); margin-bottom: 1rem; }
.contact-info p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.info-item .ic { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, var(--brown-light), var(--brown-mid)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.info-item .text strong { display: block; color: var(--brown-dark); font-weight: 700; font-size: 0.9rem; }
.info-item .text span { font-size: 0.88rem; color: var(--text-light); }
.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(160,98,42,0.12);
    box-shadow: 0 4px 20px rgba(59,31,10,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(160,98,42,0.25);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--cream);
    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: var(--gold);
    box-shadow: 0 0 0 3px rgba(232,184,75,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
    background: var(--brown-dark);
    color: rgba(245,217,142,0.7);
    padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand .brand-name { font-size: 1.5rem; font-weight: 800; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: var(--gold-light); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(245,217,142,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(232,184,75,0.15); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; }

/* ── DIVIDER ── */
.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--brown-pale), transparent); margin: 0; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    nav ul { gap: 0; }
    nav ul li a { padding: 0.4rem 0.6rem; font-size: 0.85rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
