/* ------------------------------------------------------------
   HOLISTIC RETIREMENT — Brand Stylesheet
   Design: Deep navy + warm gold, Cormorant Garamond luxury serif
   ------------------------------------------------------------ */

/* === CSS Variables === */
:root {
  /* Brand colours */
  --hr-navy:        #1B2E4A;
  --hr-navy-mid:    #243D62;
  --hr-navy-dark:   #0F1D30;
  --hr-navy-pale:   #EEF2F8;
  --hr-gold:        #C9A52C;
  --hr-gold-light:  #E8C96A;
  --hr-gold-pale:   #FBF5E0;
  --hr-cream:       #F7F5F0;
  --hr-white:       #FFFFFF;
  --hr-text:        #2C3E50;
  --hr-text-muted:  #64748B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Spacing & shape */
  --section-pad: 5.5rem;
  --radius-lg:   1rem;
  --radius-md:   0.625rem;
  --radius-sm:   0.375rem;
  --radius-pill: 2rem;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 18px rgba(0,0,0,.11);
  --shadow-lg:  0 8px 36px rgba(0,0,0,.16);

  /* Transition */
  --transition: 0.28s ease;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--hr-text);
  background: var(--hr-white);
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hr-navy);
}

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

.py-section { padding: var(--section-pad) 0; }

/* Utility */
.text-hr-navy  { color: var(--hr-navy)  !important; }
.text-hr-gold  { color: var(--hr-gold)  !important; }
.bg-section-alt { background: var(--hr-cream); }
.italic-gold   { color: var(--hr-gold); font-style: italic; }

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
.hr-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.hr-navbar.scrolled { box-shadow: var(--shadow-md); }

/* Transparent overlay on hero (home page only) */
.hr-navbar.nav-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.hr-navbar.nav-hero.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

/* Nav links: white over hero, navy once scrolled */
.hr-navbar.nav-hero:not(.scrolled) .nav-link,
.hr-navbar.nav-hero:not(.scrolled) .navbar-toggler {
  color: rgba(255,255,255,0.88) !important;
}
.hr-navbar.nav-hero:not(.scrolled) .nav-link:hover,
.hr-navbar.nav-hero:not(.scrolled) .nav-link.active {
  color: var(--hr-gold-light) !important;
}
.hr-navbar.nav-hero:not(.scrolled) .btn-hr-primary {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hr-navbar.nav-hero:not(.scrolled) .btn-hr-primary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}
/* Logo: invert to white over dark hero, normal once scrolled */
.hr-navbar.nav-hero:not(.scrolled) .brand-logo-img {
  filter: brightness(0) invert(1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-monogram {
  width: 38px; height: 38px;
  background: var(--hr-navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hr-navy);
  letter-spacing: 0.02em;
}
.brand-tagline-small {
  font-size: 0.65rem;
  color: var(--hr-gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hr-text) !important;
  padding: 0.45rem 0.9rem !important;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--hr-navy) !important; }
.nav-link.active { color: var(--hr-navy) !important; font-weight: 600; }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn-hr-primary {
  background: var(--hr-navy);
  color: var(--hr-white) !important;
  border: 2px solid var(--hr-navy);
  padding: 0.65rem 1.75rem;
}
.btn-hr-primary:hover {
  background: var(--hr-navy-mid);
  border-color: var(--hr-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,46,74,.28);
}

.btn-hr-gold {
  background: var(--hr-gold);
  color: var(--hr-white) !important;
  border: 2px solid var(--hr-gold);
  padding: 0.65rem 1.75rem;
}
.btn-hr-gold:hover {
  background: #b3911f;
  border-color: #b3911f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,165,44,.32);
}

.btn-hr-outline {
  background: transparent;
  color: var(--hr-navy) !important;
  border: 2px solid var(--hr-navy);
  padding: 0.65rem 1.75rem;
}
.btn-hr-outline:hover {
  background: var(--hr-navy);
  color: var(--hr-white) !important;
}

.btn-hr-outline-light {
  background: transparent;
  color: var(--hr-white) !important;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 0.65rem 1.75rem;
}
.btn-hr-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--hr-white);
}

