/* Shared site styles for standalone pages and future page sections. */
:root {
    --green-darkest: #142a1d;
    --green-dark: #1c3828;
    --green-mid: #2a5240;
    --gold: #c9a84c;
    --gold-light: #e2c76a;
    --gold-dark: #9a7c2e;
    --cream: #f8f5ef;
    --cream-dark: #ede8dc;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #6b7280;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--text-dark); background: var(--white); }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }
a { color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.page-main { padding: 9rem 0 5rem; min-height: 70vh; background: var(--cream); }
.page-header { max-width: 760px; margin-bottom: 2.5rem; }
.page-label { color: var(--gold-dark); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.page-title { color: var(--green-dark); font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.1; margin: .7rem 0 1rem; }
.page-intro { color: var(--text-mid); font-size: 1rem; line-height: 1.8; max-width: 680px; }
.content-panel { background: var(--white); border: 1px solid var(--cream-dark); padding: clamp(1.5rem, 4vw, 3rem); }
.content-panel h2 { color: var(--green-dark); margin: 2rem 0 .65rem; }
.content-panel h2:first-child { margin-top: 0; }
.content-panel p, .content-panel li { color: var(--text-mid); line-height: 1.8; }
.content-panel ul { padding-left: 1.2rem; }
.services-tabs { display: flex; overflow-x: auto; border-bottom: 2px solid var(--cream-dark); margin-bottom: 2rem; scrollbar-width: none; }
.services-tabs::-webkit-scrollbar { display: none; }
.tab-btn { background: none; border: 0; border-bottom: 2px solid transparent; color: var(--text-light); cursor: pointer; font: 600 .83rem Inter, sans-serif; margin-bottom: -2px; padding: .9rem 1rem; white-space: nowrap; }
.tab-btn.active { border-bottom-color: var(--gold); color: var(--green-dark); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.contact-form { background: var(--cream); border: 1px solid var(--cream-dark); padding: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--cream-dark); font: .9rem Inter, sans-serif; padding: .75rem; width: 100%; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { background: var(--green-dark); border: 0; color: var(--white); cursor: pointer; font-weight: 600; padding: .9rem 1.2rem; }
.form-success { background: #d4edda; color: #155724; display: none; margin-top: 1rem; padding: .9rem; }
.form-success.show { display: block; }
.form-error { background: #f8d7da; color: #842029; display: none; margin-top: 1rem; padding: .9rem; }
.form-error.show { display: block; }
.draft-notice { border-left: 4px solid var(--gold); background: #fff8df; padding: 1rem 1.2rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 2rem; }
.draft-notice code, .tbd { background: #fff8df !important; color: var(--gold-dark) !important; font-style: italic; padding: 0 .2rem; border-radius: 2px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 10; background: var(--green-darkest); padding: .85rem 0; box-shadow: 0 2px 24px rgba(0,0,0,.2); }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-brand { color: var(--gold); font: 700 1.15rem 'Playfair Display', serif; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: rgba(255,255,255,.78); font-size: .82rem; text-decoration: none; }
.site-nav a:hover { color: var(--gold); }
.site-nav .site-nav-cta { background: var(--gold); color: var(--green-darkest); padding: .55rem .85rem; }

.site-footer { background: var(--green-darkest); color: rgba(255,255,255,.62); padding: 2rem 0; }
.site-footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 700px) {
    .site-nav { gap: .65rem; }
    .site-nav a:not(.site-nav-cta) { display: none; }
    .page-main { padding-top: 7rem; }
}
