/* =========================================================
   Frost Financial — Rebuild (matched to original design)
   Bold sans headings · black buttons · sage services section
   ========================================================= */

:root {
  --navy: #14253c;        /* headings */
  --ink-head: #16181c;    /* near-black all-caps headings */
  --steel: #5f88a8;       /* brand blue accent */
  --sage: #93a8ac;        /* services section background */
  --sage-soft: #aebfc2;
  --body: #2c3a44;        /* body text */
  --muted: #5d6f7a;
  --line: #d9e0e6;
  --white: #ffffff;
  --black: #0b0b0c;       /* buttons */

  --radius: 14px;
  --radius-sm: 6px;
  --shadow: 0 22px 50px -26px rgba(20, 37, 60, 0.45);
  --shadow-sm: 0 10px 30px -18px rgba(20, 37, 60, 0.4);
  --container: 1180px;

  --head: "Poppins", "Segoe UI", Arial, sans-serif;
  --sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.5px;
}

p { margin: 0 0 1.15em; }
a { color: var(--steel); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 26px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--steel);
  margin-bottom: 14px;
}

.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }
.section--sage { background: var(--sage); }
.section--light { background: #f4f7f8; }

.upper { text-transform: uppercase; letter-spacing: 0.5px; }
.lead { font-size: 1.15rem; color: var(--body); max-width: 720px; }

/* ---------- Buttons (black, rectangular) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  padding: 15px 34px;
  border-radius: 3px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-align: center;
}
.btn--primary { background: var(--black); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--black); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--block { width: 100%; }

.btn-center { text-align: center; margin-top: 16px; }

.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--head); font-weight: 700;
  color: var(--navy); font-size: 0.95rem;
}
.link-more::after { content: "\2192"; transition: transform 0.18s ease; }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- Logo / brand ---------- */
.brand {
  display: flex; align-items: center; gap: 12px;
  line-height: 1;
}
.brand .mark { width: 42px; height: 42px; flex: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--head); font-weight: 800;
  font-size: 1.18rem; letter-spacing: 1px;
  color: var(--steel); text-transform: uppercase;
}
.logo-sub {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.5px;
  color: var(--body); margin-top: 2px;
}

/* big stacked logo (contact / footer) */
.logo-stack { max-width: 360px; }
.logo-stack .logo-name { font-size: 2rem; letter-spacing: 2px; }
.logo-stack .rule { height: 3px; background: var(--ink-head); margin: 6px 0 6px; }
.logo-stack .logo-sub { font-size: 1.05rem; font-weight: 600; }
.logo-stack .credit { margin-top: 18px; text-align: center; }
.logo-stack .credit .name { font-family: var(--head); font-weight: 700; font-size: 1.2rem; color: var(--body); }
.logo-stack .credit .role { font-size: 0.85rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--head); color: var(--navy); font-weight: 600;
  font-size: 0.95rem; padding: 6px 0; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--steel); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--steel); border-radius: 2px;
}
.nav-cta { margin-left: 6px; }
.nav-cta a { padding: 11px 24px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef3f4 100%);
  border-bottom: 1px solid var(--line);
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
  padding-top: 80px; padding-bottom: 84px;
}
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); color: var(--navy); margin-bottom: 0.1em; }
.hero .tagline { font-family: var(--head); font-weight: 600; font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--steel); margin-bottom: 0.5em; }
.hero .motto { font-size: 1.2rem; color: var(--body); max-width: 460px; }

