/* ============================================
   Dr. Bruce Hofmann — drbrucespeaks.com
   2026 Redesign — Refined Executive Coaching
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy-950: #060e1a;
  --navy-900: #0b1d33;
  --navy-800: #132c4a;
  --navy-700: #1e4166;
  --navy-600: #2a5f8f;
  --navy-500: #3a7bb8;
  --gold-600: #a67c25;
  --gold-500: #c4993d;
  --gold-400: #dbb66a;
  --gold-300: #ecd8a7;
  --gold-200: #f5ebd1;
  --cream-50: #fdfcf9;
  --cream-100: #f8f6f1;
  --cream-200: #f0ede4;
  --cream-300: #e6e0d4;
  --text: #1a1a2e;
  --text-body: #3a3f50;
  --text-light: #6a7080;
  --text-on-dark: rgba(255,255,255,0.92);
  --text-on-dark-muted: rgba(255,255,255,0.65);
  --border: #e4dfd5;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(11,29,51,0.06);
  --shadow-md: 0 4px 20px rgba(11,29,51,0.08);
  --shadow-lg: 0 8px 40px rgba(11,29,51,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --primary: var(--navy-700);
  --bg-warm: #faf7f2;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 0.5em;
  font-weight: 600;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1em; }
hr { border: none; height: 1px; background: var(--border); margin: 1.5em 0; }

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

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar strong { font-weight: 700; }

/* --- Header --- */
.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 80px;
  transition: min-height var(--transition);
}
.logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.logo img { height: 88px; width: auto; transition: height var(--transition); }

/* Shrink header on scroll */
.site-header.scrolled .header-inner { min-height: 56px; }
.site-header.scrolled .logo img { height: 56px; }
.site-header.scrolled .header-cta-phone { font-size: 1.1rem; }
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  margin-left: 4px;
  text-decoration: none;
}
.header-cta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
}
.header-cta-phone {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color var(--transition), font-size var(--transition);
}
.header-cta:hover .header-cta-phone { color: var(--gold-400); }

/* --- Navigation --- */
.main-nav ul { list-style: none; display: flex; gap: 2px; }
.main-nav a {
  color: var(--text-on-dark-muted);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition), background-color var(--transition);
  display: block;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,0.1); }

.main-nav li { position: relative; }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
  border: 1px solid var(--border);
}
.main-nav li:hover .dropdown { display: block; }
.main-nav .dropdown a {
  color: var(--text-body);
  padding: 10px 24px;
  font-size: 0.82rem;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
}
.main-nav .dropdown a:hover { background: var(--cream-100); color: var(--navy-700); }

.main-nav .dropdown .has-sub .sub-dropdown {
  display: none; position: absolute; left: 100%; top: 0;
  background: #fff; min-width: 220px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0;
}
.main-nav .dropdown .has-sub:hover .sub-dropdown { display: block; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }

/* --- Hero Carousel --- */
.hero-carousel {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  min-height: 420px;
}
.carousel-track { position: relative; width: 100%; min-height: 420px; }
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
  padding: 56px 24px 64px;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }

