/* ============================================
   HAY HILL ADVISORS — Production Stylesheet
   Brand: Maroon + Gold + Cream
   Fonts: Playfair Display + Inter
   ============================================ */

/* ── CSS Variables ── */
:root {
  --maroon: #6B1D2A;
  --maroon-dark: #4A1420;
  --maroon-rgb: 107, 29, 42;
  --gold: #C9A961;
  --gold-light: #D4BA7A;
  --gold-rgb: 201, 169, 97;
  --charcoal: #2C2C2C;
  --charcoal-light: #3A3A3A;
  --cream: #F9F7F5;
  --cream-warm: #F5F0EB;
  --white: #FFFFFF;
  --text-body: #4A4A4A;
  --text-light: #7A7A7A;
  --border-subtle: rgba(0,0,0,0.06);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1140px;
  --section-pad: 112px;
  --cta-pad: 88px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-body); }

.text-center { text-align: center; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Gold Accent Line ── */
.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
  border: none;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-text .gold { color: var(--gold); }
.logo-img {
  height: 80px;
  width: auto;
}
.footer-logo-img {
  height: 165px;
  width: auto;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 1px;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
}
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(var(--gold-rgb), 0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-full { width: 100%; }
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section--dark p { color: rgba(249,247,245,0.7); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--maroon {
  background: var(--maroon);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--maroon p { color: rgba(249,247,245,0.8); }
.section--maroon h2, .section--maroon h3 { color: var(--cream); }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header .gold-rule {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
  margin-top: 3.5rem;
}
.text-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HERO — Home (full height)
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* header offset */
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Default maroon overlay */
.hero__overlay--maroon {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(var(--maroon-rgb),0.85) 0%, rgba(44,44,44,0.95) 70%),
    linear-gradient(135deg, var(--maroon-dark) 0%, var(--charcoal) 100%);
}
.hero__overlay--charcoal {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--maroon-dark) 100%);
}
.hero__overlay--dark-blend {
  background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--charcoal) 50%, var(--maroon-dark) 100%);
}
.hero__overlay--warm {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--charcoal-light) 100%);
}
.hero__overlay--deep {
  background: radial-gradient(ellipse at 40% 40%, rgba(var(--maroon-rgb),0.95) 0%, rgba(74,20,32,1) 70%);
}

/* Subtle texture overlay */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.hero__rule {
  margin-bottom: 2rem;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  color: rgba(249,247,245,0.75);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── Interior Hero (shorter, for inner pages) ── */
.hero--interior {
  min-height: auto;
  padding: 8rem 0 6rem;
  padding-top: calc(8rem + 60px); /* + header */
}
.hero--interior h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero--interior p {
  color: rgba(249,247,245,0.75);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
}
.hero--interior .hero__content {
  max-width: 800px;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--maroon));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.card:hover {
  border-color: rgba(var(--gold-rgb), 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.card:hover::before { opacity: 1; }

.card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}
.card h3 {
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  font-size: 1.25rem;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Card with icon */
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
  padding: 6rem 0;
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}
.mission__glow {
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mission .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.mission h2 { color: var(--cream); margin-bottom: 0.75rem; }
.mission .gold-rule { margin: 0 auto 2rem; }
.mission p {
  color: rgba(249,247,245,0.8);
  font-size: 1.2rem;
  line-height: 1.9;
}

/* ============================================
   CTA CARDS (Pub/Events on Home)
   ============================================ */
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.cta-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.cta-card .btn { margin-top: auto; }
.cta-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.cta-card .card__icon {
  margin: 0 auto 1.5rem;
}
.cta-card h3 { margin-bottom: 0.75rem; }
.cta-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ============================================
   CONTACT CTA BAND
   ============================================ */
.contact-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--cream);
}
.contact-cta h2 { margin-bottom: 0.5rem; }
.contact-cta .gold-rule { margin: 0 auto 1.5rem; }
.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* ============================================
   SERVICES PAGE — Phases
   ============================================ */
