/* Brooks Smith Creative — an independent illustration and surface-pattern design studio.
   Design: warm cream ground, bold coral/tangerine + deep ink-navy.
   Geometric/rounded sans for display, high energy, lots of warmth.
   Deliberately unlike sibling sites (no pearl/mauve, no sage, no slate). */

:root {
  --bg: #fbf7f0;          /* warm cream */
  --bg-soft: #f5ede0;     /* amber tint */
  --ink: #1f2a44;         /* deep ink-navy */
  --muted: #566070;
  --primary: #e8643c;     /* coral/tangerine */
  --accent: #c0440f;      /* deep coral for hover/details */
  --gold: #d4a853;        /* warm gold accent */
  --line: #e8ddd0;
  --border: #e8ddd0;
  --card: #ffffff;
  --maxw: 1080px;
}

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

body {
  margin: 0;
  font-family: "Nunito", "Varela Round", "Trebuchet MS", "Century Gothic", "Franklin Gothic Medium", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.76;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "Futura", "Century Gothic", "Trebuchet MS", "Franklin Gothic Medium", "Arial Rounded MT Bold", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

a { color: var(--primary); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

/* ---- Header ---- */
header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--primary);
}
nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Futura", "Century Gothic", "Trebuchet MS", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon rect, .brand-icon polygon, .brand-icon line { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: #f8b88a; transition: color 0.15s ease; }
.brand:hover { color: #f8c4a8; }
.nav-links { display: flex; gap: 26px; flex-wrap: wrap; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }

/* ---- Hero ---- */
.hero {
  background: var(--ink);
  text-align: center;
  padding: 90px 26px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(232,100,60,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,168,83,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .eyebrow { color: var(--primary); }
.hero h1 { font-size: 3.1rem; max-width: 18ch; margin: 0 auto 22px; color: #fff; letter-spacing: -0.02em; }
.hero p { font-size: 1.18rem; color: rgba(255,255,255,0.72); max-width: 54ch; margin: 0 auto 32px; }
.hero .btn { margin: 0 5px 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn-soft { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-soft:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: #151e33; }

/* ---- Sections ---- */
section { padding: 64px 0; }
section.soft { background: var(--bg-soft); }
section.dark { background: var(--ink); }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p { color: rgba(255,255,255,0.72); }
section.dark .eyebrow { color: var(--primary); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
section h2 { font-size: 2.1rem; margin-bottom: 14px; }
section p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .ph { order: 2; }
.ph { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 46px rgba(31,42,68,.18); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Accent bar on image */
.ph::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--primary);
  z-index: 1;
}

/* ---- Card grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(31,42,68,.13); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 22px 24px 26px; }
.pill {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { font-size: 0.94rem; margin: 0; color: var(--muted); }

/* ---- Prose ---- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { font-size: 1.75rem; margin: 44px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 8px; }
.prose p, .prose li { color: #46505f; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 28px 0;
}
.note p { margin: 0; color: var(--ink); }
.pull {
  font-family: "Futura", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--primary);
  text-align: center;
  max-width: 28ch;
  margin: 44px auto;
  letter-spacing: -0.01em;
}

/* ---- Stat/highlight strip ---- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  display: block;
  font-family: "Futura", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat p { font-size: 0.88rem; margin: 0; color: var(--muted); }

/* ---- CTA ---- */
.cta { background: var(--primary); color: #fff; text-align: center; padding: 72px 26px; }
.cta h2 { font-size: 2.2rem; margin-bottom: 12px; color: #fff; }
.cta p { color: rgba(255,255,255,0.88); max-width: 52ch; margin: 0 auto 28px; }
.cta .btn-soft { color: #fff; border-color: rgba(255,255,255,0.7); }
.cta .btn-navy { background: var(--ink); color: #fff; }
.cta .btn-navy:hover { background: #151e33; }

/* ---- Footer ---- */
footer { background: var(--ink); color: rgba(255,255,255,0.68); padding: 56px 0 32px; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.footer-grid h4 {
  color: #fff;
  font-family: "Futura", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  font-weight: 800;
}
.footer-grid a, .footer-grid p {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  display: block;
  margin: 5px 0;
  font-size: 0.91rem;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 26px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .ph { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero h1 { font-size: 2rem; }
}

/* LOGO:start */
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.18rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; }
.brand-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon rect, .brand-icon polygon, .brand-icon line { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: #f8b88a; transition: color 0.15s ease; }
/* LOGO:end */
