/* =========================================================
   BROCK WALKER — Personal Brand Site
   White-dominant. Yellow 2nd. Blue 3rd.
   Arial Black headers, Calibri/Arial body.
   Feel modeled on themortgagemaster.com.
   ========================================================= */

:root {
  --white: #ffffff;
  --off-white: #faf9f5;
  --cream: #f7f4e9;
  --gold: #f5ec00;
  --gold-soft: #fffce5;
  --gold-deep: #c4b800;
  --blue: #0061ff;
  --blue-deep: #1e4d8b;
  --blue-soft: #eaf2ff;
  --red: #c8102e;
  --red-deep: #9d0c24;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --gray-line: #e5e5e5;
  --gray-faint: #f2f2f2;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 40px rgba(30,77,139,0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--blue-deep); }

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

/* ─────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.gold { color: var(--gold-deep); }
.dot-gold {
  color: var(--gold-deep);
  margin: 0 8px;
  font-weight: 900;
  display: inline-block;
}

.section-eyebrow {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-lede.center { text-align: center; }

/* ─────────────────────────────────────────────
   HEADER / NAV
   ───────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 22px;
  display: block;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-sub {
  font-family: Calibri, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: Calibri, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--blue); }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-blue, .btn-red {
  display: inline-block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 97, 255, 0.25);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.25);
}
.btn-red:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-title { text-transform: none; letter-spacing: 0.3px; font-size: 16px; }

/* ─────────────────────────────────────────────
   HERO / ABOUT ME (combined top section)
   ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  font-weight: 900;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--blue-deep);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.hero-tagline {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--blue-deep);
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.hero-tagline .role {
  display: inline-block;
  white-space: nowrap;
}
.hero-tagline .dot-gold {
  margin: 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.hero-text .about-body p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.hero-text .about-body p:last-child {
  margin-bottom: 0;
}

.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Pull quote inside hero/about */
.about-pullquote {
  margin: 0 auto 30px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  text-align: center;
  position: relative;
  max-width: 900px;
}
.about-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 80px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}
.about-pullquote p {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--blue-deep);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Fun fact box */
.about-fun-fact {
  background: var(--gold-soft);
  border-left: 5px solid var(--gold);
  padding: 26px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.15);
  max-width: 900px;
  margin: 0 auto;
}
.fun-fact-label {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.4;
}
.fun-fact-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   VALUE STRIP
   ───────────────────────────────────────────── */
