/* ================================
   OmniWorks International — Styles
   Palette (Option 1 from brand guide):
   --navy: #002447; --teal: #4D8B84; --sage: #7A9A8A;
   --gold: #CBAA61; --ochre: #A57B3F; --ivory: #FDF9F3;
   Neutrals: near-white and subtle gray
   ================================ */

/* ---- CSS Variables / Theme ---- */
:root{
  --color-navy: #002447;
  --color-teal: #4D8B84;
  --color-sage: #7A9A8A;
  --color-gold: #CBAA61;
  --color-ivory: #FDF9F3;
  --color-charcoal: #2D2E2F; /* for text contrast */
  --color-gray-100: #f3f5f7;
  --color-gray-300: #e3e7ea;
  --color-gray-600: #6b7280;
  --color-white: #ffffff;

  --radius: 12px;
  --shadow-1: 0 6px 24px rgba(0,0,0,.08);
  --shadow-2: 0 10px 40px rgba(0,0,0,.12);

  --container: 1160px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after{ box-sizing:border-box; }

html, body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  line-height: 1.6;
  background: var(--color-ivory);
}

/* Utilities */
.container{
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.section-pad{ padding: clamp(2.5rem, 4vw, 4.5rem) 0; }
.grid-2{
  display:grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 820px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
}
.no-scroll{ overflow: hidden; }

/* ---- Header ---- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height: 64px;
  padding-block: .5rem;
}
.brand{
  display:flex; align-items:center; gap:.6rem;
  text-decoration:none; color: var(--color-navy);
  font-weight: 700;
}
.brand-mark{
  display:inline-grid; place-items:center;
  width: 32px; height:32px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 18px;
  line-height: 1;
}
.brand-text strong{ color: var(--color-teal); }

/* Nav */
.primary-nav{ 
  position: fixed; inset: 64px 0 auto 0; /* below header */
  background: var(--color-white);
  transform: translateY(-120%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-1);
}
.primary-nav.open{ transform: translateY(0); }
.primary-nav ul{
  list-style:none; margin:0; padding: .75rem 1rem;
  display:flex; flex-direction: column; gap:.25rem;
}
.primary-nav a{
  text-decoration:none; color: var(--color-charcoal);
  display:block; padding: .75rem 1rem; border-radius: 8px;
}
.primary-nav a:hover{ background: var(--color-gray-100); }
.primary-nav a.active{ color: var(--color-navy); font-weight:600; }
.nav-cta a.btn{ width: 100%; margin-top: .25rem; }

/* Desktop nav */
@media (min-width: 980px){
  .primary-nav{
    position: static; inset:auto;
    background: transparent; transform: none; box-shadow: none;
  }
  .primary-nav ul{
    flex-direction: row; align-items: center; gap:.25rem;
    padding: 0;
  }
  .nav-cta a.btn{ width: auto; margin-left: .5rem; }
}

/* Hamburger */
.nav-toggle{
  width: 46px; height: 40px;
  display:inline-grid; place-items:center; gap:4px;
  background: transparent; border:1px solid var(--color-gray-300);
  border-radius: 10px; cursor:pointer;
}
.nav-toggle-bar{
  display:block; width:22px; height:2px; background: var(--color-charcoal);
}
@media (min-width: 980px){
  .nav-toggle{ display:none; }
}

/* ---- Hero ---- */
.hero{
  position: relative;
  min-height: min(86vh, 900px);
  display:grid; align-items: center;
  color: var(--color-white);
}
.hero-media{
  position:absolute; inset:0; overflow:hidden; z-index:0;
}
.hero-video{
  width:100%; height:100%;
  object-fit: cover; object-position: center;
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,36,71,.55) 0%, rgba(0,36,71,.55) 30%, rgba(0,36,71,.35) 60%, rgba(0,0,0,.35) 100%),
              linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.15));
}

/* Hero content */
.hero-content{
  position: relative; z-index:1;
  padding-top: clamp(3rem, 8vh, 8rem);
  padding-bottom: clamp(2rem, 6vh, 6rem);
}
.hero-title{
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 .6rem 0;
}
.hero-subtitle{
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 0 0 1rem 0;
  color: #e6eef6;
}
.hero-body{
  max-width: 70ch;
  margin: 0 0 1.25rem 0;
  color: #f2f6fa;
}

/* Hero CTAs */
.hero-ctas{ display:flex; flex-wrap: wrap; gap:.75rem; margin-top:.5rem; }
.btn{
  --_bg: var(--color-navy);
  --_fg: var(--color-white);
  --_bd: transparent;
  display:inline-block;
  padding: .8rem 1.05rem;
  border-radius: 12px;
  font-weight: 600; text-decoration: none;
  background: var(--_bg); color: var(--_fg); border: 2px solid var(--_bd);
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow-1);
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn:active{ transform: translateY(0); }

.btn-primary{ --_bg: var(--color-teal); }
.btn-accent{ --_bg: var(--color-gold); color: #1b1b1b; }
.btn-outline{
  --_bg: transparent; --_fg: var(--color-white); --_bd: #ffffffaa;
}

/* Trust badges */
.trust-badges{
  margin: 1.25rem 0 0 0; padding:0; list-style:none;
  display:flex; gap: 1rem; align-items:center; flex-wrap: wrap;
  opacity:.9;
}
.trust-badges img{ height: 28px; }

/* ---- Audience Cards ---- */
.card{
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-1);
  display:grid; grid-template-rows: auto 1fr;
}
.card-media img{
  width:100%; height: 240px; object-fit: cover;
}
.card-body{ padding: 1.1rem 1rem 1.25rem; }
.card-body h2{ margin:0 0 .4rem 0; color: var(--color-navy); font-size: 1.35rem; }
.card-body p{ margin:.25rem 0 .75rem 0; color: var(--color-gray-600); }
.link-arrow{
  display:inline-block; text-decoration:none; font-weight:600; color: var(--color-teal);
}
.link-arrow:hover{ text-decoration: underline; }

/* ---- CTA Strip ---- */
.cta-strip{
  background: linear-gradient(180deg, var(--color-navy), #001a33);
  color: var(--color-white);
}
.cta-strip-inner{
  display:flex; gap: 1rem; align-items:center; justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 1.75rem) 0;
}
.cta-strip h3{
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0;
}
.cta-actions{ display:flex; gap:.6rem; flex-wrap: wrap; }
@media (max-width: 720px){
  .cta-strip-inner{ flex-direction: column; align-items: flex-start; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-300);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--color-navy);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

.footer-inner p {
  font-size: .85rem;
  color: var(--color-gray-600);
  margin: 0;
}

/* Larger screens: distribute brand - nav - copyright nicely */
@media (min-width: 820px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-inner p {
    text-align: right;
  }
}

/* ---- Responsive tweaks ---- */
@media (min-width: 1280px){
  .hero-body{ font-size: 1.05rem; }
}
.brand-highlight {
  color: var(--color-gold); /* same as your .btn-accent */
}