/* ---------- Full-width image hero (home) ---------- */
.hero--image {
  position: relative;
  min-height: 470px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: #14253c url("assets/hero-running.png") center 32% / cover no-repeat;
  border-bottom: none;
}
.hero--image .hero-overlay { position: absolute; inset: 0; background: rgba(15, 28, 46, 0.34); }
.hero-banner-content { position: relative; z-index: 1; color: #fff; padding: 90px 24px; max-width: 900px; }
.hero-banner-content h1 {
  color: #fff; margin: 0;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  text-shadow: 0 2px 22px rgba(0,0,0,0.4);
}
.hero-banner-content .tagline {
  color: #fff; font-family: var(--head); font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.5rem); margin: 0 0 0.35em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero-banner-content .motto {
  color: #fff; font-family: var(--head); font-weight: 700;
  letter-spacing: 1px; font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  margin: 0 auto; max-width: none;
}

/* ---------- Cards / forms ---------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 38px;
}
.card h3 { font-size: 1.6rem; }
.card .card-sub { color: var(--muted); margin-bottom: 22px; }

.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--head); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
  color: var(--body); background: #fbfdfe;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(95,136,168,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-status { margin: 14px 0 0; font-size: 0.95rem; font-weight: 600; min-height: 1.2em; }
.form-status--success { color: var(--sage-deep, #2f6f60); }
.form-status--error { color: #c0392b; }

/* ---------- Section heads ---------- */
.section-head { max-width: 820px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head--rule h2 { display: inline-block; }
.section-head--rule .rule { height: 2px; background: rgba(255,255,255,0.7); max-width: 760px; margin: 14px auto 0; }

/* ---------- Split (who we are / mission) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split--text-right .media { order: -1; }
.media {
  border-radius: var(--radius); overflow: hidden;
  min-height: 380px;
  background: linear-gradient(160deg, var(--sage-soft), var(--sage));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.media img.photo { width: 100%; height: 100%; object-fit: cover; }
.media--contain { background: #fff; border: 1px solid var(--line); }
.media--contain img.photo { object-fit: contain; padding: 38px; }
/* Placeholder icons overlay images only as a fallback; hidden now that real images are in place */
.ph-icon { display: none !important; }
.media .ph-icon { width: 120px; height: 120px; opacity: 0.6; color: var(--navy); }
.media .ph-label { position: absolute; bottom: 14px; font-size: 0.75rem; color: var(--navy); opacity: 0.7; }

.h-who h2, .h-mission h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.h-mission h2 { color: var(--ink-head); }
.h-mission .bold { font-weight: 800; color: var(--ink-head); }

/* ---------- Services (stacked cards on sage) ---------- */
.section--sage .section-head h2 { color: #fff; }
.section--sage .eyebrow { color: #fff; }

.service-stack { display: flex; flex-direction: column; gap: 34px; }
.service-row {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 40px; align-items: center;
  padding: 44px;
}
.service-row .art {
  border-radius: var(--radius-sm);
  background: #fff;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-row .art img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.service-row .art .ph-icon { width: 110px; height: 110px; color: var(--steel); opacity: 0.85; }
.service-row h3 { font-size: 1.9rem; }
.service-row .intro { font-weight: 700; color: var(--navy); margin-bottom: 0.3em; }
.service-row .desc { color: var(--body); }
.service-row ul { list-style: none; margin: 6px 0 24px; padding: 0; }
.service-row li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--body); }
.service-row li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}

/* ---------- Founder block (home) ---------- */
.founder {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 50px; align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.founder .portrait {
  min-height: 380px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--sage-soft), var(--sage));
  display: flex; align-items: center; justify-content: center;
}
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder .portrait .ph { font-family: var(--head); font-weight: 800; font-size: 3.4rem; color: #fff; }
.founder h3 { font-size: 2.4rem; margin-bottom: 2px; }
.team-role { display: block; font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: var(--steel); margin-bottom: 18px; }

/* ---------- Pillars (about) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.pillar .tag { font-family: var(--head); font-weight: 800; font-size: 1.5rem; color: var(--steel); margin-bottom: 6px; }

/* ---------- Tick list (reusable) ---------- */
.ticklist { list-style: none; margin: 6px 0 22px; padding: 0; }
.ticklist li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--body); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}