.value-strip {
  background: var(--gold);
  color: var(--ink);
  padding: 36px 0;
  text-align: center;
}
.value-quote {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.value-attribution {
  font-family: Calibri, Arial, sans-serif;
  font-size: 15px;
  color: var(--blue-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────── */
.section {
  padding: 90px 0;
}
.section-alt {
  background: var(--off-white);
}

/* What I Do — Photo Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 30px;
}
.cards-grid.cards-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card:hover .card-photo {
  transform: scale(1.06);
}
.card:hover .card-badge {
  background: var(--gold);
  color: var(--ink);
}

.card-photo {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
  border-bottom: 4px solid var(--gold);
}
.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--blue);
  color: var(--white);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 10px;
  padding: 7px 14px;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card-content {
  padding: 28px 28px 30px;
  text-align: left;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--ink);
}
.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.card-link {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.card-link:hover { color: var(--gold-deep); }
.card-link-red {
  color: var(--red);
}
.card-link-red:hover {
  color: var(--red-deep);
}

/* Promise Band */
.promise-band {
  background: var(--gold);
  padding: 70px 24px;
  text-align: center;
  position: relative;
}
.promise-band::before,
.promise-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blue-deep);
}
.promise-band::before { top: 0; }
.promise-band::after { bottom: 0; }
.promise-box { max-width: 900px; margin: 0 auto; }
.promise-text {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.promise-attribution {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--blue-deep);
  letter-spacing: 1.5px;
}

/* Contact */
.apply-section {
  padding: 90px 0;
}
.apply-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-eyebrow-big {
  font-size: 16px;
  letter-spacing: 5px;
  font-weight: 900;
}
.apply-inner .section-title {
  margin-bottom: 40px;
}
.contact-form {
  text-align: left;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-line);
  border-radius: 6px;
  font-family: Calibri, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-or {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 28px 0 20px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions.center { justify-content: center; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 50px 0 30px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.footer-tag {
  font-family: Calibri, Arial, sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--white);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-cols {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: Calibri, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}
.footer-col p { margin: 0; }
.footer-col-left { text-align: left; }
.footer-col-center { text-align: center; }
.footer-col-right { text-align: right; }

.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-col a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-col-center .footer-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.footer-col-center .footer-contact {
  font-size: 14px;
  margin: 2px 0;
}
.footer-col-center .footer-contact a {
  color: rgba(255,255,255,0.9);
  border-bottom: none;
}
.footer-col-center .footer-contact a:hover { color: var(--gold); }
.footer-col-center .footer-tag {
  font-family: Calibri, Arial, sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}

.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-top: 16px;
  width: 100%;
  max-width: 600px;
}

/* ─────────────────────────────────────────────
   MOBILE
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image img { margin: 0 auto; max-width: 320px; }

  .cards-grid,
  .cards-grid.cards-grid-two {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-pullquote { padding: 28px 24px; }
}

@media (max-width: 640px) {
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  /* Header — hide brand-sub on mobile, shrink nav */
  .site-header .nav { padding-top: 14px; padding-bottom: 14px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; font-weight: 700; }
  .brand-name { font-size: 18px; }
  .brand-sub { display: none; }

  /* Hero */
  .hero { padding: 40px 0 56px; overflow: visible; }
  .hero::before { width: 200px; height: 200px; top: -50px; right: -50px; }
  .hero-header { margin-bottom: 32px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 10px; }
  .hero-title { font-size: 36px; line-height: 1.05; margin-bottom: 8px; }
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .hero-tagline {
    font-size: 11px;
    letter-spacing: 0.4px;
    line-height: 1.7;
  }
  .hero-tagline .dot-gold { margin: 0 4px; }
  .hero-grid { gap: 28px; margin-bottom: 28px; }
  .hero-text .about-body p {
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-image { max-width: 100%; }
  .hero-image img { max-width: 260px; border-width: 4px; margin: 0 auto; }

  /* All section titles scale down hard */
  .section-title { font-size: 26px; line-height: 1.2; }
  .section-eyebrow { font-size: 11px; letter-spacing: 2px; }
  .section-lede { font-size: 16px; }

  /* Section padding */
  .section { padding: 50px 0; }

  /* Value strip */
  .value-strip { padding: 28px 0; }
  .value-quote { font-size: 19px; line-height: 1.3; padding: 0 8px; }
  .value-attribution { font-size: 12px; letter-spacing: 1.5px; padding: 0 8px; }

  /* About pullquote + fun fact */
  .about-pullquote { padding: 24px 20px; margin-bottom: 22px; }
  .about-pullquote p { font-size: 17px; line-height: 1.4; }
  .about-pullquote::before { font-size: 60px; top: -5px; left: 12px; }
  .about-fun-fact { padding: 22px 20px; }
  .fun-fact-label { font-size: 11px; letter-spacing: 1.5px; }
  .fun-fact-text { font-size: 14px; }

  /* Promise band */
  .promise-band { padding: 48px 20px; }
  .promise-text { font-size: 24px; line-height: 1.3; padding: 0 4px; margin-bottom: 10px; }
  .promise-attribution { font-size: 13px; letter-spacing: 1px; }

  /* Cards */
  .card-photo { height: 200px; }
  .card-content { padding: 22px 22px 24px; }
  .card h3 { font-size: 20px; }
  .card p { font-size: 14px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px 18px; }
  .form-field input, .form-field textarea { font-size: 16px; }
  .contact-eyebrow-big { font-size: 13px; letter-spacing: 3px; }

  /* Bottom CTAs full-width on mobile */
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-blue,
  .hero-actions .btn-red { width: 100%; text-align: center; padding: 14px 22px; font-size: 13px; letter-spacing: 0.8px; }

  /* Buttons sizing */
  .btn-primary, .btn-secondary, .btn-blue, .btn-red { font-size: 13px; padding: 14px 22px; letter-spacing: 0.8px; }
  .btn-title { font-size: 14px; letter-spacing: 0.3px; }

  /* Footer columns stack on mobile */
  .footer-cols { grid-template-columns: 1fr; gap: 26px; padding-top: 22px; }
  .footer-col-left,
  .footer-col-right { text-align: center; }
  .footer-col-center { order: -1; }
}