.carousel-slide[data-theme="navy"]  { background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 40%, var(--navy-700)); }
.carousel-slide[data-theme="blue"]  { background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 50%, var(--navy-500)); }
.carousel-slide[data-theme="gold"]  { background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 60%, var(--gold-600)); }
.carousel-slide[data-theme="teal"]  { background: linear-gradient(135deg, #0a2e3d, #145369 50%, var(--navy-600)); }
.carousel-slide[data-theme="warm"]  { background: linear-gradient(135deg, var(--navy-950), #2a1f0a 50%, var(--gold-600)); }
.carousel-slide[data-theme="green"] { background: linear-gradient(135deg, #0a2a1a, #1a4a3a 50%, var(--navy-700)); }
.carousel-slide[data-theme="deep"]  { background: linear-gradient(135deg, var(--navy-950), #1a0a2e 50%, var(--navy-800)); }

.carousel-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}

.slide-content { position: relative; z-index: 1; text-align: center; max-width: 860px; }
.slide-kicker {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-400);
  margin-bottom: 16px;
  font-weight: 500;
}
.slide-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.slide-subtitle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.slide-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold-300);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.slide-cta strong { color: var(--gold-400); font-weight: 700; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dots .dot.active { background: var(--gold-500); border-color: var(--gold-500); transform: scale(1.2); }
.carousel-dots .dot:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.2); }

/* --- Static Hero (fallback) --- */
.hero {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 40%, var(--navy-700));
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}
.hero h1 { color: #fff; font-size: 2.75rem; margin-bottom: 16px; font-weight: 700; }
.hero .tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
}
.hero .cta-btn {
  display: inline-block;
  background: var(--gold-500);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero .cta-btn:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,153,61,0.35); color: #fff; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 36px 0 28px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}
.page-hero h1 { color: #fff; font-size: 2.25rem; margin-bottom: 8px; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--text-on-dark-muted); font-family: var(--font-body); }
.page-hero .breadcrumb a { color: var(--gold-400); }
.page-hero .breadcrumb a:hover { color: var(--gold-300); }

/* --- Main Content Area --- */
.page-content { padding: 40px 0 48px; }
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-main p { font-size: 1.02rem; color: var(--text-body); line-height: 1.8; }
.content-main h2 { margin-top: 0.75em; padding-bottom: 8px; border-bottom: 2px solid var(--gold-300); }
.content-main h3 { color: var(--navy-800); font-weight: 600; }
.content-main ul, .content-main ol { margin: 1em 0; padding-left: 1.5em; }
.content-main li { margin-bottom: 0.5em; line-height: 1.6; }

.content-main blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 20px 28px;
  margin: 28px 0;
  background: var(--cream-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-800);
}

.content-main .highlight-box {
  border-left: 3px solid var(--gold-500);
  padding: 24px 28px;
  margin: 28px 0;
  text-align: center;
}
.content-main .highlight-box p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
}

.content-main .signature {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-600);
  font-style: italic;
  font-weight: 500;
  margin: 12px 0 0;
}

/* Clear floats before block-level elements */
.content-main .highlight-box,
.content-main .features-grid,
.content-main .book-boxes {
  clear: both;
}
.content-main .mission-statement {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy-700);
  text-align: center;
  line-height: 1.6;
  margin: 16px 0 24px;
}
.content-full { max-width: 800px; margin: 0 auto; }

/* --- Sidebar --- */
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.sidebar-widget h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-700);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-400);
  font-weight: 600;
}
.sidebar-widget img { border-radius: var(--radius-sm); margin: 0 auto 12px; }
.sidebar-widget p { font-size: 0.92rem; line-height: 1.6; color: var(--text-body); }
.sidebar-widget a.btn {
  display: block;
  text-align: center;
  background: var(--navy-800);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.sidebar-widget a.btn:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

/* --- Homepage Cards --- */
.services-section { padding: 40px 0; background: var(--cream-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.service-card img { width: 100%; height: auto; }
.service-card .card-body { padding: 28px; }
.service-card .card-body img { width: auto; max-width: 220px; margin: 0 auto; }
.service-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-card p { color: var(--text-body); font-size: 0.95rem; }
.service-card .card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy-600);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card .card-link:hover { color: var(--gold-500); }

/* --- Book Boxes --- */
.book-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.book-box {
  background: #fff;
  border: 2px solid var(--navy-800);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.book-box:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.book-box h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.book-box .book-box-subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--navy-700); margin-bottom: 12px; }
.book-box .book-box-phone { font-size: 1.15rem; font-weight: 700; color: var(--gold-600); margin-bottom: 4px; }
.book-box a { color: var(--navy-600); font-weight: 500; }

/* --- Testimonials --- */
.testimonial {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold-500);
  position: relative;
}
.testimonial::before { content: '\201C'; font-family: var(--font-display); font-size: 4rem; color: var(--gold-300); position: absolute; top: 12px; left: 20px; line-height: 1; }
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.7; margin-bottom: 12px; padding-left: 24px; }
.testimonial .attribution { font-family: var(--font-body); font-weight: 600; color: var(--navy-700); font-style: normal; font-size: 0.88rem; padding-left: 24px; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 36px 0;
  text-align: center;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}
.cta-banner h2 { font-family: var(--font-display); color: #fff; font-size: 2rem; font-style: italic; margin-bottom: 12px; }
.cta-banner p { color: var(--text-on-dark-muted); margin-bottom: 24px; font-size: 1.1rem; }
.cta-banner .cta-btn {
  display: inline-block;
  background: var(--gold-500);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cta-banner .cta-btn:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,153,61,0.35); }

