/* Awesome LLC — shared site CSS for sub-pages */

:root {
  --brand-red: #D73845;
  --brand-red-deep: #A82831;
  --brand-blue: #2B6FB8;
  --brand-blue-deep: #1E5289;
  --black: #0A0A0B;
  --ink: #121316;
  --ink-soft: #2F3136;
  --paper: #F5F3EE;
  --surface: #FBFAF6;
  --muted: #6B6E75;
  --line: #E4DFD1;
  --line-strong: #CDC6B3;
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }

/* ===== Logo ===== */
.awesome-logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark-svg {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.logo-mark-svg--lg { width: 64px; height: 64px; }
.logo-wordmark {
  font-family: var(--display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em; line-height: 1;
  color: var(--ink);
}
.logo-wordmark i { font-style: italic; color: var(--brand-red-deep); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--brand-red-deep); }
.nav-cta {
  padding: 10px 22px;
  background: var(--black);
  color: var(--paper) !important;
  border-radius: 999px;
  font-size: 13px !important; font-weight: 500 !important;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--brand-red-deep); transform: translateY(-1px); }

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 48px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--brand-red-deep); }
.breadcrumb-sep { margin: 0 10px; color: var(--line-strong); }
.breadcrumb-current { color: var(--brand-red-deep); font-weight: 500; }

/* ===== Page hero (smaller than home hero) ===== */
.page-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 48px 80px;
}
.page-hero-eyebrow {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--brand-red-deep);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--brand-red); }
.page-hero-eyebrow--blue { color: var(--brand-blue-deep); }
.page-hero-eyebrow--blue::before { background: var(--brand-blue); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.page-hero h1 .red { font-style: italic; font-weight: 400; color: var(--brand-red-deep); }
.page-hero h1 .blue { font-style: italic; font-weight: 400; color: var(--brand-blue-deep); }
.page-hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 720px;
}
.page-hero-lede em { font-style: italic; color: var(--ink); font-family: var(--display); }

/* ===== Section scaffolding ===== */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 48px;
}
.section-tight {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 48px;
}
.section-head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 56px; align-items: start;
}
.section-label {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--brand-red-deep);
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 6px; height: 6px; background: var(--brand-red); }
.section-label--blue { color: var(--brand-blue-deep); }
.section-label--blue::before { background: var(--brand-blue); }
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.025em;
}
.section-title .red { font-style: italic; font-weight: 400; color: var(--brand-red-deep); }
.section-title .blue { font-style: italic; font-weight: 400; color: var(--brand-blue-deep); }

/* ===== Practice list (reused across pages) ===== */
.practice-list {
  list-style: none;
  border-top: 1px solid var(--line-strong);
  margin-top: 48px;
}
.practice-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  gap: 32px;
  align-items: baseline;
  font-size: 15px;
}
.practice-list .svc-num { font-family: var(--display); font-style: italic; color: var(--brand-red-deep); font-size: 13px; }
.practice-list .svc-name { font-weight: 500; color: var(--ink); font-size: 17px; }
.practice-list .svc-desc { color: var(--muted); font-size: 14px; font-weight: 300; }

/* ===== Process / approach grid ===== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px;
}
.process-item { padding-top: 28px; border-top: 2px solid var(--brand-red); }
.process-item:nth-child(2n) { border-top-color: var(--brand-blue); }
.process-num { font-family: var(--display); font-size: 13px; font-style: italic; color: var(--muted); margin-bottom: 14px; }
.process-item h4 { font-family: var(--display); font-size: 22px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.015em; }
.process-item p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; }

/* ===== Buttons ===== */
.btn-primary, .btn-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.btn-primary { background: var(--black); color: var(--paper); }
.btn-primary:hover { background: var(--brand-red-deep); transform: translateY(-1px); color: var(--paper); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }

/* ===== Contact CTA section (reused) ===== */
.contact-cta {
  background: var(--black);
  color: var(--paper);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 58%, var(--brand-blue) 58%, var(--brand-blue) 100%);
}
.contact-cta-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.contact-cta h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.contact-cta h2 i { font-style: italic; font-weight: 400; color: #F27279; }
.contact-cta p {
  font-size: 17px; line-height: 1.6;
  color: rgba(245,243,238,0.72); font-weight: 300;
  max-width: 440px;
}
.contact-cta-actions { display: flex; flex-direction: column; gap: 14px; }
.contact-cta-actions .btn-primary { background: var(--brand-red); color: var(--paper); justify-content: center; }
.contact-cta-actions .btn-primary:hover { background: #F27279; }
.contact-cta-actions .btn-secondary {
  background: transparent; color: var(--paper);
  border-color: rgba(245,243,238,0.3);
  justify-content: center;
}
.contact-cta-actions .btn-secondary:hover { border-color: var(--paper); }

/* ===== Footer ===== */
.footer { background: var(--black); color: var(--paper); padding: 80px 48px 32px; position: relative; overflow: hidden; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,243,238,0.12);
}
.footer-brand-lockup { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-brand-text { font-family: var(--display); font-size: 38px; font-weight: 300; line-height: 1; letter-spacing: -0.02em; color: var(--paper); }
.footer-brand-text i { font-style: italic; color: #F27279; }
.footer-tag { font-size: 14px; color: rgba(245,243,238,0.6); font-weight: 300; max-width: 340px; line-height: 1.55; }
.footer-col h5 { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: #F27279; margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: rgba(245,243,238,0.7); font-weight: 300; transition: color 0.2s ease; cursor: pointer; }
.footer-col li:hover { color: #F27279; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(245,243,238,0.45); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a:hover { color: #F27279; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .logo-wordmark { font-size: 18px; }
  .logo-mark-svg { width: 32px; height: 32px; }
  .breadcrumb { padding: 20px 20px 0; }
  .page-hero { padding: 40px 20px 60px; }
  .section, .section-tight { padding: 60px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .practice-list li { grid-template-columns: 60px 1fr; gap: 12px; }
  .practice-list .svc-desc { grid-column: 2; }
  .contact-cta { padding: 60px 20px; }
  .contact-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 56px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-text { font-size: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
