/* Social Media Manager Landing Page Styles */

/* Reset & Base (scoped to .cos-page) */
.cos-page { --white: #FFFFFF; --cream: #F7F5F2; --warm-gray: #F0EDE8; --sand: #E4DFD7; --border: #E8E4DE; --text-primary: #1A1A2E; --text-body: #3D3D4E; --text-secondary: #6B6B7B; --text-caption: #8E8E9A; --accent-warm: #C4956A; --cta-bg: #1A1A2E; --cta-hover: #2D2D44; --serif: garamond-premier-pro, serif; --sans: europa, sans-serif; --max-w: 1140px; --content-w: 720px; --section-pad: 120px; }
.cos-wrap * { margin: 0; padding: 0; box-sizing: border-box; }
.cos-page { font-family: var(--sans); color: var(--text-body); background: var(--white); line-height: 1.7; font-size: 17px; -webkit-font-smoothing: antialiased; }

/* Zero out letter-spacing on all serif elements (Garamond needs none) */
.cos-page h1, .cos-page h2, .cos-page h3,
.cos-page h2.sh, .cos-hero h1,
.cos-page .hero-sub, .cos-page .pullquote,
.cos-page .prose p.lead,
.cos-page .cos-card h3, .cos-page .b h3,
.cos-closing h2, .cos-closing p { letter-spacing: 0; }

/* NAV */
.cos-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; }
.cos-nav-logo { display: flex; align-items: center; gap: 12px; }
.cos-nav-logo img { height: 28px; width: auto; }
.cos-nav-logo-mark { width: 28px; height: 28px; background: var(--cta-bg); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700; }
.cos-nav-logo-text { font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary); }
.cos-nav-links { display: flex; gap: 36px; align-items: center; }
.cos-nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.cos-nav-links a:hover { color: var(--text-primary); }

/* Buttons */
.cos-page .btn-primary { display: inline-block; background: var(--cta-bg); color: var(--white) !important; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 1px; padding: 12px 28px; border-radius: 6px; text-decoration: none; transition: background 0.25s, transform 0.2s; }
.cos-page .btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); }

/* Password Form */
.cos-page .form-inline { display: flex; flex-direction: column; gap: 16px; }
.cos-page .form-inline .form-control { width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 16px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); color: var(--text-primary); margin: 0 !important; }
.cos-page .form-inline .form-control:focus { outline: none; border-color: var(--cta-bg); box-shadow: 0 0 0 3px rgba(26,26,46,0.08); }
.cos-page .form-inline .btn { width: 100%; padding: 14px 28px; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 1px; background: var(--cta-bg); color: var(--white); border: none; border-radius: 6px; cursor: pointer; transition: background 0.25s, transform 0.2s; margin: 0 !important; }
.cos-page .form-inline .btn:hover { background: var(--cta-hover); transform: translateY(-1px); }

/* Kickers & Section Headers */
.cos-page .kicker { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-caption); margin-bottom: 20px; display: block; }
.cos-page h2.sh { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; line-height: 1.3; color: var(--text-primary); margin-bottom: 24px; }
.cos-page h2.sh em { font-style: italic; }

/* HERO */
.cos-hero { position: relative; overflow: hidden; background: var(--cream); padding: 100px 40px 110px; text-align: center; }
.cos-hero::before { content: ''; position: absolute; inset: -20px; background: url('../../img/chief-of-staff/hero-bg.jpg') center/cover no-repeat; filter: blur(6px) saturate(0.3) brightness(1.15); z-index: 0; }
.cos-hero::after { content: ''; position: absolute; inset: 0; background: rgba(247, 245, 242, 0.72); z-index: 1; }
.cos-hero-badge, .cos-hero h1, .cos-hero .hero-sub, .cos-hero .btn-primary { position: relative; z-index: 2; }
.cos-hero-badge { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-caption); margin-bottom: 48px; }
.cos-hero h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 58px); font-weight: 400; line-height: 1.2; color: var(--text-primary); max-width: 800px; margin: 0 auto 28px; }
.cos-hero h1 em { font-style: italic; }
.cos-hero .hero-sub { font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); font-style: italic; color: var(--text-secondary); max-width: 600px; margin: 0 auto 48px; line-height: 1.65; }

