/* shared-styles.css — imported by all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1c1917; --muted: #78716c; --faint: #e7e5e4; --border: #d6d3d1;
  --cream: #f4f2ef; --white: #ffffff; --navy: #1c3a6b; --gold: #b8953a;
  --teal-bg: #d1fae5; --teal-text: #065f46; --teal-border: #6ee7b7;
  --amber-bg: #fef3c7; --amber-text: #78350f; --amber-border: #fcd34d;
  --radius-sm: 6px; --radius-lg: 14px;
  --font-serif: 'Lora', serif;
  --font-sans:  'Source Sans 3', sans-serif;
}
body { background: var(--cream); color: var(--ink); font-family: var(--font-sans); font-size: 15px; line-height: 1.6; min-height: 100vh; }
.page-content-area { background: var(--cream); }

/* NAV */
nav { background: var(--navy); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 200; }
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark { width: 42px; height: 42px; border: 1.5px solid rgba(184,149,58,.65); border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
.logo-mark::before { content:''; position:absolute; left:7px; top:2px; bottom:2px; width:1.5px; background:rgba(184,149,58,.35); }
.lm-h { width: 20px; height: 2.5px; background: var(--gold); border-radius: 1.5px; position: absolute; top: 13px; }
.lm-v { width: 2.5px; height: 30px; background: var(--gold); border-radius: 1.5px; position: absolute; }
.logo-name { font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: #fff; line-height: 1; }
.logo-sub { font-size: 12px; color: rgba(184,149,58,.9); font-weight: 600; letter-spacing: .08em; margin-top: 4px; text-align: center; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { font-weight: 600; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; transition: background .2s; flex-shrink: 0; }
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE DROPDOWN */
.nav-dropdown { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); z-index: 199; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.nav-dropdown.open { display: block; }
.nav-dropdown ul { list-style: none; padding: 8px 0; }
.nav-dropdown ul li a { display: block; padding: 14px 24px; font-size: 15px; color: rgba(255,255,255,.88); text-decoration: none; font-weight: 400; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .15s, color .15s; }
.nav-dropdown ul li:last-child a { border-bottom: none; }
.nav-dropdown ul li a:hover, .nav-dropdown ul li a.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-dropdown ul li a.active { font-weight: 600; }

/* PAGE WRAP */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 36px 40px 60px; }

/* PAGE HEADER (child pages) */
.page-header { margin-bottom: 36px; }
.page-header h1 { font-family: var(--font-serif); font-size: 32px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.page-header p { font-size: 15px; color: #57534e; max-width: 580px; line-height: 1.7; }

/* SECTION HEAD */
.sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.sec-head h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.see-all { font-size: 13px; color: #57534e; text-decoration: none; font-weight: 500; }
.see-all:hover { color: var(--ink); }

/* VIDEO CARD GRID */
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-card { display: block; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; cursor: pointer; }
.v-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.v-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.v-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .88; transition: opacity .2s; }
.v-card:hover .v-thumb img { opacity: .72; }
.v-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; background: rgba(200,20,20,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.v-card:hover .v-play { transform: translate(-50%,-50%) scale(1.12); }
.v-play svg { width: 14px; height: 14px; fill: #fff; margin-left: 3px; }
.v-info { padding: 14px 16px 16px; }
.v-title { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 5px; }
.v-sub { font-size: 12px; color: #57534e; }

/* BADGE */
.badge { display: inline-block; font-size: 10px; padding: 2px 9px; border-radius: 20px; font-weight: 600; }
.bl { background: var(--teal-bg); color: var(--teal-text); border: 1px solid var(--teal-border); }
.bs { background: var(--amber-bg); color: var(--amber-text); border: 1px solid var(--amber-border); }

/* FOOTER */
footer { background: var(--navy); padding: 22px 48px; display: flex; align-items: center; justify-content: space-between; }
.f-top { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; transition: opacity .2s; }
.f-top:hover { opacity: .75; }
.f-top svg { color: var(--gold); flex-shrink: 0; }
.f-logo { font-family: var(--font-serif); font-size: 17px; color: #fff; font-weight: 500; }
.f-links { display: flex; gap: 24px; }
.f-links a { color: rgba(255,255,255,.75); font-size: 13px; text-decoration: none; font-weight: 400; transition: color .2s; }
.f-links a:hover { color: #fff; }
.f-copy { font-size: 12px; color: rgba(255,255,255,.4); }

/* SUBSCRIBE SHORTCODE */
.subscribe-box { background: #1c3a6b; border-radius: 14px; padding: 24px 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 20px; margin: 32px 0; }
.subscribe-box-btn { background: #b8953a; color: #1c1917; border: none; border-radius: 8px; padding: 12px 24px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: var(--font-sans); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .page-wrap { padding: 24px 20px 40px; }
  .v-grid { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}
@media (max-width: 620px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .v-grid { grid-template-columns: 1fr; }
  .subscribe-box { grid-template-columns: 1fr; justify-items: center; text-align: center; row-gap: 14px; padding: 20px; }
  .subscribe-box-btn { width: 100%; }
  .f-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
