.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.25rem, 5vw, 5rem);
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(10, 21, 38, 0.94), rgba(10, 21, 38, 0));
}

.brand-mark,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  font-weight: 600;
}

.brand-mark span {
  max-width: 24ch;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.brand-mark img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links a {
  color: rgba(247, 244, 238, 0.82);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-section {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 9rem clamp(1.5rem, 7vw, 7.5rem) 6rem;
  overflow: hidden;
  background-position: center 53%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 38, 0.97) 0%, rgba(10, 21, 38, 0.86) 38%, rgba(10, 21, 38, 0.34) 72%, rgba(10, 21, 38, 0.18) 100%),
    linear-gradient(to top, rgba(10, 21, 38, 0.60), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
  max-width: 730px;
  color: var(--cream);
}

.hero-content p {
  max-width: 530px;
  color: rgba(247, 244, 238, 0.82);
}

.hero-content h1 {
  display: grid;
  gap: 0.25rem;
}

.hero-content h1 em {
  color: rgba(247, 244, 238, 0.60);
  font-size: 0.48em;
  font-weight: 600;
  line-height: 1.2;
}

.hero-rule {
  width: 3.5rem;
  height: 1px;
  margin: 0.45rem 0 0.2rem;
  background: rgba(247, 244, 238, 0.5);
}

.hero-signature {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2rem;
  z-index: 1;
  color: rgba(247, 244, 238, 0.70);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-section,
.reviews-section,
.philosophy-section,
.founder-section,
.process-section,
.contact-band {
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7.5rem);
  scroll-margin-top: 6rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section-heading p:last-child {
  max-width: 680px;
}

.compact {
  margin-bottom: 2rem;
}

.showcase-section {
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  background: var(--surface);
  color: var(--charcoal);
}

.showcase-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.showcase-copy {
  display: grid;
  gap: 1rem;
}

.showcase-copy p {
  max-width: 760px;
  color: var(--muted);
}

.process-section {
  background: var(--cream);
}

.reviews-section {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--paper);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.reviews-copy {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.reviews-copy > p:last-child {
  max-width: 650px;
}

.philosophy-section {
  background: var(--charcoal);
  color: var(--cream);
}

.philosophy-section .eyebrow {
  color: var(--brass-light);
}

.philosophy-section .section-heading p:not(.eyebrow) {
  color: rgba(247, 244, 238, 0.72);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
}

.founder-section {
  background: var(--paper);
  color: var(--charcoal);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 7vw, 7.5rem);
  background: var(--charcoal);
}

.site-footer img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  border-radius: 4px;
}

.site-footer p {
  color: rgba(247, 244, 238, 0.72);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 6.5rem;
    background-position: 54% center;
  }

  .hero-shade {
    background:
      linear-gradient(to top, rgba(10, 21, 38, 0.97) 0%, rgba(10, 21, 38, 0.82) 48%, rgba(10, 21, 38, 0.26) 100%),
      linear-gradient(90deg, rgba(10, 21, 38, 0.45), transparent);
  }

  .hero-signature {
    right: auto;
    left: 1.5rem;
    bottom: 2rem;
  }

  .showcase-section {
    gap: 3rem;
  }

  .showcase-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .philosophy-grid,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