/* SECTIONS */
.cos-page .sec-w { background: var(--white); padding: var(--section-pad) 40px; }
.cos-page .sec-c { background: var(--cream); padding: var(--section-pad) 40px; }
.cos-page .ctn { max-width: var(--max-w); margin: 0 auto; }
.cos-page .ctn-n { max-width: var(--content-w); margin: 0 auto; }
.cos-page .divider { border: none; height: 1px; background: var(--border); max-width: 100px; margin: 0 auto; }
.cos-page .divider-full { border: none; height: 1px; background: var(--border); margin: 0; }

/* PROSE */
.cos-page .prose p { font-size: 18px; line-height: 1.85; color: var(--text-body); margin-bottom: 22px; }
.cos-page .prose p.lead { font-family: var(--serif); font-size: 23px; line-height: 1.7; color: var(--text-primary); }
.cos-page .prose p strong { color: var(--text-primary); font-weight: 600; }

/* TWO COL */
.cos-page .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cos-page .two-col p { font-size: 17px; line-height: 1.8; color: var(--text-body); margin-bottom: 18px; }

/* IMG PLACEHOLDER */
.cos-page .img-ph { background: var(--cream); border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: var(--text-caption); overflow: hidden; }
.cos-page .img-ph.tall { aspect-ratio: 3/4; }
.cos-page .img-ph.sq { aspect-ratio: 1/1; }
.cos-page .img-ph.ls { aspect-ratio: 4/3; }

/* Real images in placeholders */
.cos-page .img-ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

/* TAGS */
.cos-page .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cos-page .tag { font-size: 13px; font-weight: 500; color: var(--text-secondary); padding: 7px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--white); }

/* CALLOUT */
.cos-page .callout { background: var(--cream); border-left: 3px solid var(--accent-warm); padding: 32px 36px; border-radius: 0 8px 8px 0; margin: 36px 0; }
.cos-page .callout-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-warm); margin-bottom: 14px; }
.cos-page .callout p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin-bottom: 12px; }
.cos-page .callout p:last-child { margin-bottom: 0; }
.cos-page .callout p em { font-style: italic; color: var(--text-secondary); }

/* PULLQUOTE */
.cos-page .pullquote { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 28px); font-style: italic; text-align: center; color: var(--text-primary); max-width: 660px; margin: 0 auto; line-height: 1.5; padding: 60px 0; }
.cos-page .pullquote::before, .cos-page .pullquote::after { content: ''; display: block; width: 60px; height: 1px; background: var(--sand); margin: 0 auto; }
.cos-page .pullquote::before { margin-bottom: 48px; }
.cos-page .pullquote::after { margin-top: 48px; }

/* CARDS */
.cos-page .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cos-page .cos-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 40px 36px; transition: box-shadow 0.3s, transform 0.25s; }
.cos-page .cos-card:hover { box-shadow: 0 6px 28px rgba(26,26,46,0.06); transform: translateY(-2px); }
.cos-page .cos-card .card-num { font-size: 12px; font-weight: 700; color: var(--text-caption); letter-spacing: 2px; margin-bottom: 16px; }
.cos-page .cos-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 14px; line-height: 1.35; }
.cos-page .cos-card p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }

/* BENEFITS */
.cos-page .bg { display: grid; grid-template-columns: repeat(3, 1fr); }
.cos-page .b { padding: 44px 36px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cos-page .b:nth-child(3n) { border-right: none; }
.cos-page .b:nth-child(n+4) { border-bottom: none; }
.cos-page .b-bar { width: 28px; height: 3px; background: var(--accent-warm); border-radius: 2px; margin-bottom: 24px; }
.cos-page .b h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; line-height: 1.35; }
.cos-page .b p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }

