/* ============================================================
   Churchill Hughes — churchillhughes.com
   Brand: Hughes Red #B83232 accent, Georgia display, system sans body
   ============================================================ */

:root {
  --red: #B83232;
  --red-dark: #9E2929;
  --ink: #1B1B1B;
  --body: #3D3D3D;
  --muted: #6B6B6B;
  --band: #F5F4F1;
  --border: #E4E2DD;
  --footer-bg: #1E232A;
  --footer-text: #C9CDD3;
  --serif: "Caladea", Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(32px, 3.9vw, 46px); line-height: 1.14; letter-spacing: -0.4px; }
h2 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; }
h3 { font-size: 19px; line-height: 1.3; }

.dot { color: var(--red); }

a { color: var(--red); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: #C9C7C2; }
.btn-outline:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.wordmark { line-height: 1; flex-shrink: 0; display: inline-block; }
.wordmark .logo { height: 44px; width: auto; display: block; }
.footer-brand .logo { height: 48px; }
.wordmark .wm-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.02;
  display: block;
  white-space: nowrap;
}
.wordmark .wm-sub {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}
.footer-brand .wm-name { color: #fff; }
.footer-brand .wm-sub { color: #8A9099; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); border-bottom-color: var(--red); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
}

/* ---------- Hero (full-bleed image right, white fade left, per mockups) ---------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  z-index: 0;
}
.hero-art img, .hero-art svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.75) 18%, rgba(255,255,255,0) 52%);
}
/* Photo slots: drop licensed images into images/ and swap the inline SVG
   inside .hero-art for <img src="images/hero-home.jpg" alt="..."> */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  align-items: center;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px 84px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy p { margin: 20px 0 28px; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-rule {
  width: 44px; height: 3px; background: var(--red);
  border: 0; margin: 22px 0 0;
}

/* ---------- Section bands ---------- */
.band { background: var(--band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section { padding: 64px 0; }
.section-head { margin-bottom: 36px; }

/* ---------- Feature strip (4-up with dividers) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-strip .feature {
  padding: 36px 28px;
  border-left: 1px solid var(--border);
}
.feature-strip .feature:first-child { border-left: 0; }
.feature .f-icon { margin-bottom: 14px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; }

/* ---------- Card grids ---------- */
.cards-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cards-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 22px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card:hover { border-color: #C9C7C2; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.card .c-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.card h3 { font-size: 17px; }
.card p { font-size: 14.5px; }

/* ---------- Icons (inline SVG) ---------- */
.icn { width: 40px; height: 40px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icn.red { stroke: var(--red); }
.icn.sm { width: 28px; height: 28px; }

/* ---------- Process steps (Approach) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  position: relative;
}
.step .s-icon {
  width: 46px; height: 46px;
  border: 1px solid #C9C7C2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  margin-bottom: 16px;
}
.step .s-num {
  font-family: var(--sans);
  font-size: 17px; font-weight: 700; color: var(--red);
  display: block; margin-bottom: 4px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; }

/* ---------- Expect / Not rows ---------- */
.expect-row {
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.expect-row > h2 { font-size: 24px; }
.expect-item h3 { font-size: 15.5px; margin-bottom: 6px; display: flex; gap: 8px; align-items: center; }
.expect-item p { font-size: 13.5px; }
.mark { color: var(--red); font-weight: 700; font-size: 16px; }

.head-rule { width: 40px; height: 3px; background: var(--red); border: 0; margin-top: 14px; }

/* ---------- Specialties list ---------- */
.spec-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}
.spec-list { border-top: 1px solid var(--border); }
.spec-item {
  display: grid;
  grid-template-columns: 44px 250px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.spec-item h3 { font-size: 16.5px; padding-top: 4px; }
.spec-item p { font-size: 14.5px; }

.aside-card {
  background: var(--band);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px 26px;
  position: sticky;
  top: 96px;
}
.aside-card h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 6px; }
.aside-card p { font-size: 14.5px; margin-bottom: 16px; }
.aside-card .btn { margin-top: 4px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { margin-bottom: 16px; }
.founder-card {
  display: grid;
  grid-template-columns: 285px 1fr;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.founder-photo { min-height: 280px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-info { padding: 22px 22px; }
.founder-info h3 { font-size: 22px; }
.founder-info .role {
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--red); text-transform: uppercase;
  display: block; margin: 4px 0 14px;
}
.founder-info p { font-size: 13.5px; margin-bottom: 10px; line-height: 1.55; }
.founder-loc {
  border-top: 1px solid var(--border);
  margin-top: 14px; padding-top: 14px;
  font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

.traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.trait { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.trait h3 { font-size: 17px; margin-bottom: 6px; }
.trait p { font-size: 14px; }

.not-row {
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.not-item h3 { font-size: 15.5px; margin-bottom: 6px; display: flex; gap: 8px; align-items: center; }
.not-item p { font-size: 13.5px; }
.x { color: var(--red); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.contact-method { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-method h3 { font-size: 15.5px; margin-bottom: 2px; }
.contact-method a, .contact-method span { font-size: 15px; color: var(--body); }
.contact-method a:hover { color: var(--red); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea {
  font-family: var(--sans);
  font-size: 15px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C9C7C2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 7px; }

/* ---------- Why-matters grid (Market Focus) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why-grid .why {
  padding: 30px 26px;
  border-left: 1px solid var(--border);
}
.why-grid .why:first-child { border-left: 0; }
.why h3 { font-size: 16px; margin-bottom: 8px; }
.why p { font-size: 13.5px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-grid h4 {
  font-family: var(--serif);
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--footer-text); }
.footer-grid a:hover { color: #fff; }
.footer-grid a.active { color: #E06060; }
.footer-brand p { margin-top: 18px; max-width: 30ch; line-height: 1.55; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact .icn { width: 20px; height: 20px; stroke: var(--footer-text); }
.linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: #3A4049; border-radius: 4px;
  color: #fff; font-weight: 700; font-size: 14px;
  margin-top: 14px;
}
.linkedin:hover { background: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid #333A43;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: var(--footer-text); margin-left: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; padding: 44px 24px 0; }
  .hero-art { position: static; width: 100%; height: 230px; margin-top: 34px; }
  .hero-art::after { display: none; }
  .hero { padding-bottom: 0; }

  .feature-strip, .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip .feature, .why-grid .why { border-left: 0; border-top: 1px solid var(--border); }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .expect-row, .not-row { grid-template-columns: 1fr 1fr; }
  .expect-row > h2, .not-row > h2 { grid-column: 1 / -1; }
  .spec-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .traits { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .feature-strip, .why-grid, .cards-5, .cards-6, .process,
  .expect-row, .not-row, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .spec-item { grid-template-columns: 44px 1fr; }
  .spec-item p { grid-column: 2; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 220px; }
}


/* ---------- Legal pages ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 3.4vw, 40px); margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 21px; margin: 34px 0 12px; }
.legal h3 { font-size: 16.5px; margin: 22px 0 8px; }
.legal p { margin-bottom: 14px; font-size: 15px; }
.legal ol { margin: 0 0 14px 22px; font-size: 15px; }
.legal ol li { margin-bottom: 6px; }
