/* =========================
   RESET + BASE
========================= */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Inter", Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#0b1830;
  line-height:1.6;
}

/* =========================
   BRAND SYSTEM
========================= */
:root{
  --navy-950:#071223;
  --navy-900:#0b1830;
  --navy-800:#102446;
  --gold-500:#c8a75e;
  --gold-400:#d6be7a;
  --text-100:#f6f3ea;
  --text-200:#e7dfcf;
  --white:#ffffff;
}

.sp-container{
  width:min(1200px, 92vw);
  margin:0 auto;
}

/* Scroll offset for sticky header */
#home,#about,#services,#publishers,#insights,#contact{scroll-margin-top:110px}

.gold{ color: var(--gold-400); }
.sp-muted{ color: rgba(11,24,48,0.75); max-width: 78ch; }

/* =========================
   HEADER (WHITE, LOGO CENTER, NAV RIGHT)
========================= */
.sp-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--white);
  box-shadow:0 6px 18px rgba(7,18,35,0.10);
}

.sp-header-inner{
  height:160px;
  display:flex;
  align-items:center;
  position:relative;
}

.sp-brand{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  text-decoration:none;
  display:flex;
  align-items:center;
}


.sp-logo{
  height:145px;
  width:auto;
  display:block;
}

.sp-nav{
  margin-left:auto;
  display:flex;
  gap:30px;
  align-items:center;
  padding-right: 50px;
}

.sp-nav a{
  text-decoration:none;
  color:var(--navy-900);
  font-weight:700;
  font-size:15px;
  letter-spacing:0.2px;
  padding:10px 2px;
  border-bottom:2px solid transparent;
  transition:0.25s ease;
}

.sp-nav a:hover{
transform: scale(1.2);
text-shadow:0 0 5px rgba(18,63,122,0.35);border-bottom-color: rgba(200,167,94,0.9);
}

/* Burger button (hidden on desktop) */
.sp-burger{
  display:none;
  margin-left:auto;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:12px;
}

.sp-burger span{
  display:block;
  width:26px;
  height:2px;
  background:var(--navy-900);
  margin:6px 0;
}

/* Mobile drawer */
.sp-mobile{
  border-top:1px solid rgba(11,24,48,0.10);
  background:#fff;
}

.sp-mobile-nav{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 4vw 18px;
}

.sp-mobile-nav a{
  text-decoration:none;
  color:var(--navy-900);
  font-weight:700;
  padding:10px 10px;
  border-radius:10px;
  transition:0.2s ease;
}

.sp-mobile-nav a:hover{
  background: rgba(200,167,94,0.12);
}

/* Responsive header behavior */
@media (max-width: 900px){
  .sp-nav{ display:none; }
  .sp-burger{ display:block; }
  .sp-header-inner{ height:84px; }
  .sp-logo{ height:56px; }
}

/* =========================
   HERO
========================= */
.sp-hero{
  position:relative;
  overflow:hidden;
  padding:110px 0 120px;
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(200,167,94,.12), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.sp-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  position:relative;
  z-index:2;
}

.sp-hero h1{
  color:var(--text-100);
  font-family:"Playfair Display", serif;
  font-size:64px;
  line-height:1.05;
  margin:0 0 18px;
}

.sp-lead{
  color:var(--text-200);
  font-size:18px;
  max-width: 62ch;
}

.sp-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.sp-btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background:var(--gold-500);
  color:var(--navy-950);
  font-weight:800;
  text-decoration:none;
  transition:0.25s ease;
}

.sp-btn:hover{ background:var(--gold-400); }

.sp-btn.ghost{
  background: transparent;
  border:1px solid rgba(200,167,94,0.55);
  color: var(--text-100);
}

.sp-btn.ghost:hover{
  background: rgba(200,167,94,0.10);
}

/* Pillar cards */
.sp-pillars{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:26px;
}

.sp-pillar-card{
  border:1px solid rgba(214,190,122,0.20);
  background: rgba(255,255,255,0.04);
  border-radius:16px;
  padding:14px 14px;
}

.sp-pillar-title{
  color: var(--text-100);
  font-weight:800;
  letter-spacing:0.2px;
  margin-bottom:4px;
}

.sp-pillar-sub{
  color: rgba(246,243,234,0.78);
  font-size:13px;
}

/* Right glass card */
.sp-glass{
  border:1px solid rgba(214,190,122,0.18);
  background: rgba(255,255,255,0.05);
  border-radius:18px;
  padding:18px;
  backdrop-filter: blur(8px);
}

.sp-glass-head{
  color: var(--text-100);
  font-weight:900;
  margin-bottom:10px;
  letter-spacing:0.2px;
}

.sp-glass-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(246,243,234,0.08);
}

.sp-glass-row .k{
  color: rgba(246,243,234,0.78);
  font-weight:600;
  font-size:13px;
}

.sp-glass-row .v{
  color: var(--text-100);
  font-weight:800;
  font-size:13px;
}