/* ---------- About split text columns ---------- */
.about-text h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin-bottom: 0.4em; }
.about-text h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 0.45em; }
.about-text .callout { margin-top: 1.2em; }
.about-text .ticklist { margin-top: 1.2em; }
.kicker {
  display: block; font-family: var(--head); font-weight: 700;
  font-size: 1rem; color: var(--steel); margin-bottom: 10px; letter-spacing: 0.2px;
}
/* Sage section: white text + transparent media for the white icon */
.section--sage .kicker { color: #fff; }
.section--sage .about-text h1,
.section--sage .about-text h2,
.section--sage .about-text p,
.section--sage .about-text li { color: #fff; }
.media--plain { background: transparent; box-shadow: none; border: none; }
.media--plain img.photo { object-fit: contain; padding: 8px; }

/* ---------- Prose (about) ---------- */
.prose { max-width: 800px; }
.prose p { font-size: 1.08rem; color: var(--body); }
.callout {
  background: #fff; border-left: 4px solid var(--steel);
  border-radius: var(--radius-sm); padding: 22px 26px; margin: 0 0 1.4em;
  font-size: 1.08rem; box-shadow: var(--shadow-sm);
}

/* ---------- Team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 820px; margin: 0 auto; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-photo {
  height: 280px; background: linear-gradient(160deg, var(--sage-soft), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 800; font-size: 3.2rem; color: #fff;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-body { padding: 30px; }
.team-body h3 { font-size: 1.6rem; margin-bottom: 2px; }
.team-body .team-role { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.team-body p { font-size: 0.98rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-intro { text-align: center; max-width: 820px; margin: 0 auto 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
/* Contact info card */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 38px;
  text-align: center;
}
.contact-card__logo { width: 190px; height: auto; margin: 0 auto 18px; }
.contact-card__name { font-family: var(--head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.contact-card__role {
  font-family: var(--head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--steel);
  margin-top: 2px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.contact-details { list-style: none; margin: 0; padding: 0; max-width: 300px; margin-left: auto; margin-right: auto; text-align: left; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; color: var(--body); font-size: 1rem; }
.contact-details li:last-child { margin-bottom: 0; }
.contact-details svg { width: 22px; height: 22px; flex: none; color: var(--steel); margin-top: 3px; }
.contact-details a { color: var(--body); }
.contact-details a:hover { color: var(--steel); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c4d2dd; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: #9fb2c0; }
.footer-brand p { color: #9fb2c0; max-width: 320px; font-size: 0.95rem; margin-top: 14px; text-align: center; }
.footer-col h4 { color: #fff; font-family: var(--head); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #c4d2dd; font-size: 0.96rem; }
.footer-col a:hover { color: #fff; }
.disclaimer { padding-top: 26px; font-size: 0.82rem; color: #8499a8; line-height: 1.6; max-width: 920px; margin-left: auto; margin-right: auto; text-align: center; }
.disclaimer a { color: #a9c2d4; text-decoration: underline; }
.disclaimer a:hover { color: #fff; }
.disclosure-links { margin-top: 14px; text-align: center; font-size: 0.85rem; }
.disclosure-links a { color: #a9c2d4; text-decoration: underline; font-weight: 600; }
.disclosure-links a:hover { color: #fff; }
.disclosure-links .sep { color: #5b6f80; margin: 0 8px; }
.crd { margin-top: 14px; font-size: 0.82rem; color: #8499a8; text-align: center; letter-spacing: 0.3px; }
.copyright { margin-top: 10px; font-size: 0.8rem; color: #708496; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split .media, .split--text-right .media { order: -1; min-height: 260px; }
  .service-row { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .service-row .art { min-height: 200px; order: -1; }
  .founder { grid-template-columns: 1fr; gap: 30px; }
  .founder .portrait { min-height: 280px; }
  .pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 26px 20px; box-shadow: var(--shadow-sm); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin-top: 14px; }
  .nav-cta a { padding: 14px; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .card { padding: 26px; }
  .footer-top { grid-template-columns: 1fr; }
}
