/* ============================================================
   THE STASKO AGENCY — v5
   Clean centered layout system
   ============================================================ */

:root {
  --navy:       #071D2B;
  --navy-mid:   #0A3D6D;
  --marigold:   #F5A623;
  --marigold-dk:#D4891A;
  --cream:      #F8F4EA;
  --white:      #FFFFFF;
  --slate:      #5A6B7A;
  --text:       #1A2B38;
  --med-blue:   #0A3D60;
  --pink:       #F4A6B1;
  --pink-lt:    #FBE4EA;
  --leaf:       #2F6B4F;
  --divider:    rgba(7,29,43,0.1);
  --divider-lt: rgba(255,255,255,0.12);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  /* ONE max-width, used everywhere */
  --mw: 1060px;
  --pad: 32px;

  --space-2:  0.5rem;  --space-3:  0.75rem; --space-4:  1rem;
  --space-5:  1.25rem; --space-6:  1.5rem;  --space-8:  2rem;
  --space-10: 2.5rem;  --space-12: 3rem;    --space-16: 4rem;
  --space-20: 5rem;    --space-24: 6rem;

  --radius:    6px;
  --radius-sm: 3px;
  --ease:      220ms cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--white); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT PRIMITIVE — use .container inside every section
   ============================================================ */
.container {
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  height: 68px;
}
.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { transition: opacity var(--ease); display: flex; align-items: center; }
.nav-logo:hover { opacity: 0.75; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); transition: color var(--ease); }
.nav-link:hover { color: var(--marigold); }
.nav-cta { background: var(--marigold); color: var(--navy) !important; padding: 0.45rem 1.1rem; border-radius: var(--radius-sm); font-weight: 700; transition: background var(--ease) !important; }
.nav-cta:hover { background: var(--marigold-dk); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); }
.hero-logo { width: 80px; height: auto; display: block; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: all var(--ease); cursor: pointer; border: 2px solid transparent;
}
.btn-primary  { background: var(--marigold); color: var(--navy); border-color: var(--marigold); }
.btn-primary:hover  { background: var(--marigold-dk); border-color: var(--marigold-dk); }
.btn-outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover  { background: var(--navy); color: white; }
.btn-outline-lt { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.btn-outline-lt:hover { border-color: white; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--navy); padding-left: 0; }
.btn-ghost:hover { color: var(--marigold); }
.btn-ghost-gold { background: transparent; border-color: transparent; color: var(--marigold); padding-left: 0; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--marigold); margin-bottom: 1rem; }
.section-hed { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); }
.section-hed-lt { color: white; }
.section-hed em { font-style: italic; color: var(--marigold); }
.section-body { font-size: 1rem; color: var(--slate); line-height: 1.75; }
.section-body-lt { color: rgba(255,255,255,0.82); }

/* ============================================================
   HERO — full bleed, text left, photo right
   Centering: hero-text is absolutely positioned over left half
   ============================================================ */

/* Photo bleeds right half of viewport */


/* Text uses same container as nav — always aligned */




/* ============================================================
   HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
}
.hero-cta-only { display: flex; justify-content: flex-start; }
.hero-text { }
.hero-text-inner { max-width: 480px; }
/* Dark gradient left so text is readable over city/mountains */
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(10,25,40,0.78) 0%, rgba(10,25,40,0.55) 38%, rgba(10,25,40,0.1) 65%, transparent 100%);
}
.home-hero-container { z-index: 2 !important; }
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ============================================================
   RECOGNITION SECTION
   ============================================================ */
.recognition-section {
  background: var(--cream);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.recognition-lemon { display: none; }
.recognition-skyline {
  position: absolute;
  top: 0;
  right: calc((100vw - 1280px) / 2);
  width: 45%; height: 200px;
  z-index: 0; pointer-events: none;
  filter: brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(800%) hue-rotate(185deg) brightness(90%);
  opacity: 0.2;
}
.recognition-section .container { position: relative; z-index: 2; }
.recognition-hed {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--navy);
  margin-bottom: var(--space-10); max-width: 22ch;
}
.recognition-hed em {
  font-style: italic; color: var(--marigold);
  text-decoration: underline; text-decoration-color: var(--marigold);
  text-underline-offset: 5px;
}
.recognition-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-bottom: var(--space-10);
}
.r-card {
  background: white; border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.r-card:hover { box-shadow: 0 4px 20px rgba(7,29,43,0.08); transform: translateY(-2px); }
.r-card-top { display: flex; gap: 0.85rem; align-items: flex-start; }
.r-card-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
}
.r-card-icon svg { width: 16px; height: 16px; }
.r-card-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.r-card-text strong { color: var(--navy); font-weight: 700; }
.r-card-bar { width: 28px; height: 2.5px; background: var(--marigold); border-radius: 2px; }

