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

:root {
  --cream:      #F5F1E3;
  --dark-brown: #4A3728;
  --slate-blue: #2E4A62;
  --dark-teal:  #2F524F;
  --charcoal:   #3E3B36;
  --mid-brown:  #645836;
  --olive-gold: #897537;
  --warm-gold:  #AF9237;
  --wheat-gold: #D4AF37;

  --text:       #3E3B36;
  --heading:    #4A3728;

  --font: 'Raleway', sans-serif;
  --max-width: 1200px;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--olive-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  transition: opacity 0.4s ease;
}

.logo img { height: 82px; width: auto; }

.nav-toggle {
  position: absolute;
  right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: opacity 0.2s;
}

.nav-toggle:hover span { opacity: 0.7; }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  right: calc(2rem + 6px);
  flex-direction: column;
  min-width: 190px;
  background: var(--dark-brown);
  padding: 0.5rem 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
  overflow: hidden;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  transition: background 0.2s;
}

.nav-mobile a:hover { background: rgba(245, 241, 227, 0.09); }

.nav-linkedin { display: flex; align-items: center; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-image.webp') center center / cover no-repeat;
  background-color: var(--dark-teal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 74, 98, 0.45);
}

.hero-text-box {
  position: relative;
  z-index: 1;
  background: rgba(62, 59, 54, 0.55);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
  padding: 2.25rem 3rem;
  max-width: 700px;
  margin: 0 2rem;
  text-align: center;
}

.hero-text-box h1 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

/* ── Services Intro ── */
.services-intro {
  background: var(--wheat-gold);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
}

.services-intro-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 2.5rem;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.services-intro-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.services-intro-box p {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  text-wrap: balance;
}

/* ── Services Icons ── */
.services-icons {
  background: var(--wheat-gold);
  padding: 0.5rem 0 0.75rem;
}

.icons-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 160px;
}

.icon-wrap {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg { width: 100%; height: 100%; }

.icon-wrap i {
  font-size: 80px;
  line-height: 1;
}

.icon-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-brown);
  text-align: center;
  line-height: 1.4;
}

/* ── About ── */
.about {
  background: var(--wheat-gold);
  padding: 3rem 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2.5rem;
  align-items: stretch;
}

.about-text {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--warm-gold);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.job-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 1.25rem !important;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 1.15rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.about-text ul {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.about-text li {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
}

.about-photo {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 500px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Bio Pull Quote ── */
.bio-pullquote {
  border-left: 3px solid var(--warm-gold);
  padding: 0.75rem 1.25rem;
  margin: 0 0 1.15rem;
  background: rgba(175, 146, 55, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bio-pullquote p {
  font-style: italic;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.6rem !important;
}

.bio-pullquote .cite-block { gap: 0.2rem; }

.bio-pullquote .cite-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: 0.02em;
}

.bio-pullquote .cite-title {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 1;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--dark-teal);
  padding: 3rem 0;
}

.slider {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.slide { display: none; animation: fadeIn 0.5s ease; }
.slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide blockquote p {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cite-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cite-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wheat-gold);
  letter-spacing: 0.04em;
}

.cite-title {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.75;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--warm-gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.dot.active { background: var(--warm-gold); }

/* ── Testimonial Quote Mark ── */
.testimonial-quote-mark {
  text-align: center;
  margin: 0 auto 1.75rem;
  line-height: 1;
}

.testimonial-quote-mark i {
  font-size: 52px;
  color: var(--cream);
  opacity: 0.85;
}

/* ── Publications ── */
.publications {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.section-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--warm-gold);
  margin: 0.5rem auto 2.75rem;
}

.pub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.pub-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(62, 59, 54, 0.12);
  transition: opacity 0.2s;
}

.pub-item:first-child a {
  border-top: 1px solid rgba(62, 59, 54, 0.12);
}

.pub-item a:hover { opacity: 0.65; }

.pub-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.5;
  max-width: 580px;
}

.pub-source {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gold);
}

/* ── Footer / Contact ── */
.site-footer {
  background: var(--dark-brown);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--warm-gold);
  margin: 0.5rem auto 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-links a {
  color: var(--wheat-gold);
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.75; }

.contact-divider { color: var(--warm-gold); }

.footer-copy {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.5;
  border-top: 1px solid rgba(245, 241, 227, 0.12);
  padding-top: 1.5rem;
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-text { padding: 2.5rem; order: 2; }
  .about-photo { min-height: 380px; order: 1; }
  .icons-row { gap: 2rem; }
}

@media (max-width: 768px) {
  .header-inner { height: 88px; }
  .logo img { height: 64px; }

  .hero-text-box { padding: 1.75rem 1.75rem; }
  .services-intro-box { padding: 1.25rem 1.25rem; }

  .footer-links { flex-direction: column; gap: 0.5rem; }
  .footer-links .contact-divider { display: none; }
}

@media (max-width: 520px) {
  .icons-row { gap: 1.5rem; }
  .icon-item { width: 120px; }
}