.btn-hr-outline-gold {
  background: transparent;
  color: var(--hr-gold) !important;
  border: 2px solid var(--hr-gold);
  padding: 0.65rem 1.75rem;
}
.btn-hr-outline-gold:hover {
  background: var(--hr-gold);
  color: var(--hr-white) !important;
}

/* ------------------------------------------------------------
   HERO — HOME
   ------------------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(15,29,48,0.68) 0%, rgba(27,46,74,0.55) 60%, rgba(10,18,30,0.72) 100%),
    url('/static/images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hr-white);
  overflow: hidden;
  text-align: center;
}

.hero-content { position: relative; z-index: 2; padding-top: 5rem; width: 100%; }

.hero-eyebrow {
  display: inline-block;
  border: 1px solid rgba(201,165,44,0.6);
  color: var(--hr-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--hr-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-heading .italic-gold {
  color: var(--hr-gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  animation: bounce 2.2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* Animate in */
.animate-in { opacity: 0; transform: translateY(28px); animation: fadeUp 0.75s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ------------------------------------------------------------
   PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  padding: 8rem 0 4.5rem;
  position: relative;
  text-align: center;
  background:
    linear-gradient(rgba(15,29,48,0.78) 0%, rgba(27,46,74,0.72) 100%),
    url('https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--hr-white);
}
.page-hero-eyebrow {
  display: inline-block;
  border: 1px solid rgba(201,165,44,0.55);
  color: var(--hr-gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--hr-white);
  margin-bottom: 1rem;
}
.page-hero-title .italic-gold { color: var(--hr-gold); font-style: italic; }
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   SECTION HEADERS
   ------------------------------------------------------------ */
.section-eyebrow {
  display: inline-block;
  color: var(--hr-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1rem; height: 2px;
  background: var(--hr-gold);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--hr-navy);
}
.section-title .italic-gold { color: var(--hr-gold); font-style: italic; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--hr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   PHILOSOPHY / PILLARS
   ------------------------------------------------------------ */
.pillar-card {
  background: var(--hr-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E5E9F0;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.featured-pillar {
  background: var(--hr-navy);
  border-color: var(--hr-navy);
}
.featured-pillar h3, .featured-pillar p { color: var(--hr-white); }
.featured-pillar .pillar-icon { background: rgba(201,165,44,0.18); color: var(--hr-gold); }

.pillar-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition);
}
.pillar-icon--health  { background: #FEF3F2; color: #C0392B; }
.pillar-icon--wealth  { background: #EEF2F8; color: var(--hr-navy); }
.pillar-icon--purpose { background: var(--hr-gold-pale); color: var(--hr-gold); }
.pillar-card:hover .pillar-icon { transform: scale(1.1); }
.pillar-title { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.75rem; }

/* ------------------------------------------------------------
   ABOUT PREVIEW
   ------------------------------------------------------------ */
.about-image-wrap { position: relative; display: flex; justify-content: center; }
.about-image-placeholder {
  width: 100%; max-width: 460px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--hr-navy) 0%, var(--hr-navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: 1.5rem;
  background: var(--hr-gold);
  color: var(--hr-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-number { display: block; font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; line-height: 1; }
.about-badge-label  { font-size: 0.78rem; font-weight: 600; opacity: 0.92; letter-spacing: 0.03em; }
.about-headshot {
  width: 100%; max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
  display: block;
}

.value-list { list-style: none; padding: 0; }
.value-list li { margin-bottom: 0.65rem; font-size: 0.97rem; }

/* ------------------------------------------------------------
   DIVIDER LINE (gold, centered)
   ------------------------------------------------------------ */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--hr-gold);
  border-radius: 2px;
  margin: 1rem auto 2rem;
}

/* ------------------------------------------------------------
   EBOOK / SERVICE CARDS
   ------------------------------------------------------------ */
.ebook-card {
  background: var(--hr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E5E9F0;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.ebook-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ebook-cover {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--hr-navy-pale);
}
.ebook-cover img { width: 100%; height: 100%; object-fit: cover; }
.ebook-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--hr-navy) 0%, var(--hr-navy-mid) 100%);
  color: var(--hr-gold);
}
.ebook-cover--large { aspect-ratio: 4/3; }
.ebook-cover-placeholder--large { font-size: 5rem; }

.ebook-badge-free {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--hr-gold);
  color: var(--hr-navy);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.ebook-badge-free i { font-size: 0.7rem; }

.ebook-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ebook-title    { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--hr-navy); }
.ebook-subtitle { color: var(--hr-text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.ebook-desc     { font-size: 0.92rem; color: #4A5568; flex: 1; margin-bottom: 1rem; }
.ebook-footer   { display: flex; align-items: center; margin-top: auto; }

/* ------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--hr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E5E9F0;
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote-icon { color: var(--hr-gold); font-size: 1.75rem; margin-bottom: 1rem; opacity: 0.7; }
.testimonial-text  { font-family: var(--font-serif); font-size: 1.05rem; color: var(--hr-navy); font-style: italic; flex: 1; line-height: 1.7; }
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid #EEF2F8;
}
.testimonial-photo {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--hr-gold-pale);
}
.testimonial-photo-placeholder {
  width: 46px; height: 46px; border-radius: 50%; background: var(--hr-navy-pale);
  display: flex; align-items: center; justify-content: center; color: var(--hr-navy); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--hr-navy); }
.testimonial-role { font-size: 0.82rem; color: var(--hr-text-muted); }

/* ------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------ */
.cta-banner-section {
  background: linear-gradient(135deg, var(--hr-navy-dark) 0%, var(--hr-navy) 100%);
  padding: 5.5rem 0;
  color: var(--hr-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A52C' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='40'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-banner-eyebrow {
  display: inline-block;
  border: 1px solid rgba(201,165,44,0.5);
  color: var(--hr-gold-light);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: var(--radius-pill);
  margin-bottom: 1.25rem; position: relative;
}
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: var(--hr-white); margin-bottom: 0.85rem; position: relative;
}
.cta-banner-title .italic-gold { color: var(--hr-gold); font-style: italic; }
.cta-banner-sub { font-size: 1.1rem; color: rgba(255,255,255,.82); position: relative; max-width: 520px; margin: 0 auto; }

/* ------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------ */
.stat-card {
  background: var(--hr-white); border-radius: var(--radius-md);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid #E5E9F0;
}
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--hr-gold); line-height: 1; }
.stat-label  { font-size: 0.78rem; color: var(--hr-text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

.mission-visual {
  position: relative; width: 360px; height: 360px; margin: 2rem auto;
}
.mission-ring { position: absolute; inset: 0; border-radius: 50%; }
.mission-ring--outer {
  background: linear-gradient(135deg, var(--hr-navy-pale) 0%, #DDE5F4 100%);
  display: flex; align-items: center; justify-content: center;
}
.mission-ring--inner {
  inset: 40px;
  background: var(--hr-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.mission-center { text-align: center; color: var(--hr-navy); font-family: var(--font-serif); }
.mission-center i   { font-size: 2.75rem; display: block; margin-bottom: 0.5rem; color: var(--hr-gold); }
.mission-center span { font-size: 0.88rem; font-weight: 600; }
.mission-orbit { position: absolute; }
.mission-orbit--1 { top: -20px; left: 50%; transform: translateX(-50%); }
.mission-orbit--2 { bottom: 20px; left: -20px; }
.mission-orbit--3 { bottom: 20px; right: -20px; }
.mission-orb {
  background: var(--hr-white); border: 2px solid var(--hr-gold); border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--hr-navy); font-weight: 600; box-shadow: var(--shadow-sm);
}
.mission-orb i { font-size: 1.3rem; margin-bottom: 0.2rem; color: var(--hr-gold); }

.value-card {
  background: var(--hr-white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0; height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--hr-gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-gold); font-size: 1.4rem; margin-bottom: 1rem;
}

/* Team */
.team-card {
  background: var(--hr-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0;
  text-align: center; transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo        { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--hr-navy) 0%, var(--hr-navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--hr-gold);
}
.team-info  { padding: 1.5rem; }
.team-name  { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.25rem; color: var(--hr-navy); }
.team-title { color: var(--hr-gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-bio   { font-size: 0.9rem; color: #4A5568; }

/* ------------------------------------------------------------
   SCHEDULE PAGE
   ------------------------------------------------------------ */
.expect-step { text-align: center; padding: 2rem 1rem; position: relative; }
.expect-step-num {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 700;
  color: var(--hr-navy-pale); line-height: 1; margin-bottom: 0.5rem;
}
.expect-icon {
  width: 64px; height: 64px;
  background: var(--hr-navy); color: var(--hr-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1rem;
}
.expect-step h5 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--hr-navy); }

.calendly-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid #E5E9F0;
  min-height: 700px; background: var(--hr-white);
}
#calendly-widget { min-height: 700px; }
.calendly-placeholder {
  min-height: 500px; display: flex; align-items: center; justify-content: center;
}
.calendly-placeholder-inner { text-align: center; padding: 3rem; }

/* Accordion */
.hr-accordion .accordion-item {
  border: 1px solid #E5E9F0; border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem; overflow: hidden;
}
.hr-accordion .accordion-button {
  font-family: var(--font-serif); font-size: 1.08rem;
  color: var(--hr-navy); background: var(--hr-white); font-weight: 500;
}
.hr-accordion .accordion-button:not(.collapsed) {
  color: var(--hr-navy); background: var(--hr-gold-pale); box-shadow: none;
}
.hr-accordion .accordion-button:focus { box-shadow: none; }
.hr-accordion .accordion-button::after { filter: none; }

/* ------------------------------------------------------------
   CONNECT PAGE
   ------------------------------------------------------------ */
.social-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--hr-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0;
  color: var(--hr-text); text-decoration: none;
  transition: all var(--transition);
}
.social-card:not(.social-card--placeholder):hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--hr-text);
}
.social-card--placeholder { cursor: default; opacity: 0.65; }

.social-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.social-card--facebook  .social-card-icon { background: #E7F0FA; color: #1877F2; }
.social-card--instagram .social-card-icon { background: #FCE4EC; color: #E1306C; }
.social-card--youtube   .social-card-icon { background: #FFEBEE; color: #FF0000; }
.social-card--linkedin  .social-card-icon { background: #E1F0FA; color: #0077B5; }
.social-card--twitter   .social-card-icon { background: #F0F4F8; color: #14171A; }
.social-card--tiktok    .social-card-icon { background: #F0F0F0; color: #000000; }
.social-card--podcast   .social-card-icon { background: var(--hr-gold-pale); color: var(--hr-gold); }
.social-card--other     .social-card-icon { background: var(--hr-navy-pale); color: var(--hr-navy); }

.social-card-info { flex: 1; }
.social-card-platform { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 0.2rem; color: var(--hr-navy); }
.social-card-label    { font-size: 0.9rem; color: var(--hr-text-muted); margin: 0; }
.social-card-arrow    { color: var(--hr-text-muted); transition: color var(--transition); }
.social-card:hover .social-card-arrow { color: var(--hr-gold); }

/* Newsletter */
.newsletter-input-group {
  max-width: 500px; margin: 0 auto;
  border-radius: var(--radius-md); overflow: hidden;
}
.newsletter-input-group .form-control {
  border: 2px solid #D1D9E6; border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  padding: 0.75rem 1rem; font-size: 0.95rem;
}
.newsletter-input-group .form-control:focus { box-shadow: none; border-color: var(--hr-navy); }
.newsletter-input-group .btn { border-radius: 0 var(--radius-md) var(--radius-md) 0 !important; }
.newsletter-note { font-size: 0.82rem; color: var(--hr-text-muted); }

/* Guide Request / Gated Download */
.guide-request-card {
  background: var(--hr-white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0;
}
.guide-request-card .form-label { font-weight: 600; color: var(--hr-navy); margin-bottom: 0.4rem; }
.guide-request-card .form-control {
  border: 2px solid #D1D9E6; border-radius: var(--radius-md) !important;
  padding: 0.75rem 1rem; font-size: 0.95rem;
}
.guide-request-card .form-control:focus { box-shadow: none; border-color: var(--hr-navy); }
.form-error { font-size: 0.82rem; color: #C0392B; margin-top: 0.35rem; }

.guides-download-list { max-width: 640px; margin: 0 auto; }
.guide-download-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  background: var(--hr-white); border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0;
  margin-bottom: 1rem;
}
.guide-download-item-title { font-family: var(--font-serif); font-size: 1.15rem; margin: 0; color: var(--hr-navy); }

/* Contact Cards */
.contact-card {
  background: var(--hr-white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid #E5E9F0; height: 100%;
}
.contact-card-icon {
  width: 72px; height: 72px;
  background: var(--hr-gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--hr-gold); margin: 0 auto 1.25rem;
}

/* Feature Tiles */
.feature-tile { padding: 2rem 1rem; text-align: center; }
.feature-tile-icon {
  width: 64px; height: 64px;
  background: var(--hr-navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--hr-gold); margin: 0 auto 1rem;
}

/* ------------------------------------------------------------
   COMPLIANCE SUB-FOOTER
   ------------------------------------------------------------ */
.hr-subfooter {
  background: var(--hr-navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0.9rem 0;
}
.hr-subfooter-text {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.hr-footer {
  background: var(--hr-navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4.5rem 0 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-brand .brand-monogram { background: rgba(255,255,255,.08); }
.footer-brand .brand-name     { color: var(--hr-white); font-family: var(--font-serif); font-size: 1.1rem; }
.footer-tagline  { font-size: 0.9rem; color: rgba(255,255,255,.5); max-width: 260px; font-style: italic; }
.footer-social   { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--hr-gold); color: var(--hr-white); }
.footer-heading {
  color: var(--hr-white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--hr-gold); }
.footer-contact { font-size: 0.9rem; color: rgba(255,255,255,.6); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--hr-gold); }
.footer-divider  { border-color: rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }
.footer-copy     { font-size: 0.82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-gold-accent { color: var(--hr-gold); }

/* ------------------------------------------------------------
   EMPTY STATE
   ------------------------------------------------------------ */
.empty-state { padding: 4rem 2rem; text-align: center; }
.empty-state-icon { margin-bottom: 1.5rem; color: var(--hr-gold); }

/* ------------------------------------------------------------
   SCROLL FADE-IN
   ------------------------------------------------------------ */
.fade-watch {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-watch.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 992px) {
  :root { --section-pad: 4rem; }
  .page-hero { padding: 7rem 0 3.5rem; }
  .mission-visual { width: 280px; height: 280px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 3rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .about-badge { right: 0.5rem; bottom: -1.25rem; }
  .mission-visual { width: 240px; height: 240px; margin: 3rem auto; }
}

/* ------------------------------------------------------------
   SERVICE DETAIL — CONSIDERATIONS LIST
   ------------------------------------------------------------ */
.service-considerations { margin: 0; padding: 0; }
.service-consideration-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,.07);
}
.service-consideration-item:last-child { border-bottom: none; }
.consideration-icon {
  flex-shrink: 0; color: var(--hr-gold); font-size: 1.1rem; margin-top: 0.1rem;
}
.service-consideration-item span:last-child {
  font-size: 0.97rem; line-height: 1.65; color: var(--hr-navy);
}

/* ------------------------------------------------------------
   FEATURE TILE TALL VARIANT
   ------------------------------------------------------------ */
.feature-tile--tall { padding: 2.25rem; }

/* ------------------------------------------------------------
   HONEYPOT FIELD (bot trap on gated-download forms)
   Hidden off-screen rather than display:none/visibility:hidden so that
   accessibility tools and simple bots that skip non-rendered fields still
   "see" it; real visitors never encounter it.
   ------------------------------------------------------------ */
.hp-field-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