.service-phase {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-phase:last-of-type { border-bottom: none; }
.phase-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.phase-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-item {
  background: var(--cream);
  border-radius: 3px;
  padding: 2.25rem 2rem;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}
.service-item:hover {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.service-item h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.service-item p { font-size: 0.9rem; line-height: 1.7; }

/* Alt-phase (cream bg) */
.phase--alt {
  background: var(--cream);
}
.phase--alt .service-item {
  background: var(--white);
  border-left-color: var(--maroon);
}

/* Services CTA */
.services-cta {
  padding: 5rem 0;
  background: var(--charcoal);
  text-align: center;
}
.services-cta h2 { color: var(--cream); margin-bottom: 0.5rem; }
.services-cta .gold-rule { margin: 0 auto 1.5rem; }
.services-cta p { color: rgba(249,247,245,0.6); font-size: 1.05rem; margin-bottom: 2rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-origin {
  font-size: 1.1rem;
  color: rgba(249,247,245,0.85);
  line-height: 1.9;
  max-width: 800px;
  margin-top: 2rem;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-mini-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  transition: all 0.4s ease;
  position: relative;
}
.service-mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--maroon));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.service-mini-card:hover {
  border-color: rgba(var(--gold-rgb), 0.3);
  box-shadow: 0 6px 30px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.service-mini-card:hover::before { opacity: 1; }
.service-mini-card .card__icon { margin-bottom: 1rem; }
.service-mini-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.service-mini-card p { font-size: 0.875rem; line-height: 1.6; }

.about-services-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.about-services-cta p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   PEOPLE PAGE
   ============================================ */
.bio-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.bio-photo {
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.bio-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--maroon));
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-photo .initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--maroon);
  opacity: 0.3;
}
.bio-photo .photo-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bio-content h3 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.bio-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 2rem;
  display: block;
}
.bio-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.bio-content p:last-child { margin-bottom: 0; }

/* ============================================
   PUBLICATIONS PAGE
   ============================================ */
.pub-section-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pub-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(var(--gold-rgb),0.4), transparent);
}
.coming-soon-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--maroon));
  opacity: 0.5;
  border-radius: 3px 3px 0 0;
}
.featured-pub {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.featured-pub__cover {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.featured-pub__content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.featured-pub__subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.featured-pub__authors {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 1.5rem;
}
.featured-pub__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.featured-pub__audience {
  font-style: italic;
  color: var(--text-light);
}
.featured-pub__content .btn { margin-top: 0.5rem; }
@media (max-width: 768px) {
  .featured-pub {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .featured-pub__cover { max-width: 220px; margin: 0 auto; }
}
.coming-soon-card h3 { color: var(--charcoal); margin-bottom: 0.75rem; }
.coming-soon-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Contact sidebar */
.contact-sidebar {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
}
.contact-sidebar h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-info-value a {
  color: var(--maroon);
  transition: color var(--transition);
}
.contact-info-value a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-logo .gold { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(249,247,245,0.4);
  line-height: 1.7;
  max-width: 500px;
}
.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(249,247,245,0.6);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(249,247,245,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: rgba(249,247,245,0.1);
  margin-bottom: 1.5rem;
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(249,247,245,0.3);
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like, CSS-only)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success h3 {
  color: var(--maroon);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content { max-width: 600px; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-container { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .bio-photo { width: 220px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.1rem; }
  .menu-toggle { display: block; }

  .hero { min-height: 75vh; }
  .hero--interior { padding: 6rem 0 4rem; padding-top: calc(6rem + 60px); }

  .cards-grid { grid-template-columns: 1fr; }
  .cta-cards { grid-template-columns: 1fr; }

  .bio-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .bio-photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .form-row { grid-template-columns: 1fr; }

  .service-items { grid-template-columns: 1fr; }
  .service-mini-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .menu-toggle { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
}
