:root {
  --forest: #1b3a2f;
  --forest-deep: #10251e;
  --moss: #3f6b55;
  --sage: #8fa894;
  --mist: #eef3ef;
  --paper: #f7f8f5;
  --ink: #152019;
  --ink-soft: #4a5a52;
  --line: rgba(21, 32, 25, 0.12);
  --gold: #b08d4a;
  --shadow: 0 24px 60px rgba(16, 37, 30, 0.14);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

a {
  color: var(--moss);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(16, 37, 30, 0.55), transparent);
}

.site-header.is-solid {
  position: sticky;
  background: rgba(247, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup img {
  width: min(280px, 46vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-solid .brand-lockup img {
  width: min(240px, 44vw);
  filter: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-header.is-solid .nav-toggle {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header.is-solid .site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
}

.site-header.is-solid .site-nav a:hover,
.site-header.is-solid .site-nav a[aria-current="page"] {
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.03);
  animation: slow-zoom 18s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 37, 30, 0.78) 0%, rgba(16, 37, 30, 0.42) 42%, rgba(16, 37, 30, 0.12) 72%),
    linear-gradient(180deg, rgba(16, 37, 30, 0.08) 0%, rgba(16, 37, 30, 0.55) 70%, rgba(16, 37, 30, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 5.5rem 1.35rem 4.25rem;
  animation: rise 1s ease both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero .lede {
  margin: 0 0 1.8rem;
  max-width: 34rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
}

.btn-primary:hover {
  background: #c49d58;
  color: var(--forest-deep);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.35rem;
}

.section-narrow {
  max-width: 760px;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2,
.page-hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--forest-deep);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p,
.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.band {
  background: var(--mist);
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

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

.quote {
  margin: 2.5rem 0 0;
  padding: 0;
  border: 0;
  max-width: 42rem;
}

.quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--forest-deep);
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid li {
  list-style: none;
  margin: 0;
  background: white;
  padding: 1.2rem 1.25rem;
  font-weight: 650;
  color: var(--forest-deep);
}

.service-grid {
  padding: 0;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding-top: 1rem;
  border-top: 2px solid var(--forest);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--forest-deep);
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.people-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.people-grid {
  grid-template-columns: repeat(2, 1fr);
}

.person {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.25rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.person:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.person img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
}

.person h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest-deep);
}

.person .role {
  margin: 0 0 0.75rem;
  color: var(--moss);
  font-weight: 700;
  font-size: 0.95rem;
}

.person p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.4;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7.5rem 1.35rem 2rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.bio-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.client-list,
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.client-list {
  grid-template-columns: repeat(3, 1fr);
}

.client-list li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.95rem 1.05rem;
  font-weight: 650;
  color: var(--forest-deep);
}

.bullet-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--moss);
}

.contact-band {
  background: var(--forest-deep);
  color: white;
}

.contact-band .section-head h2 {
  color: white;
}

.contact-band .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

.site-footer {
  background: var(--paper);
  color: var(--ink-soft);
  padding: 2rem 1.35rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand img {
  width: min(240px, 68vw);
  height: auto;
  display: block;
}

.footer-meta {
  display: grid;
  gap: 0.25rem;
  text-align: right;
  color: var(--ink-soft);
  font-weight: 600;
}

.footer-meta p {
  margin: 0;
}

.footer-inner a {
  color: var(--moss);
}

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

@keyframes slow-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  .service-grid,
  .gallery-grid,
  .client-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .people-grid,
  .bio-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .person {
    grid-template-columns: 140px 1fr;
  }

  .person img {
    width: 140px;
    height: 170px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-top: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .service-grid,
  .gallery-grid,
  .client-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .brand-lockup img {
    width: min(200px, 58vw);
  }

  .site-header.is-solid .brand-lockup img {
    width: min(180px, 55vw);
  }

  .hero-inner {
    padding: 4rem 1.25rem 3.25rem;
  }

  .footer-meta {
    text-align: left;
  }
}