.sp-glass-note{
  margin-top:12px;
  color: rgba(246,243,234,0.78);
  font-size:13px;
  line-height:1.5;
}

/* Waves */
.sp-waves{
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:220px;
  opacity:0.55;
}

.wave{ animation: drift 14s ease-in-out infinite; }
.wave1{ animation-duration: 14s; }
.wave2{ animation-duration: 18s; }
.wave3{ animation-duration: 22s; }
.wave4{ animation-duration: 26s; }

@keyframes drift{
  0%{ transform: translateX(0px); }
  50%{ transform: translateX(-25px); }
  100%{ transform: translateX(0px); }
}

/* Hero responsive */
@media (max-width: 980px){
  .sp-hero-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sp-hero{
    padding: 70px 0 120px;
  }
  .sp-hero h1{
    font-size: 54px;
  }
}

@media (max-width: 560px){
  .sp-hero h1{ font-size: 44px; }
  .sp-pillars{ grid-template-columns: 1fr; }
}

/* =========================
   SECTIONS + FOOTER
========================= */
.sp-section{
  padding: 90px 0;
}

.sp-section.alt{
  background:#f6f8fb;
}

.sp-section h2{
  font-family:"Playfair Display", serif;
  font-size: 40px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.sp-footer{
  padding: 24px 0;
  border-top: 1px solid rgba(11,24,48,0.10);
  color: rgba(11,24,48,0.75);
  font-size: 14px;
  text-align:center;
}

/* =========================
   HERO SNAPSHOT CARD FIX
========================= */

/* wrapper for the snapshot so it aligns with hero text */
.sp-snapshot-wrap{
  max-width: 560px;
  margin-top: 26px;
}

/* tighten the glass card so it doesn't stretch */
.sp-glass{
  width:100%;
  max-width:560px;
}

/* improve row spacing */
.sp-glass-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:12px 0;
}

/* slightly stronger label */
.sp-glass-row .k{
  font-size:13px;
  font-weight:600;
  opacity:0.8;
}

/* result values aligned right */
.sp-glass-row .v{
  font-size:13px;
  font-weight:800;
  text-align:right;
}

/* keep the description readable */
.sp-glass-note{
  margin-top:14px;
  max-width:48ch;
}

/* mobile behaviour */
@media (max-width:980px){

  .sp-snapshot-wrap{
    max-width:100%;
  }

  .sp-glass{
    max-width:100%;
  }

}