/* ============================================================
   MULTIPLICATION EFFECT
   ============================================================ */
.multiply-section { background: var(--navy); padding: var(--space-20) 0; color: white; }
.multiply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.method-section-img { width: 100%; border-radius: var(--radius); display: block; }
.formula-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.formula-el { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.formula-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--marigold);
}
.formula-circle svg { width: 28px; height: 28px; }
.formula-el-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; max-width: 72px; line-height: 1.3; }
.formula-el-sub { font-size: 0.6rem; color: rgba(255,255,255,0.75); max-width: 80px; line-height: 1.4; }
.formula-op { font-size: 1.4rem; color: var(--marigold); font-weight: 300; flex-shrink: 0; }
.formula-result {
  position: relative; width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.formula-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid var(--marigold); opacity: 0.75;
}
.formula-result-num { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--marigold); position: relative; }
.formula-result-txt { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: white; text-align: center; position: relative; line-height: 1.4; }

/* ============================================================
   SELECTED WORK
   ============================================================ */
.work-section { background: var(--navy); padding: var(--space-20) 0; color: white; }
.work-layout { display: grid; grid-template-columns: 1fr 2.4fr; gap: var(--space-12); align-items: start; }
.work-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.work-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.work-card:hover { border-color: var(--marigold); transform: translateY(-3px); }
.work-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: 0.85; }
.work-card-body { padding: 1.1rem; }
.work-card-num { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; color: var(--marigold); margin-bottom: 0.4rem; }
.work-card-title { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 0.5rem; }
.work-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 0.75rem; }
.work-card-lnk { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--marigold); transition: letter-spacing var(--ease); }
.work-card:hover .work-card-lnk { letter-spacing: 0.14em; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { background: var(--cream); padding: var(--space-20) 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-16); align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
img.about-photo { width: 100%; height: auto; object-fit: cover; object-position: center top; aspect-ratio: 4/5; display: block; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: white; padding: var(--space-20) 0; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: end; margin-bottom: var(--space-12); }
.services-header-photo { grid-template-columns: 3fr 2fr; align-items: center; }
.services-header-img { width: 100%; height: 100%; max-height: 360px; object-fit: cover; object-position: center 30%; border-radius: var(--radius); }
.services-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.svc-card {
  padding: 1.25rem; border: 1px solid var(--divider); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.svc-card:hover { border-color: var(--marigold); box-shadow: 0 4px 20px rgba(7,29,43,0.06); }
.svc-icon { width: 26px; height: 26px; color: var(--marigold); }
.svc-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.svc-desc { font-size: 0.8rem; color: var(--slate); line-height: 1.65; flex: 1; }
.svc-lnk { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--marigold); }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-section { background: var(--navy); padding: var(--space-20) 0; color: white; }
.insights-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.insights-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: end; margin-bottom: var(--space-12); }
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.ins-card, .insight-card {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--ease), transform var(--ease);
  padding: 1.5rem;
}
.ins-card:hover, .insight-card:hover { border-color: var(--marigold); transform: translateY(-3px); }
.ins-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; opacity: 0.8; }
.ins-card-body { padding: 1.1rem; }
.ins-card-core, .insight-card-core { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--marigold); margin-bottom: 0.6rem; display: block; }
.ins-card-title, .insight-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 0.75rem; }
.ins-card-teaser, .insight-card-teaser { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 0.75rem; }
.ins-card-lnk, .insight-card-link { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--marigold); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section { background: var(--navy); padding: var(--space-20) 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-hed { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; color: white; margin-bottom: 1.25rem; }
.cta-hed em { font-style: italic; color: var(--marigold); }
.cta-headline { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; color: white; margin-bottom: 1.25rem; }
.cta-headline em { font-style: italic; color: var(--marigold); font-weight: 400; }
.section-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--marigold); margin-bottom: 1rem; display: block; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero { background: var(--navy); padding: var(--space-20) 0; }
.page-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--marigold); margin-bottom: 1.25rem; display: block; }
.page-hed, .page-headline { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: white; margin-bottom: 1.25rem; }
.page-hed em, .page-headline em { font-style: italic; color: var(--marigold); font-weight: 400; }
.page-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 54ch; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { max-width: 1280px; margin: 0 auto; padding: var(--space-20) 32px; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-20); align-items: start; }
.about-body { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.about-body p+p { margin-top: 1.5rem; }
.about-body strong { color: var(--navy); font-weight: 700; }
.about-pull { margin: 2rem 0; padding: 1.5rem 2rem; background: var(--navy); border-radius: var(--radius); }
.about-pull p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.6; color: white; }
.about-sidebar { position: sticky; top: 2rem; }
.about-sidebar-photo { width: 100%; border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; object-position: center top; margin-bottom: 1.5rem; }
.about-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.about-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--marigold); margin: 0.5rem 0 1rem; }
.about-contact-link {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color var(--ease);
}
.about-contact-link:hover { color: var(--marigold); }
.about-creds {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-cred { display: flex; align-items: baseline; gap: 0.75rem; }
.about-cred-label {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marigold);
  min-width: 3.5rem;
  flex-shrink: 0;
}
.about-cred-value {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}
.about-link { font-size: 0.875rem; color: var(--slate); display: block; margin-bottom: 0.5rem; transition: color var(--ease); }
.about-link:hover { color: var(--navy); }

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.results-page { max-width: 1280px; margin: 0 auto; padding: var(--space-20) 32px; }
.result-item { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-16); padding: var(--space-12) 0; border-bottom: 1px solid var(--divider); }
.result-label { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.result-hed { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.result-desc { font-size: 1rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.25rem; }
.result-headline { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 1rem; }
.result-body { display: flex; flex-direction: column; }
.service-card-ifs { display: flex; flex-direction: column; gap: 0.5rem; }
.service-card-if { font-size: 0.9rem; color: var(--slate); line-height: 1.6; padding-left: 1rem; border-left: 2px solid var(--marigold); }
.result-formula { padding: 1.25rem 1.5rem; background: var(--navy); border-radius: var(--radius); color: white; }
.result-formula-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--marigold); margin-bottom: 0.5rem; }
.result-formula-eq { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.result-formula-eq strong { color: white; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { padding: var(--space-20) 0; }
.svc-row { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-16); padding: var(--space-12) 0; border-bottom: 1px solid var(--divider); }
.svc-row-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.svc-row-desc { font-size: 1rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.25rem; }
.svc-row-ifs { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-row-if { font-size: 0.9rem; color: var(--navy); padding-left: 1rem; border-left: 2px solid var(--marigold); line-height: 1.5; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { max-width: 1280px; margin: 0 auto; padding: var(--space-20) 32px; display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-16); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-hed { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 700; line-height: 1.1; color: var(--navy); margin-bottom: 1.25rem; }
.contact-hed em { font-style: italic; color: var(--marigold); }
.contact-body { font-size: 1rem; color: var(--slate); line-height: 1.7; margin-bottom: 2rem; }
.contact-photo { width: 100%; max-width: 320px; border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; object-position: center 15%; margin-bottom: 2rem; }
.contact-left-headline { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; color: var(--navy); margin-bottom: 1.25rem; }
.contact-left-headline em { font-style: italic; color: var(--marigold); font-weight: 400; }
.contact-left-body { font-size: 1rem; color: var(--slate); line-height: 1.75; margin-bottom: 2rem; max-width: 42ch; }
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--marigold); margin-bottom: 0.4rem; }
.contact-detail-val { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-note { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--cream); border-left: 3px solid var(--marigold); border-radius: var(--radius); font-size: 0.875rem; color: var(--slate); line-height: 1.7; }
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.form-input,.form-textarea,.form-select {
  width: 100%; padding: 0.8rem 1rem;
  font-family: var(--sans); font-size: 0.95rem; color: var(--navy);
  background: var(--cream); border: 1px solid var(--divider);
  border-radius: var(--radius); transition: border-color var(--ease); appearance: none;
}
.form-input:focus,.form-textarea:focus,.form-select:focus { outline: none; border-color: var(--marigold); }
.form-textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: white; padding: var(--space-12) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-10); padding-bottom: var(--space-10); border-bottom: 1px solid var(--divider-lt); margin-bottom: 1.5rem; }
.footer-logo-img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 28ch; }
.footer-col-hed { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--marigold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.9); transition: color var(--ease); }
.footer-links a:hover { color: white; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 700;
  transition: all var(--ease);
}
.footer-social a:hover { border-color: var(--marigold); color: var(--marigold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.82); }
.footer-tag { font-family: var(--serif); font-size: 0.82rem; font-style: italic; color: var(--marigold); opacity: 1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  
  
  
  
  .multiply-grid { grid-template-columns: 1fr; }
  .work-layout { grid-template-columns: 1fr; }
  .work-cards { grid-template-columns: repeat(2,1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; }
  .services-header-photo { grid-template-columns: 1fr; }
  .services-header-img { max-height: 280px; order: -1; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .insights-header { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: repeat(2,1fr); }
  .about-content { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .result-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-row { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .recognition-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 2rem; gap: 1.25rem;
    border-top: 1px solid var(--divider);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform var(--ease), opacity var(--ease); z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .recognition-grid { grid-template-columns: 1fr; }
  .work-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }


/* === LAYOUT + HERO FIXES === */
/* Ensure all containers have proper padding */
.container { box-sizing: border-box; }

/* Hero image - show Lu centered */
.hero-photo img { object-position: center 30% !important; }

/* Page hero inner padding */
.page-hero-inner { 
  max-width: 1280px !important; 
  margin: 0 auto !important; 
  padding: var(--space-16) 32px !important; 
  width: 100%;
}

/* About content padding */
.about-content { 
  max-width: 1280px !important; 
  margin: 0 auto !important; 
  padding: var(--space-20) 32px !important; 
}

/* ── The Stasko Method™ — Approach Page ── */

/* Intro — single column */
.method-intro-section { background: white; padding: var(--space-20) 0 var(--space-12); }
.method-intro-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.method-intro-body { font-size: 1.08rem; line-height: 1.9; color: var(--text); }
.method-intro-body p { margin-bottom: 1.35rem; }
.method-intro-body strong { color: var(--navy); font-weight: 700; }
.method-list { margin: 1.25rem 0 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.method-list li { font-size: 1rem; color: var(--text); line-height: 1.75; padding-left: 1.25rem; position: relative; }
.method-list li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--marigold); }

/* Formula image bar */
.method-formula-section { background: #eeece9; padding: var(--space-12) 0; }
.method-formula-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.method-formula-img { width: 100%; height: auto; display: block; }

/* Steps */
.method-steps-section { background: var(--cream); padding: var(--space-20) 0; }
.method-steps-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.method-steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.method-step { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--divider); transition: border-color var(--ease), transform var(--ease); }
.method-step:hover { border-color: var(--marigold); transform: translateY(-3px); }
.method-step-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--marigold); opacity: 0.3; line-height: 1; margin-bottom: 0.75rem; }
.method-step-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.method-step-body { font-size: 0.92rem; color: var(--slate); line-height: 1.8; }
.method-step-body em { color: var(--navy); font-style: italic; }

/* 1+1=3 section */
.method-equation-section { background: var(--navy); padding: var(--space-20) 0; text-align: center; }
.method-equation-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.method-combos { display: flex; flex-direction: column; gap: 1rem; margin: var(--space-12) 0; }
.method-combo { font-family: var(--serif); font-size: 1.15rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.method-combo span { color: var(--marigold); margin: 0 0.6rem; font-size: 1.2rem; font-weight: 300; }
.method-combo-caption { font-size: 1rem; color: rgba(255,255,255,0.7); font-style: italic; margin-top: 1rem; }

/* Proof bridge */
.method-proof-section { background: white; padding: var(--space-20) 0; }
.method-proof-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Responsive */
@media (max-width: 900px) {
  .method-steps-grid { grid-template-columns: 1fr; }
}
