/* ============================================
   BROOKS BELL — Personal Speaker Website
   Style: Warm retro 80s, personal, bold
   ============================================ */

/* FONTS — Adobe Fonts via Typekit (loaded in HTML <head>) */
/* itc-avant-garde-gothic-pro: headings (bold/700, tight kerning) */
/* forma-djr-micro: body copy */
/* pinot-grigio-modern: available as alternate heading font */

/* Aliskan fallbacks (local) */
@font-face {
  font-family: 'AliskanScript';
  src: url('fonts/aliskan_script-webfont.woff2') format('woff2'),
       url('fonts/aliskan_script-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AliskanSans';
  src: url('fonts/aliskan_sans-webfont.woff2') format('woff2'),
       url('fonts/aliskan_sans-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* CSS VARIABLES */
:root {
  --cream: #FAF5EE;
  --warm-white: #FFFCF7;
  --fuchsia: #C4622D;
  --fuchsia-light: #F5E0D3;
  --crimson: #9B3D1A;
  --lavender: #4A7C59;
  --lavender-light: #DDF0E5;
  --gold: #C9973A;
  --gold-light: #FDF3DC;
  --charcoal: #2B2018;
  --mid-gray: #5C5248;
  --light-gray: #EAE4DC;
  --border: #DDD5C8;

  --font-script: "pinot-grigio-modern", 'AliskanScript', Georgia, serif;
  --font-sans: "forma-djr-micro", 'AliskanSans', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.12);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-script);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* NAVIGATION */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  overflow: visible;
  align-items: flex-start;
  padding-top: 10px;
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--charcoal);
  white-space: nowrap;
}

.nav-logo-img {
  height: 180px;
  width: auto;
  display: block;
  position: relative;
  z-index: 101;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding-top: 30px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fuchsia); }
.nav-links a.active { color: var(--charcoal); font-weight: bold; }

.nav-cta {
  background: var(--fuchsia) !important;
  color: var(--warm-white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--crimson) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* PAGE WRAPPER */
.page-content { padding-top: 68px; }

/* SECTIONS */
.section { padding: 6rem 2rem; }
.section--tight { padding: 4rem 2rem; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--fuchsia { background: var(--fuchsia); color: var(--warm-white); }
.section--cream { background: var(--cream); }
.section--lavender { background: var(--lavender-light); }
.section--gold { background: var(--gold-light); }

.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 740px; margin: 0 auto; }
.container--wide { max-width: 1300px; margin: 0 auto; }

/* SECTION HEADERS */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.8rem;
  display: block;
}
.section--dark .section-label,
.section--fuchsia .section-label { color: rgba(255,255,255,0.7); }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.75) 0%,
    rgba(28, 28, 28, 0.2) 50%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0 0;
  padding-left: clamp(2rem, 8vw, 8rem);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--fuchsia);
  color: var(--warm-white);
  border-color: var(--fuchsia);
}
.btn-primary:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--warm-white);
}

.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}
.btn-gold:hover { filter: brightness(1.1); }

/* TWO-COLUMN GRID */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--flip { direction: rtl; }
.two-col--flip > * { direction: ltr; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--warm-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--fuchsia);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* PILLAR CARDS */
.pillar-card {
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--fuchsia);
  background: var(--warm-white);
}

.pillar-card h3 {
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.pillar-card p {
  color: var(--mid-gray);
  font-size: 0.95rem;
}

/* PULL QUOTE */
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  color: var(--charcoal);
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--fuchsia);
}

.pull-quote--center {
  text-align: center;
  padding-left: 0;
  border-left: none;
  max-width: 800px;
  margin: 0 auto;
}

/* PHOTO FRAME */
.photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--tall { aspect-ratio: 3/4; }
.photo-frame--square { aspect-ratio: 1/1; }
.photo-frame--wide { aspect-ratio: 16/9; }

/* ACCENT STRIPE */
.accent-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--fuchsia), var(--gold), var(--lavender));
}

/* PAGE HERO (for inner pages) */
.page-hero {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(217, 26, 106, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--warm-white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 1.2rem auto 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* TIMELINE */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fuchsia);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--fuchsia);
}

.timeline-date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.3rem;
}

.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p { color: var(--mid-gray); font-size: 0.95rem; }

/* TAGS / CHIPS */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--mid-gray);
  margin: 0.25rem;
}

.tag--fuchsia {
  background: var(--fuchsia-light);
  border-color: var(--fuchsia);
  color: var(--fuchsia);
}

/* FORM */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--mid-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--fuchsia);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: var(--warm-white);
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--fuchsia); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--fuchsia); }

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* UTILITY */
.text-center { text-align: center; }
.text-fuchsia { color: var(--fuchsia); }
.text-crimson { color: var(--crimson); }
.text-lavender { color: var(--lavender); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--mid-gray); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--flip { direction: ltr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1.5rem; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
    z-index: 99;
  }
}
