:root {
  --ink: #141211;
  --paper: #f6f0e6;
  --cream: #fffaf1;
  --line: rgba(20, 18, 17, 0.14);
  --red: #9b2f2f;
  --sage: #7d8c73;
  --steel: #58646f;
  --gold: #c9a15f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 240, 230, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}

.nav {
  gap: clamp(14px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 72px;
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.58) 42%, rgba(12, 10, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.42), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  font-size: clamp(1.06rem, 2vw, 1.42rem);
  color: rgba(255, 250, 241, 0.88);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 750;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 241, 0.58);
  color: var(--cream);
}

.intro,
.capabilities,
.examples,
.packages,
.method,
.contact {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.packages,
.method,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro p {
  max-width: 620px;
  color: rgba(20, 18, 17, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background: var(--cream);
}

.service:nth-child(2) {
  background: #eef1ea;
}

.service:nth-child(3) {
  background: #f4e9df;
}

.service:nth-child(4) {
  border-right: 0;
  background: #e9eef1;
}

.service-index {
  display: block;
  margin-bottom: 82px;
  color: var(--red);
  font-weight: 800;
}

.service p {
  color: rgba(20, 18, 17, 0.68);
}

.capabilities {
  background: #fdf8ef;
}

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

.capability-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--cream);
}

.capability-grid article:nth-child(2),
.capability-grid article:nth-child(5) {
  background: #eef1ea;
}

.capability-grid article:nth-child(3),
.capability-grid article:nth-child(6) {
  background: #eef3f5;
}

.capability-grid p,
.example p,
.package-list p {
  color: rgba(20, 18, 17, 0.68);
}

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

.example-list {
  display: grid;
  gap: 18px;
}

.example {
  display: grid;
  grid-template-columns: 160px minmax(0, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.example:last-child {
  border-bottom: 1px solid var(--line);
}

.example span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.02;
}

.packages {
  background: #e9eef1;
}

.package-list {
  display: grid;
  gap: 1px;
  background: rgba(20, 18, 17, 0.16);
}

.package-list article {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  background: #e9eef1;
}

.package-list strong {
  font-size: 1.12rem;
}

.method {
  background: var(--ink);
  color: var(--cream);
}

.method-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 241, 0.18);
}

.method-list div {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  background: var(--ink);
}

.method-list strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.method-list span {
  color: rgba(255, 250, 241, 0.78);
}

.contact {
  background: var(--sage);
}

.contact h2 {
  max-width: 880px;
}

.contact-link {
  align-self: end;
  justify-self: start;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .intro-grid,
  .packages,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .example {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service:nth-child(2) {
    border-right: 0;
  }
}

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

  .brand span:last-child {
    max-width: 110px;
    line-height: 1.05;
  }

  .nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.9), rgba(12, 10, 9, 0.48)),
      linear-gradient(0deg, rgba(12, 10, 9, 0.5), transparent 50%);
  }

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

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

  .service {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-index {
    margin-bottom: 44px;
  }

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