/* ══════════════════════════════════════════
   CRONK ADVISORY — Main Stylesheet
   ══════════════════════════════════════════ */

:root {
  --forest:      #3B6352;
  --forest-m:    #4E7D68;
  --forest-lt:   #D4E6DB;
  --navy:        #1C2C3A;
  --navy-m:      #2D4359;
  --amber:       #C9893A;
  --amber-lt:    #F5E6CF;
  --cream:       #F7F4EE;
  --white:       #FFFFFF;
  --ink:         #1C2C3A;
  --ink-m:       #4A5A68;
  --ink-lt:      #8A9BAA;
  --rule:        #D8DFE4;

  --heading:     'Jost', sans-serif;
  --serif:       'Source Serif 4', Georgia, serif;

  --max-width:   1160px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; display: block; }

body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.8vw, 46px); }
h3 { font-size: clamp(18px, 2vw, 22px); line-height: 1.2; }
p  { margin: 0; }
p + p { margin-top: 16px; }
a  { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

.label {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}

.amber-bar {
  width: 40px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 20px 0 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  background: var(--forest);
  color: white !important;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--forest-m); text-decoration: none; }

.btn-ghost-dark {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 0;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost-dark:hover { color: white; text-decoration: none; }

.btn-ghost-amber {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 2px solid rgba(201,137,58,0.35);
  padding-bottom: 2px;
  margin-top: 24px;
  transition: border-color 0.15s;
}
.btn-ghost-amber:hover { border-color: var(--amber); text-decoration: none; }

/* ══════════════════════════════════════════
   NAVIGATION — cream background, logo as-is
   ══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  margin-right: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-m);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--forest) !important;
  color: white !important;
  margin-left: 8px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--forest-m) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink-m);
  border-radius: 1px;
  transition: 0.2s;
}
.nav-brand {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 800;
  color: #3B6352;
  letter-spacing: -0.02em;
  margin-right: auto;
  padding-left: 0.5em;
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section { padding: 96px 48px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); }
.section-forest { background: var(--forest); }
.section-header { margin-bottom: 0; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 48px 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -130px; right: -80px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,99,82,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,137,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .label { color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.hero h1 { color: white; margin-bottom: 28px; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 28px; align-items: center; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
}
.hero-card-name {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
}
.hero-card-title {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.hero-card-list { list-style: none; padding: 0; }
.hero-card-list li {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.hero-card-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--amber);
  font-size: 10px;
  top: 9px;
}

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0;
}
.service-card {
  background: white;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-number { color: var(--forest); margin-bottom: 0; }
.service-card h3 { color: var(--navy); }
.service-body { color: var(--ink-m); font-size: 15px; }
.service-body p { margin-bottom: 12px; }
.service-body p:last-child { margin-bottom: 0; }
.service-note {
  color: var(--ink-lt);
  font-size: 14px;
  font-style: italic;
}
.service-note p { margin: 0; }
.service-note a { color: var(--forest); }
.service-link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.service-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   APPROACH
   ══════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.approach-lead {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}
.approach-body { color: rgba(255,255,255,0.6); font-size: 16px; }
.approach-body p + p { margin-top: 16px; }
.approach-body strong { color: white; }

.approach-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar {
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.pillar-icon { font-size: 18px; color: var(--amber); margin-bottom: 10px; line-height: 1; }
.pillar-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 8px;
}
.pillar p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}
.about-lead {
  font-size: 19px;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
}
.about-body { color: var(--ink-m); }
.about-body p + p { margin-top: 16px; }
.about-location {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-lt);
  letter-spacing: 0.04em;
  margin-top: 24px;
}
.about-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
}
.about-roles { list-style: none; padding: 0; }
.about-roles li {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-m);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.about-roles li:last-child { border-bottom: none; }
.about-roles a { color: var(--forest); }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
  line-height: 1.65;
}
.contact-sub { color: rgba(255,255,255,0.45); margin-top: 12px; font-size: 15px; }
.contact-action { text-align: right; }
.contact-email {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 19px;
  color: white !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: border-color 0.15s;
}
.contact-email:hover { border-color: white; text-decoration: none; }
.contact-location {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-top: 12px;
  font-family: var(--heading);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
/* Footer logo: invert to white since footer is dark navy */
.footer-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 12px;
}
.footer-reg {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.footer-col-title {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  padding: 5px 0;
  line-height: 1.5;
}
.footer-links a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
.footer-legal {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section  { padding: 72px 32px; }
  .hero     { padding: 80px 32px 72px; }
  .nav-inner { padding: 0 32px; }

  .hero-inner      { grid-template-columns: 1fr; gap: 0; }
  .hero-aside      { display: none; }
  .services-grid   { grid-template-columns: 1fr; }
  .approach-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-grid      { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 32px; }
  .contact-action  { text-align: left; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section  { padding: 56px 24px; }
  .hero     { padding: 60px 24px 56px; }
  .nav-inner { padding: 0 24px; height: 64px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 2px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero-actions  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand  { grid-column: auto; }
}