/* --- Section Navigation (sidebar) --- */
.section-nav {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.section-nav h3 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy-700); margin-bottom: 12px; font-weight: 600; }
.section-nav ul { list-style: none; }
.section-nav li { border-bottom: 1px solid var(--border); }
.section-nav li:last-child { border-bottom: none; }
.section-nav a { display: block; padding: 10px 14px; color: var(--text-body); font-size: 0.88rem; transition: background-color var(--transition), color var(--transition); border-radius: var(--radius-sm); }
.section-nav a:hover, .section-nav a.active { background: var(--navy-800); color: #fff; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  color: var(--text-on-dark-muted);
  padding: 48px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-top: 12px; }
.footer-brand img { height: 48px; width: auto; max-width: 200px; margin-bottom: 8px; }
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--gold-400);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links a { color: var(--text-on-dark-muted); font-size: 0.85rem; display: block; padding: 4px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 4px; }
.footer-contact a { color: var(--gold-400); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  transition: background-color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--gold-500); color: #fff; transform: translateY(-2px); }
.footer-social img { width: 18px; height: 18px; opacity: 0.7; transition: opacity var(--transition); }
.footer-social a:hover img { opacity: 1; }

.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); padding-top: 4px; }

/* --- Features Grid (homepage two-column) --- */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-emphasis { font-size: 1.1rem; }
.content-main .no-border-bottom { border-bottom: none; }
.content-main .color-navy { color: var(--navy-700); }
.img-centered { margin: 0 auto; border-radius: var(--radius); }
.img-sidebar-sm { max-width: 150px; margin: 0 auto; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-light); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.sidebar-desc { font-size: 0.95rem; margin-bottom: 12px; }
.sidebar-phone { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 16px; }
.sidebar-phone-lg { font-size: 1.3rem; font-weight: 600; color: var(--primary); }
.text-left { text-align: left; }
.img-left-lg { float: left; margin: 4px 24px 18px 0; max-width: 250px; border-radius: var(--radius); box-shadow: var(--shadow); }

.img-left { float: left; margin: 4px 24px 18px 0; max-width: 200px; border-radius: var(--radius); box-shadow: var(--shadow); }
.img-right { float: right; margin: 4px 0 18px 24px; max-width: 180px; border-radius: var(--radius); box-shadow: var(--shadow); }
.clearfix::after { content: ""; display: table; clear: both; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus-visible {
  top: 0;
  color: #fff;
}

/* --- Intro grid --- */
.intro-section { padding: 36px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.intro-text h2 { border: none; margin-top: 0; }
.intro-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none; }
  .service-card, .book-box, .footer-social a, .hero .cta-btn, .cta-banner .cta-btn {
    transition: none;
  }
  .header-inner, .logo img, .header-cta-phone { transition: none; }
  html { scroll-behavior: auto; }
}

/* --- Typography Enhancements --- */
h1, h2, h3 { text-wrap: balance; }
.slide-title { text-wrap: balance; }

/* --- Focus States --- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .content-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-grid { grid-template-columns: 1fr; }
  .hero h1, .hero-carousel .slide-title { font-size: 2.5rem; }
  .book-boxes { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-radius: 0;
    display: none;
    padding-left: 16px;
    border: none;
  }
  .main-nav li:hover .dropdown, .main-nav li.open .dropdown { display: block; }
  .main-nav .dropdown a { color: var(--text-on-dark-muted); }
  .main-nav .dropdown .has-sub .sub-dropdown { position: static; box-shadow: none; padding-left: 16px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero-carousel, .carousel-track { min-height: 400px; }
  .carousel-slide { padding: 48px 20px 96px; }
  .slide-title { font-size: 2rem; }
  .slide-kicker { font-size: 1.1rem; }
  .slide-subtitle { font-size: 1.15rem; }
  .slide-cta { font-size: 0.88rem; }
  .hero { padding: 32px 0 28px; }
  .hero h1 { font-size: 1.85rem; }
  .services-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .img-left, .img-right, .img-left-lg { float: none; margin: 18px auto; max-width: 100%; }
}
