:root {
  --bordo: #7b2f32;
  --terracotta: #bf6f55;
  --ink: #201b19;
  --muted: #6f625c;
  --beige: #eaded0;
  --warm-white: #fbf7f1;
  --paper: #fffdf9;
  --line: rgba(123, 47, 50, 0.16);
  --shadow: 0 24px 70px rgba(60, 42, 35, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

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

.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: 20px clamp(20px, 5vw, 64px);
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid rgba(123, 47, 50, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand strong {
  font-weight: 700;
}

.brand--logo {
  width: clamp(112px, 13vw, 172px);
  height: 44px;
  align-items: flex-start;
  justify-content: center;
}

.brand--logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--bordo);
}

.nav-cta {
  color: var(--bordo);
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(36px, 5vw, 64px);
  padding-top: 128px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto -14vw 7vw auto;
  width: 42vw;
  height: 42vw;
  min-width: 320px;
  min-height: 320px;
  content: "";
  background: radial-gradient(circle, rgba(191, 111, 85, 0.18), rgba(191, 111, 85, 0) 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 970px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
}

h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.18;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--bordo);
  border-radius: 999px;
  background: var(--bordo);
  color: var(--paper);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--bordo);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
}

.hero__content {
  max-width: 1080px;
}

.hero__image {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 50, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.proposal {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.proposal__text {
  max-width: 760px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  line-height: 1.25;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.soft-card,
.service-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
}

.soft-card span,
.process-step span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
}

.soft-card h3,
.process-step h3 {
  margin-bottom: 0;
}

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

.services .eyebrow {
  color: var(--beige);
}

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

.service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 253, 249, 0.06);
  border-color: rgba(255, 253, 249, 0.16);
}

.service-card--featured {
  background: var(--paper);
  color: var(--ink);
}

.service-card__label {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.72);
}

.service-card--featured p:last-child {
  color: var(--muted);
}

.services__note {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 253, 249, 0.72);
}

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

.process-step {
  min-height: 205px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.46);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  background: linear-gradient(90deg, var(--beige), var(--paper));
}

.about__photo {
  position: relative;
  min-height: clamp(420px, 46vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 50, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 18% center;
}

.about__content {
  max-width: 920px;
}

.about p:not(.eyebrow) {
  max-width: 790px;
  color: #554944;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.contact {
  padding-bottom: clamp(88px, 12vw, 150px);
  background: var(--bordo);
  color: var(--paper);
}

.contact__inner {
  max-width: 940px;
}

.contact .eyebrow {
  color: var(--beige);
}

.contact h2 {
  margin-bottom: 34px;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.contact__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.42);
  color: rgba(255, 253, 249, 0.84);
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact__links a:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.footer {
  padding: 24px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }
}

@media (max-width: 980px) {
  .proposal,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .about__photo {
    min-height: 440px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.78rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .brand--logo {
    width: 118px;
    height: 38px;
  }

  .section {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 120px;
  }

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

  .audience__grid,
  .services__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .soft-card,
  .service-card,
  .process-step {
    min-height: auto;
  }

  .soft-card span,
  .process-step span {
    margin-bottom: 30px;
  }

  .hero__image {
    margin-inline: -18px;
    width: calc(100% + 36px);
    border-radius: 0;
  }

  .hero__image img {
    aspect-ratio: 1.18 / 1;
    object-position: 44% center;
  }

  .about__photo {
    min-height: 360px;
  }
}
