/* ============================================
   MICHAEL J. RAINWATER — PERSONAL WEBSITE
   CSS Stylesheet
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */

:root {
  /* Brand Colors */
  --navy:        #1B2A4A;
  --navy-dark:   #0F1B30;
  --navy-mid:    #243560;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A8892E;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F5F4F0;
  --gray-100:    #EEECE8;
  --gray-200:    #DDD9D0;
  --gray-400:    #9C9589;
  --gray-600:    #635E56;

  /* Text */
  --text-dark:   #1A1A2E;
  --text-medium: #4A5568;
  --text-light:  #718096;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:      1200px;
  --nav-height:     76px;

  /* Transitions */
  --t-fast:  0.18s ease;
  --t-med:   0.28s ease;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 40px rgba(0,0,0,0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button { font-family: var(--font-body); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}
p:last-child { margin-bottom: 0; }

strong { color: var(--text-dark); font-weight: 600; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-medium);
}

/* ============================================
   LAYOUT
   ============================================ */

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

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--light { background-color: var(--off-white); }
.section--dark  { background-color: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Gold accent rule */
.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0.85rem 0;
  border-radius: 2px;
}
.gold-rule--center { margin: 0.85rem auto; }

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ============================================
   SKIP NAVIGATION (WCAG 2.4.1)
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
  font-weight: 600;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--navy-dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow var(--t-med);
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__tagline {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 0.45rem 0.8rem;
  border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.01em;
}

.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__link.active { color: var(--gold); }

.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-left: 0.75rem;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-med);
}

@media (max-width: 900px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0.15rem;
    align-items: flex-start;
  }

  .nav__links.open { display: flex; }

  .nav__link {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.32);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 0;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 2rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.card__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast), gap var(--t-fast);
}

.card__link:hover { color: var(--gold-dark); gap: 0.7rem; }

/* ============================================
   AUDIENCE CARDS
   ============================================ */

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 2rem 1.75rem 1.75rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.audience-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.audience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.audience-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .audience-cards { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 2rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.testimonial__attribution {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial__attribution span {
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* ============================================
   BOOK DISPLAY
   ============================================ */

.book-featured {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(150deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border-radius: 4px 10px 10px 4px;
  box-shadow: -8px 8px 24px rgba(0,0,0,0.35), -2px 2px 6px rgba(0,0,0,0.2), inset -2px 0 6px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: rgba(0,0,0,0.28);
  border-radius: 4px 0 0 4px;
}

.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.book-cover__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.book-cover__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  z-index: 1;
}

.book-cover__accent {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
  z-index: 1;
}

.book-cover__subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  z-index: 1;
}

.book-cover__author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.75rem;
  z-index: 1;
}

@media (max-width: 768px) {
  .book-featured { grid-template-columns: 1fr; }
  .book-cover { max-width: 200px; }
}

/* ============================================
   SPEAKING TOPIC CARDS
   ============================================ */

.topic-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}

.topic-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.topic-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.topic-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.topic-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding-left: 2.25rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 0;
  width: 2px;
  background: var(--gray-100);
}

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

.timeline-item:last-child { padding-bottom: 0; }

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

.timeline-item__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.timeline-item h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.timeline-item__company {
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.timeline-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   SKILL TAGS
   ============================================ */

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: rgba(201,168,76,0.1);
  color: var(--navy);
  border: 1px solid rgba(201,168,76,0.25);
}

.tag--navy {
  background: rgba(27,42,74,0.07);
  color: var(--navy);
  border-color: rgba(27,42,74,0.15);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */

.photo-placeholder {
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  gap: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   CONTACT FORM
   ============================================ */

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.25), 0 0 0 5px rgba(201,168,76,0.35);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   CALLOUT / CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 1.75rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.75rem;
}

.footer__brand .nav__name {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer__email {
  font-size: 0.875rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color var(--t-fast);
}
.footer__email:hover { color: var(--gold-light); }

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-medium { color: var(--text-medium); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 3rem 0;
}

.highlight-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
}

.quote-large {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text-dark);
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  width: 1.1em;
  height: 1.1em;
}

/* ============================================
   MOBILE ENHANCEMENTS (WCAG + UX)
   ============================================ */

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .grid-2 { gap: 1.5rem; }

  .cta-banner .btn-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-banner .btn-group .btn { width: 100%; }
}
