:root {
  --ink: #151515;
  --soft-ink: #3c3c3c;
  --muted: #70737a;
  --paper: #ffffff;
  --stone: #f5f6f3;
  --line: #dedfd8;
  --charcoal: #070707;
  --gold: #c79728;
  --gold-dark: #8b6718;
  --rose: #f3b4a6;
  --red: #b8332f;
  --teal: #2f5d62;
  --shadow: 0 18px 45px rgba(7, 7, 7, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(7, 7, 7, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.88rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: currentColor;
  opacity: 0.82;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--teal));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 108px 0 60px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid rgba(21, 21, 21, 0.32);
}

.snapshot {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.snapshot article {
  min-height: 170px;
  padding: 30px 26px;
  border-left: 1px solid var(--line);
}

.snapshot article:last-child {
  border-right: 1px solid var(--line);
}

.snapshot span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.snapshot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
}

.split-layout.reverse {
  grid-template-columns: 1fr 0.92fr;
}

.section-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker) {
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--stone);
}

.image-frame img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
}

.image-frame img.about-photo {
  height: min(680px, 78vh);
  object-fit: contain;
  background: #f7f5ef;
}

.vision-band {
  color: var(--ink);
  background: var(--paper);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.vision-band p:not(.section-kicker) {
  color: var(--soft-ink);
}

.mission-list {
  padding: 30px;
  color: var(--paper);
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.mission-list ul,
.achievement-panel ul,
.commitment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-list li,
.achievement-panel li,
.commitment-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-list li:last-child,
.achievement-panel li:last-child,
.commitment-list li:last-child {
  border-bottom: 0;
}

.mission-list li::before,
.achievement-panel li::before,
.commitment-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.service-card,
.growth-list article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.value-card {
  padding: 30px;
}

.value-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-weight: 900;
}

.value-card p,
.service-card p,
.growth-list p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-section,
.career-section {
  background: var(--stone);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
}

.service-card.highlight {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.service-card.highlight p {
  color: var(--muted);
}

.culture-band {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 72px 0 54px;
  color: var(--paper);
  background: #f7f5ef;
  overflow: hidden;
}

.culture-image {
  position: absolute;
  inset: 20px 0 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.culture-image img {
  width: auto;
  max-width: min(1180px, calc(100% - 40px));
  max-height: calc(100svh - 230px);
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.culture-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 30px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.culture-content h2 {
  max-width: 760px;
  color: var(--paper);
}

.growth-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.growth-list article {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.testimonial-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 58px 0 64px;
  background: linear-gradient(180deg, #ffb199 0%, #ffb199 53%, var(--paper) 53%, var(--paper) 100%);
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -160px;
  width: min(880px, 78vw);
  height: 520px;
  border: 54px solid rgba(255, 255, 255, 0.20);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 0 0 360px;
  transform: rotate(-8deg);
}

.testimonial-section::after {
  content: "";
  position: absolute;
  top: -130px;
  left: -120px;
  width: min(620px, 62vw);
  height: 300px;
  border: 34px solid rgba(255, 255, 255, 0.14);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 0 360px 0;
  transform: rotate(8deg);
}

.testimonial-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 46px;
}

.testimonial-heading .section-kicker {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: clamp(3rem, 6.8vw, 4.9rem);
  line-height: 0.95;
}

.testimonial-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 24px rgba(184, 66, 72, 0.24);
}

.testimonial-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: #f7f4ef;
}

.testimonial-photo img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.testimonial-copy {
  padding: 18px 20px 22px;
}

.testimonial-copy h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.testimonial-copy p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.achievements {
  background: var(--paper);
}

.achievement-panel {
  padding: 28px 32px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.achievement-panel li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.timeline article {
  min-height: 240px;
  padding: 28px;
  border-width: 0 1px 0 0;
  border-radius: 0;
}

.timeline article:last-child {
  border-right: 0;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.background-section .image-frame img {
  height: 460px;
}

.commitment {
  padding: 78px 0;
  color: var(--ink);
  background: var(--paper);
}

.commitment .section-kicker {
  color: var(--gold-dark);
}

.commitment-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.commitment-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.commitment-list {
  padding: 28px 32px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 54%, rgba(255, 255, 255, 0.72) 100%),
    url("assets/testimonial-visual.jpg") right center / contain no-repeat,
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 46px;
  align-items: center;
}

.contact-copy {
  max-width: 630px;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  font-size: 1.35rem;
}

.contact-card a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--charcoal);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 76svh;
    background: var(--paper);
  }

  .snapshot-grid,
  .service-grid,
  .growth-list,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .split-layout.reverse,
  .two-column,
  .commitment-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 0.78rem;
  }

  .hero-content {
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .snapshot-grid,
  .service-grid,
  .growth-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .snapshot article,
  .snapshot article:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .image-frame img {
    height: 420px;
  }

  .culture-band {
    min-height: auto;
    padding: 64px 0;
  }

  .culture-image {
    position: relative;
    inset: auto;
    margin-bottom: 24px;
  }

  .culture-image img {
    max-width: 100%;
    max-height: none;
  }

  .culture-content {
    padding: 24px;
  }

  .testimonial-section {
    min-height: auto;
    padding: 58px 0 68px;
  }

  .testimonial-photo {
    min-height: 360px;
  }

  .testimonial-photo img {
    height: 360px;
  }

  .timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%),
      var(--paper);
  }

  .footer-layout {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
