/* =========================================
   Hedges Consulting — stylesheet
   ========================================= */

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

:root {
  --navy:    #1B3A52;
  --teal:    #2A6B84;
  --gold:    #B8924A;
  --cream:   #F9F5EF;
  --white:   #FFFFFF;
  --text:    #1C2B39;
  --muted:   #5A7082;
  --border:  #DDD5C8;
  --card-bg: #FFFFFF;
  --radius:  10px;
  --shadow:  0 2px 16px rgba(27,58,82,.08);
  --transition: 0.2s ease;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.25;
}

em { font-style: italic; }

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

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

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 58, 82, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

nav a:hover { color: var(--white); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(150deg, #1B3A52 0%, #2A6B84 60%, #1E4D63 100%);
  color: var(--white);
  padding: 100px 0 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,146,74,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(42,107,132,.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-bottom: 72px;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,146,74,.2);
  border: 1px solid rgba(184,146,74,.4);
  color: #e4c07a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  line-height: 0;
  margin-top: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #a57d3d;
  border-color: #a57d3d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,146,74,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ---- Section labels ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---- About ---- */
.about {
  background: var(--cream);
  padding: 96px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 208px;
  gap: 64px;
  align-items: center;
}

.about h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 36px;
}

.about-body p {
  font-size: 1.05rem;
  color: #3a5264;
  margin-bottom: 22px;
  line-height: 1.8;
}

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

.about-photo {
  width: 208px;
  min-width: 208px;
  max-width: 208px;
}

.about-photo img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(27,58,82,.18);
}

/* ---- Experience ---- */
.experience {
  background: var(--navy);
  padding: 96px 0;
}

.experience .section-label { color: #e4c07a; }

.experience h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,146,74,.35);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Inter', system-ui, sans-serif;
}

.card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ---- Approach / Stats ---- */
.approach {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.approach-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.approach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---- Contact ---- */
.contact {
  background: linear-gradient(135deg, #1B3A52 0%, #2A6B84 100%);
  padding: 96px 0;
  text-align: center;
  color: var(--white);
}

.contact-inner .section-label { color: #e4c07a; }

.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact p {
  max-width: 500px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- Footer ---- */
footer {
  background: #12293A;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  nav { gap: 20px; }

  .about, .experience, .approach, .contact { padding: 64px 0; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    order: -1;
  }

  .about-photo img {
    width: 120px;
    height: 145px;
    margin: 0 auto;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 480px) {
  nav { display: none; }

  .hero-inner { padding-bottom: 48px; }

  .approach-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
