/* ── CANOPY CAPITAL GROUP — SHARED STYLES ── */

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

:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a3d;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f4ee;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --white: #ffffff;
  --red: #c0392b;
}

body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* ── NAV ── */
nav {
  background: rgba(15,30,20,0.97);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.nav-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 48px; width: 48px; object-fit: contain; }
.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.62rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-family: 'Lato', sans-serif; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-light); }
.nav-hide-mobile { display: list-item; }
.nav-cta { background: var(--gold) !important; color: var(--forest) !important; padding: 10px 20px; border-radius: 4px; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── PAGE HERO (non-video pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--forest) 0%, #0e2318 100%);
  color: var(--white); padding: 140px 24px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('canopy-logo.png') center/cover no-repeat;
  opacity: 0.04;
}
.page-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 540px; margin: 0 auto; }

/* ── SHARED SECTION ── */
section { padding: 88px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 10px; display: block; }
h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--forest);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 36px; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 36px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px; cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--forest); color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 36px; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: #0e2318; transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, #a8873a 100%); padding: 80px 24px; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--forest); font-weight: 900; margin-bottom: 12px; }
.cta-band p { font-size: 1.05rem; color: rgba(26,58,42,0.8); margin-bottom: 32px; }
.cta-phone { margin-top: 18px; font-size: 0.88rem; color: rgba(26,58,42,0.75); }
.cta-phone a { color: var(--forest); font-weight: 700; text-decoration: none; }

/* ── FOOTER ── */
footer { background: #0a1510; color: rgba(255,255,255,0.55); padding: 56px 40px 32px; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { max-width: 280px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 14px; }
.footer-logo-img { height: 44px; width: 44px; object-fit: contain; }
.footer-logo-text { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; font-weight: 700; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1080px; margin: 28px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid rgba(26,58,42,0.1); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; text-align: left; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.4; transition: color 0.2s; }
.faq-question:hover { color: var(--forest-mid); }
.faq-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; font-style: normal; font-weight: 300; line-height: 1; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer-inner { padding-bottom: 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-logo-img { height: 38px; width: 38px; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-logo-text span { display: none; }
  .nav-hide-mobile { display: none !important; }
  .nav-cta { font-size: 0.8rem; padding: 8px 14px; }
  .page-hero { padding: 110px 20px 60px; }
  section { padding: 60px 20px; }
  footer { padding: 48px 20px 28px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .cta-band { padding: 60px 20px; }
  .cta-band .btn-dark, .cta-band .btn-primary { width: 100%; max-width: 320px; }
  .btn-primary, .btn-outline, .btn-dark { width: 100%; max-width: 320px; text-align: center; }
}

/* ── NAV SCROLL JS HOOK ── */
/* Applied via JS: nav.scrolled */