/* TRAITS */
.cos-page .tl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cos-page .t { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; transition: box-shadow 0.25s; }
.cos-page .t:hover { box-shadow: 0 4px 20px rgba(26,26,46,0.05); }
.cos-page .t h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.cos-page .t p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.cos-page .t-full { grid-column: 1 / -1; text-align: center; }

/* QUALS */
.cos-page .ql { list-style: none; }
.cos-page .ql li { font-size: 17px; line-height: 1.7; color: var(--text-body); padding: 20px 0 20px 28px; border-bottom: 1px solid var(--border); position: relative; }
.cos-page .ql li::before { content: ''; position: absolute; left: 0; top: 28px; width: 8px; height: 8px; background: var(--accent-warm); border-radius: 50%; }
.cos-page .qb { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; margin-top: 28px; font-size: 16px; color: var(--text-body); line-height: 1.7; }
.cos-page .qb strong { color: var(--accent-warm); font-weight: 700; }

/* DETAILS */
.cos-page .dr { display: flex; padding: 18px 0; border-bottom: 1px solid var(--border); gap: 20px; }
.cos-page .dl { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-caption); width: 140px; flex-shrink: 0; padding-top: 3px; }
.cos-page .dv { font-size: 16px; color: var(--text-body); line-height: 1.6; }

/* CLOSING */
.cos-closing { text-align: center; padding: 100px 40px 120px; background: var(--cream); }
.cos-closing h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 400; line-height: 1.3; color: var(--text-primary); max-width: 640px; margin: 0 auto 24px; }
.cos-closing h2 em { font-style: italic; }
.cos-closing p { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--text-secondary); max-width: 560px; margin: 0 auto 12px; line-height: 1.65; }
.cos-closing .sm { font-family: var(--sans); font-size: 15px; font-style: normal; color: var(--text-caption); margin-bottom: 44px; }
.cos-closing .ct { font-family: var(--sans); font-size: 14px; color: var(--text-caption); margin-top: 20px; }

/* VALUES */
.cos-page .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.cos-page .val { text-align: center; padding: 44px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cos-page .val:nth-child(3n) { border-right: none; }
.cos-page .val:nth-child(n+4) { border-bottom: none; }
.cos-page .val-icon { width: 100px; height: 100px; object-fit: contain; margin-bottom: 20px; }
.cos-page .val h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.35; letter-spacing: 0.5px; text-transform: uppercase; }
.cos-page .val p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* PERKS */
.cos-page .perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: 800px; margin: 0 auto; }
.cos-page .perk { text-align: center; padding: 44px 36px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cos-page .perk:nth-child(2n) { border-right: none; }
.cos-page .perk:nth-child(n+3) { border-bottom: none; }
.cos-page .perk-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--accent-warm); }
.cos-page .perk h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.cos-page .perk p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* FOOTER */
.cos-footer { background: var(--white); border-top: 1px solid var(--border); padding: 36px 40px; text-align: center; font-size: 13px; color: var(--text-caption); letter-spacing: 1.5px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .cos-page .two-col, .cos-page .card-grid, .cos-page .bg, .cos-page .tl, .cos-page .values-grid { grid-template-columns: 1fr; }
  .cos-page .b { border-right: none !important; }
  .cos-page .b:last-child { border-bottom: none; }
  .cos-page .val { border-right: none !important; }
  .cos-page .val:last-child { border-bottom: none; }
  .cos-page .perks-grid { grid-template-columns: 1fr; max-width: 100%; }
  .cos-page .perk { border-right: none !important; }
  .cos-page .perk:last-child { border-bottom: none; }
  .cos-page .t-full { grid-column: auto; }
  .cos-hero { padding: 72px 24px 88px; }
  .cos-page .sec-w, .cos-page .sec-c { padding: 80px 24px; }
  .cos-nav-links { display: none; }
  .cos-nav { padding: 14px 20px; }
  .cos-page { --section-pad: 80px; }
  .cos-page .two-col[style] { grid-template-columns: 1fr !important; }
  .cos-page .img-ph[style] { position: static !important; }
}