/* ===========================================================
   WCG SHARED STYLESHEET
   Used by every page except index.html (which stays self-contained
   for now). Keep this in sync with index.html's inline <style> —
   tokens, nav, footer, and modal should look identical everywhere.
   =========================================================== */

:root {
  --green: #2d5a3d;
  --charcoal: #2c2c2c;
  --white: #ffffff;
  --cream: #f5f2ec;
  --gray: #6b6b66;
  --light-gray: #ddd8ce;
  --bronze: #8b6914;
  --heading: 'Poppins', sans-serif;
  --body: 'Roboto', sans-serif;
  --label: 'Bebas Neue', sans-serif;
  --black: var(--charcoal);
  --offwhite: var(--cream);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--offwhite);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }

/* ---------- NAV (identical to index.html) ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  transform: translateY(0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, transform 0.3s ease-in-out;
}
.site-nav.nav-solid { background: rgba(255,255,255,0.9); backdrop-filter: blur(6px); }
.site-nav.nav-hidden { transform: translateY(-100%); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.nav-name { font-family: var(--heading); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--charcoal); }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--body); font-weight: 500; font-size: 0.88rem;
  color: var(--charcoal); position: relative; padding-bottom: 3px;
  transition: color 0.35s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.current { color: var(--bronze); }
.nav-links a.current::after { transform: scaleX(1); }
.nav-book {
  font-family: var(--body); font-weight: 500; font-size: 0.88rem;
  color: var(--cream); background: var(--bronze);
  padding: 9px 20px; border-radius: 20px;
  min-width: 148px; text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer; font: inherit;
}
.nav-book:hover { background: #6f5310; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
@media (max-width: 780px) { .nav-links { display: none; } }

/* ---------- PAGE HEADER (subpage hero replacement) ---------- */
.page-header {
  padding: calc(14vh + 40px) 6vw 8vh;
  max-width: 1000px; margin: 0 auto;
  text-align: left;
}
.page-header .eyebrow-label { font-family: var(--label); font-size: 1.3rem; letter-spacing: 0.04em; color: var(--bronze); margin-bottom: 10px; }
.page-header h1 { font-family: var(--heading); font-weight: 700; font-size: clamp(2rem, 4.2vw, 2.8rem); line-height: 1.15; color: var(--charcoal); max-width: 20ch; letter-spacing: -0.015em; }
.page-header p.sub { margin-top: 16px; font-family: var(--body); font-weight: 300; font-size: 1.05rem; color: #4a4a45; max-width: 60ch; }
@media (max-width: 780px) { .page-header { text-align: center; } .page-header p.sub { margin-left: auto; margin-right: auto; } }

/* ---------- PLACEHOLDER / "BEING BUILT" SECTION ---------- */
.placeholder-section {
  max-width: 780px; margin: 0 auto; padding: 0 6vw 14vh;
  text-align: left;
}
.placeholder-card {
  border: 1px solid var(--light-gray); border-radius: 16px;
  background: var(--white); padding: 44px 40px;
}
.placeholder-card .badge {
  display: inline-block; font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--green); border: 1px solid var(--green); border-radius: 20px;
  padding: 4px 14px; margin-bottom: 18px;
}
.placeholder-card h2 { font-family: var(--heading); font-weight: 600; font-size: 1.4rem; margin-bottom: 12px; color: var(--charcoal); }
.placeholder-card p { font-family: var(--body); font-weight: 300; font-size: 1rem; color: #4a4a45; max-width: 56ch; margin-bottom: 22px; }
.placeholder-card .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 780px) { .placeholder-section { text-align: center; } .placeholder-card .btn-row { justify-content: center; } }

.btn {
  display: inline-block; padding: 12px 28px; border-radius: 24px;
  font-family: var(--body); font-weight: 500; font-size: 0.82rem;
  cursor: pointer; border: none; font: inherit;
  transition: opacity 0.2s ease;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--light-gray); }
.btn:hover { opacity: 0.85; }

/* ---------- FOOTER (identical to index.html) ---------- */
footer { background: var(--black); color: var(--white); padding: 6vh 6vw 3vh; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; max-width: 1300px; margin: 0 auto 4vh; padding-bottom: 4vh; border-bottom: 1px solid #2a2a2a; }
.footer-links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; font-weight: 500; }
.footer-links a:hover { color: var(--bronze); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; max-width: 1300px; margin: 0 auto; font-size: 0.78rem; color: #999; }
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--bronze); }

/* ---------- HIRE A PRO MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,20,18,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--cream); border-radius: 18px;
  width: 100%; max-width: 460px;
  padding: 40px 36px 32px;
  position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
  max-height: 88vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid var(--light-gray);
  color: var(--charcoal); font-size: 1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--light-gray); }
.modal-box .eyebrow-label { font-family: var(--label); font-size: 1.1rem; letter-spacing: 0.04em; color: var(--bronze); margin-bottom: 6px; }
.modal-box h3 { font-family: var(--heading); font-weight: 600; font-size: 1.4rem; color: var(--charcoal); margin-bottom: 8px; }
.modal-box p.modal-sub { font-family: var(--body); font-weight: 300; font-size: 0.92rem; color: #4a4a45; margin-bottom: 24px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--body); font-weight: 500; font-size: 0.78rem; color: var(--charcoal); letter-spacing: 0.01em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body); font-size: 0.92rem; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px;
  padding: 11px 13px; width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field.optional label span { color: var(--gray); font-weight: 400; }
.modal-submit {
  width: 100%; margin-top: 6px;
  background: var(--bronze); color: var(--cream);
  padding: 13px 20px; border-radius: 24px; border: none;
  font-family: var(--body); font-weight: 500; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s ease;
}
.modal-submit:hover { background: #6f5310; }
.modal-success { display: none; text-align: center; padding: 12px 0 6px; }
.modal-success.show { display: block; }
.modal-success h3 { font-family: var(--heading); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; color: var(--charcoal); }
.modal-success p { font-family: var(--body); font-weight: 300; font-size: 0.95rem; color: #4a4a45; }
.modal-form.hide { display: none; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