/* Premium depth + focus for hero */
.sp-hero{
  background:
    radial-gradient(900px 520px at 20% 18%, rgba(200,167,94,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 38%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.sp-footer{
   padding:20px;
}

/* ===== HERO LAYOUT FIX ===== */

.sp-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:60px;
  align-items:start;
}

.sp-hero-side{
  min-height:1px;
}

.sp-hero-copy{
  max-width:680px;
}

.sp-snapshot-wrap{
  max-width:520px;
  margin-top:18px;
}

.sp-hero-actions{
  margin-top:20px;
  gap:12px;
}

.sp-pillars{
  margin-top:18px;
  max-width:660px;
}

/* Mobile */
@media (max-width:980px){

  .sp-hero-grid{
    grid-template-columns:1fr;
  }

  .sp-pillars{
    grid-template-columns:1fr;
  }

}

/* Premium hero depth */
.sp-hero{
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(200,167,94,.14), transparent 60%),
    radial-gradient(700px 420px at 72% 30%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

/* =========================
   ABOUT STRATWELL
========================= */

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:70px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
  display:block;
}

.about-content h2{
  font-family:"Playfair Display", serif;
  font-size:40px;
  margin-bottom:14px;
}

.about-hook{
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
  color:var(--navy-900);
  line-height:1.4;
}

.about-content p{
  margin-bottom:14px;
  color:rgba(11,24,48,0.80);
}

@media (max-width: 900px){

  .about-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

}

/* ABOUT SECTION */

.about-section{
padding:80px 0 120px;
}

.about-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
padding:0 40px;
}

.about-text{
border-left:3px solid #c8a75a;
padding-left:30px;
}

.about-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


.about-text h2{
font-size:36px;
margin-bottom:20px;
}

.about-lead{
font-size:20px;
font-weight:500;
margin-bottom:20px;
color:#333;
}

.about-text p{
margin-bottom:18px;
line-height:1.7;
color:#444;
}

@media (max-width:900px){

.about-container{
grid-template-columns:1fr;
}

}

/* =========================
   PAGE HERO (INNER PAGES)
========================= */
.sp-page-hero{
  padding: 70px 0 50px;
  background:
    radial-gradient(1000px 500px at 18% 18%, rgba(200,167,94,.10), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.sp-page-hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.sp-kicker{
  color: rgba(246,243,234,0.75);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.sp-page-title{
  color: var(--text-100);
  font-family:"Playfair Display", serif;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.sp-page-lead{
  color: var(--text-200);
  font-size: 18px;
  max-width: 62ch;
}

.sp-page-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.sp-page-hero-media{
  display:flex;
  justify-content:flex-end;
}

.sp-hero-img{
  width: 100%;
  max-width: 560px;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(214,190,122,0.18);
  box-shadow: 0 18px 50px rgba(7,18,35,0.35);
}

/* =========================
   SPLIT LAYOUT + PROOF CARD
========================= */
.sp-split{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.sp-h2-tight{
  margin-bottom: 10px;
}

.sp-proof-card{
  border: 1px solid rgba(11,24,48,0.10);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(7,18,35,0.06);
}

.sp-proof-title{
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.sp-proof-list{
  padding-left: 18px;
  color: rgba(11,24,48,0.78);
}

.sp-proof-list li{
  margin: 8px 0;
}

/* =========================
   CARDS GRID
========================= */
.sp-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.sp-card{
  border: 1px solid rgba(11,24,48,0.10);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(7,18,35,0.06);
}

.sp-card h3{
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 16px;
}

.sp-card p{
  color: rgba(11,24,48,0.78);
  font-size: 14px;
}

/* =========================
   STEPS + CTA BAND
========================= */
.sp-steps{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}

.sp-step{
  display:grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(11,24,48,0.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7,18,35,0.06);
}

.sp-step-num{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(200,167,94,0.12);
  color: var(--navy-900);
  font-weight: 900;
}

.sp-step-title{
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.sp-cta-band{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11,24,48,0.10);
  background: rgba(11,24,48,0.03);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.sp-cta-title{
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 4px;
}

/* Footer helper */
.sp-footer-center{
  text-align:center;
}

/* Responsive */
@media (max-width: 980px){
  .sp-page-hero-grid{
    grid-template-columns: 1fr;
  }
  .sp-page-title{
    font-size: 44px;
  }
  .sp-hero-img{
    max-width: 100%;
    height: 320px;
  }
  .sp-split{
    grid-template-columns: 1fr;
  }
  .sp-cards{
    grid-template-columns: 1fr;
  }
  .sp-cta-band{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   SERVICES GRID (Index page)
========================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:22px;
}

.service-card{
  border:1px solid rgba(11,24,48,0.10);
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 24px rgba(7,18,35,0.06);
}

.service-card h3{
  margin:0 0 6px;
  font-size:18px;
  color:var(--navy-900);
  font-weight:800;
}

.service-card p{
  margin:0 0 14px;
  color:rgba(11,24,48,0.75);
  font-size:14px;
  line-height:1.55;
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* =========================
   PUBLISHERS SECTION
========================= */
.pub-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:30px;
  align-items:center;
}

.pub-media{
  position:relative;
}

.pub-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(7,18,35,0.12);
  object-fit:cover;

  /* This is the “extend left 50–70px” effect you asked for */
  transform: translateX(-60px);
}

.pub-copy h2{
  margin-bottom:10px;
}

.pub-lead{
  font-size:18px;
  font-weight:700;
  color: rgba(11,24,48,0.78);
  margin-bottom:14px;
}

.pub-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Responsive */
@media (max-width: 980px){
  .pub-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pub-img{
    transform: none;
  }
}


/* =========================
   CONTACT PAGE
========================= */
.contact-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:24px;
  align-items:start;
}

.contact-panel,
.contact-form-wrap,
.contact-hero-card{
  border:1px solid rgba(11,24,48,0.10);
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 26px rgba(7,18,35,0.06);
}

.contact-note{
  margin-top:10px;
  color:rgba(11,24,48,0.72);
}

.contact-detail-card{
  border-top:1px solid rgba(11,24,48,0.10);
  padding:16px 0;
}

.contact-detail-card:first-of-type{
  margin-top:10px;
}

.contact-detail-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.10em;
  font-weight:800;
  color:rgba(11,24,48,0.60);
  margin-bottom:6px;
}

.contact-detail-value,
.contact-detail-value a,
.contact-hero-card a{
  color:var(--navy-900);
  text-decoration:none;
  font-weight:600;
}

.contact-form{
  margin-top:18px;
}

.contact-form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.contact-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-field-full{
  grid-column:1 / -1;
}

.contact-field label{
  font-size:14px;
  font-weight:700;
  color:var(--navy-900);
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(11,24,48,0.16);
  background:#fff;
  color:var(--navy-900);
  font:inherit;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
  outline:none;
  border-color:rgba(200,167,94,0.95);
  box-shadow:0 0 0 3px rgba(200,167,94,0.16);
}

.contact-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:18px;
}

.contact-submit{
  border:none;
  cursor:pointer;
}

.contact-submit:disabled{
  opacity:0.7;
  cursor:not-allowed;
}

.contact-status{
  min-height:24px;
  font-size:14px;
  font-weight:600;
}

.contact-status.is-loading{ color:rgba(11,24,48,0.72); }
.contact-status.is-success{ color:#0f6b37; }
.contact-status.is-error{ color:#a12828; }

@media (max-width: 980px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .contact-form-grid{
    grid-template-columns:1fr;
  }
}

.contact-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #0f2343;
  cursor: pointer;
}

.contact-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c8a24d;
  cursor: pointer;
}
