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

:root {
  --forest-deep:   #1b3328;
  --forest-mid:    #2d5a3d;
  --forest-accent: #3d7a52;
  --forest-light:  #6aaa7e;
  --forest-pale:   #c8dece;
  --forest-wash:   #f2f7f4;
  --cream:         #faf9f6;
  --ink:           #1a1a18;
  --ink-muted:     #4a4a46;
  --ink-soft:      #8a8a84;
  --border:        rgba(45, 90, 61, 0.15);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--forest-accent); }
.nav-links a.active { color: var(--forest-deep); border-bottom: 1px solid var(--forest-accent); padding-bottom: 2px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 5vw 6rem;
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 51, 40, 0.60) 0%,
    rgba(27, 51, 40, 0.52) 40%,
    rgba(27, 51, 40, 0.85) 100%
  );
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-pale);
  margin-bottom: 1.25rem;
  position: relative;
  white-space: normal;
  overflow: visible;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.01em;
  position: relative;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1.5rem;
  max-width: 38rem;
  position: relative;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 2.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--forest-accent);
  border: 1px solid var(--forest-accent);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
}

.hero-cta:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.9);
  padding: calc(0.9rem - 1px) calc(2.5rem - 1px);
  color: var(--cream);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* ── SECTIONS ── */
section {
  padding: 5rem 5vw;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest-deep);
  max-width: 24ch;
}

.section-title em { font-style: italic; }

.divider {
  width: 3rem;
  height: 1px;
  background: var(--forest-light);
  margin: 1.75rem 0;
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.about-text-col {
  padding: 5rem 5vw;
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink-muted);
  max-width: 65ch;
}

.about-body p + p { margin-top: 1.25rem; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.highlight-item {
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--forest-light);
  background: var(--forest-wash);
}

.highlight-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-accent);
  margin-bottom: 0.2rem;
}

.highlight-value {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.4;
}

/* ── HEADSHOT ── */
.about-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

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

/* ── SERVICES ── */
#services {
  background: var(--forest-deep);
}

#services .section-label { color: var(--forest-pale); }
#services .section-title { color: var(--cream); }
#services .divider { background: var(--forest-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200, 222, 206, 0.2);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s, background 0.25s;
}

.service-card:hover {
  border-color: rgba(200, 222, 206, 0.45);
  background: rgba(255,255,255,0.07);
}

.service-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--forest-pale);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,222,206,0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ── WHO I WORK WITH (inside Services) ── */
.who-band {
  margin-top: 4rem;
}

.who-rule {
  border: none;
  border-top: 1px solid rgba(200, 222, 206, 0.2);
  margin-bottom: 2.5rem;
}

.who-band-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-pale);
  margin-bottom: 1.5rem;
}

.who-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.who-col-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.who-col-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── EXPERIENCE ── */
#experience {
  background: var(--forest-wash);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  margin-top: 3rem;
  align-items: start;
}

.exp-intro {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.85;
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.company-row:first-child { border-top: 1px solid var(--border); }

.company-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
}

.company-role {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: #3a3a3a;
  line-height: 1.7;
  flex: 1;
}

.testimonial-attribution {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.testimonial-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

/* ── CONTACT ── */
#contact {
  background: var(--cream);
}

.contact-single {
  max-width: 540px;
  margin-top: 3rem;
}

.contact-intro {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 3rem;
}

#contact .section-label {
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--forest-wash);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-accent);
}

.form-submit {
  padding: 0.9rem 2rem;
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--forest-accent); }

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item a {
  color: var(--forest-accent);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-item a:hover {
  color: var(--forest-deep);
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-accent);
  margin-bottom: 0.2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--forest-deep);
  color: var(--cream);
}

.footer-bottom {
  padding: 1.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer-links-row {
  display: flex;
  gap: 1.5rem;
}

.footer-links-row a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links-row a:hover { color: var(--forest-pale); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--forest-deep);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.nav-drawer a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-drawer a:hover { color: var(--forest-accent); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  #about, .exp-grid, .testimonials-grid, .about-highlights {
    grid-template-columns: 1fr;
  }

  .who-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #about { padding: 0; }
  .about-photo-col { min-height: 520px; position: relative; }
  .about-text-col { padding: 4rem 5vw; }

  /* #18: hero tagline legibility on mobile */
  .hero-eyebrow {
    font-size: 0.85rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }

  .company-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
