/* ============================================
   OPERATIONS PARTNER — SHARED STYLESHEET
   ============================================ */

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

:root {
  --navy:        #1C1712;
  --navy-deep:   #120E0A;
  --navy-mid:    #241D14;
  --emerald:     #0E4B4A;
  --emerald-lt:  #2E8C86;
  --bg:          #F4EFE1;
  --white:       #FFFFFF;
  --ink:         #2B2318;
  --muted:       #79705C;
  --border:      #E3D9BF;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow-sm:   0 4px 16px rgba(28,23,18,0.08);
  --shadow-md:   0 12px 36px rgba(28,23,18,0.12);
  --shadow-lg:   0 24px 60px rgba(18,14,10,0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.mono { font-family: 'IBM Plex Mono', monospace; }

/* ── LAYOUT UTILITIES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }
section { padding: 100px 0; }
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--emerald);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--emerald);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 52px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.btn-emerald { background: var(--emerald); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-emerald:hover { background: var(--emerald-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { border-color: var(--emerald-lt); background: rgba(14,75,74,0.14); }
.btn-outline-navy { border: 1.5px solid var(--border); color: var(--navy); }
.btn-outline-navy:hover { border-color: var(--emerald); color: var(--emerald); }
.btn-watch {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-watch:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-watch .play-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--emerald); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; flex-shrink: 0;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(18,14,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-logo span { color: var(--emerald-lt); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.86rem; font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--emerald-lt);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: var(--navy-deep);
  padding: 18px 5vw 26px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background:
    radial-gradient(ellipse 900px 500px at 82% 18%, rgba(14,75,74,0.20) 0%, transparent 60%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  display: flex; align-items: center;
  padding: 130px 5vw 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--emerald-lt);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-lt); box-shadow: 0 0 0 4px rgba(69,179,120,0.18); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--emerald-lt); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.68;
  margin-bottom: 38px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-col { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  position: relative;
  width: 100%; max-width: 360px;
}
.hero-photo-frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-status-card {
  position: absolute; left: -26px; bottom: -22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(14,75,74,0.15); }
.hero-status-card .label { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-status-card .value { font-family: 'Fraunces', serif; font-size: 0.98rem; color: var(--navy); font-weight: 500; }

/* ── WORKFLOW CONNECTOR (signature motif) ── */
.flow-line {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin: 40px 0;
}
.flow-line .seg { width: 34px; height: 2px; background: linear-gradient(90deg, var(--emerald), rgba(14,75,74,0.15)); }
.flow-line .node { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }

/* ── INTRO / MEET SECTION ── */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.intro-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.intro-text p { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }
.intro-text p:last-of-type { margin-bottom: 30px; }

/* ── VIDEO SECTION ── */
.video-section { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); }
.video-section .section-eyebrow { color: var(--emerald-lt); }
.video-section .section-eyebrow::before { background: var(--emerald-lt); }
.video-section .section-title { color: var(--white); }
.video-section .section-sub { color: rgba(255,255,255,0.65); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; align-items: start; }
.video-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-card-head {
  padding: 18px 22px 12px;
  display: flex; align-items: center; gap: 10px;
}
.video-card-head .play-badge {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--emerald); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}
.video-card-head h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.02rem; color: var(--white); }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; background: rgba(0,0,0,0.2); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-foot { padding: 14px 22px 20px; font-size: 0.86rem; color: rgba(255,255,255,0.62); }

/* ── PAIN POINTS (inbox motif) ── */
.pain-section { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 720px; margin: 0 auto 44px; }
.pain-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid #E08E45;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 0.96rem; color: var(--ink); font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.pain-item .ping { width: 8px; height: 8px; border-radius: 50%; background: #E08E45; flex-shrink: 0; }
.pain-resolve {
  max-width: 720px; margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md);
}
.pain-resolve .ping { background: var(--emerald-lt); width: 10px; height: 10px; }
.pain-resolve p { font-family: 'Fraunces', serif; color: var(--white); font-size: 1.2rem; font-weight: 500; }

/* ── SERVICES ── */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(14,75,74,0.3); }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
}
.service-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.service-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.service-card ul li {
  font-size: 0.9rem; color: var(--muted); padding-left: 20px; position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
}
.service-card .card-link { font-size: 0.85rem; font-weight: 600; color: var(--emerald); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link:hover { color: var(--emerald-lt); }

/* ── WHY WORK WITH ME ── */
.why-section { background: var(--navy); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 15% 85%, rgba(14,75,74,0.16) 0%, transparent 60%);
}
.why-section .section-eyebrow { color: var(--emerald-lt); }
.why-section .section-eyebrow::before { background: var(--emerald-lt); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; position: relative; z-index: 1; }
.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.why-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--emerald); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700;
  margin-top: 1px;
}
.why-item p { color: rgba(255,255,255,0.88); font-weight: 500; font-size: 0.96rem; }

/* ── PROCESS TIMELINE ── */
.process-section { background: var(--white); }
.process-track { position: relative; }
.process-track::before {
  content: ''; position: absolute; top: 26px; left: 26px; right: 26px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  display: none;
}
@media (min-width: 900px) { .process-track::before { display: block; } }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; position: relative; }
.process-step { text-align: left; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ── TOOLS ── */
.tools-section { background: var(--navy-deep); }
.tools-section .section-eyebrow { color: var(--emerald-lt); }
.tools-section .section-eyebrow::before { background: var(--emerald-lt); }
.tools-section .section-title { color: var(--white); }
.tools-section .section-sub { color: rgba(255,255,255,0.55); }
.tools-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tool-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.85);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.tool-pill:hover { background: rgba(14,75,74,0.18); border-color: var(--emerald); }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center; padding: 110px 5vw;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(14,75,74,0.22) 0%, transparent 60%);
}
.final-cta .content { position: relative; z-index: 1; }
.final-cta h2 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--navy-deep);
  padding: 50px 5vw 26px;
  color: rgba(255,255,255,0.5);
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.footer-brand { font-family: 'Fraunces', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.footer-brand span { color: var(--emerald-lt); }
.footer-tag { font-size: 0.86rem; max-width: 280px; }
.footer-links { display: flex; gap: 44px; flex-wrap: wrap; }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--emerald-lt); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 250;
  display: flex; align-items: center; gap: 10px;
  background: var(--emerald);
  color: var(--white) !important;
  text-decoration: none;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s, transform 0.15s;
}
.float-cta:hover { background: var(--emerald-lt); transform: translateY(-2px); }
.float-cta svg { width: 18px; height: 18px; }
@media (max-width: 520px) { .float-cta span { display: none; } .float-cta { padding: 14px; } }

/* ── GENERIC PAGE HERO (for sub-pages) ── */
.page-hero {
  padding: 150px 5vw 80px;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 700px 400px at 30% 30%, black, transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .section-eyebrow { color: var(--emerald-lt); }
.page-hero .section-eyebrow::before { background: var(--emerald-lt); }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.16; margin-bottom: 18px; max-width: 760px;
}
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 600px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .intro-grid { grid-template-columns: 1fr; }
  .hero-photo-col { order: -1; margin-bottom: 10px; }
  .hero-photo-frame { max-width: 280px; }
  section { padding: 70px 0; }
  .hero { padding-top: 110px; }
}
@media (max-width: 560px) {
  .hero-status-card { left: 0; bottom: -18px; max-width: 200px; }
}
