:root {
  --ink: #162326;
  --muted: #5c6a6d;
  --line: #dbe3e2;
  --paper: #f6f5ef;
  --white: #ffffff;
  --teal: #264f58;
  --teal-dark: #17383f;
  --blue: #254e74;
  --copper: #774a3f;
  --copper-soft: #b47a5d;
  --shadow: 0 18px 50px rgba(22, 35, 38, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(246, 245, 239, 0.9);
  border-bottom: 1px solid rgba(219, 227, 226, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(250px, 54vw);
}

.brand img {
  width: 100%;
  height: auto;
}

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

.nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 82px));
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(34px, 6vw, 70px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 4% -8%;
  width: 34vw;
  min-width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(38, 79, 88, 0.18);
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: #34474b;
  font-size: clamp(1.08rem, 1.7vw, 1.33rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--teal-dark);
  border-radius: 6px;
  font-weight: 720;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.28);
}

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

.hero-visual {
  position: relative;
  min-height: min(62vw, 680px);
}

.hero-visual img {
  width: 100%;
  height: min(62vw, 680px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -22px;
  width: 72%;
  height: 44px;
  background: linear-gradient(90deg, var(--blue), var(--copper-soft));
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  background: var(--line);
}

.summary-band div {
  min-height: 158px;
  padding: 26px;
  background: var(--white);
}

.summary-band strong,
.summary-band span {
  display: block;
}

.summary-band strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.summary-band span {
  color: var(--muted);
}

.clients {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.clients h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-list span {
  display: flex;
  min-height: 88px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 760;
}

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

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

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

.work-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.work-card.large {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.work-card.large img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #e9e8e1;
}

.work-card div {
  padding: 0 22px 24px;
}

.work-card p,
.steps p,
.workshop p,
.contact p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 84px);
  background: var(--teal-dark);
  color: var(--white);
}

.split .eyebrow {
  color: #d3a086;
}

.split h2,
.split h3 {
  color: var(--white);
}

.split p {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-heading {
  position: sticky;
  top: 124px;
  align-self: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.steps article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.steps span {
  color: #d3a086;
  font-weight: 780;
}

.steps p {
  grid-column: 2;
  max-width: 660px;
  margin-bottom: 0;
}

.workshop {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.workshop-copy {
  max-width: 620px;
}

.workshop-images {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.workshop-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workshop-images img:first-child {
  aspect-ratio: 1.22;
  object-fit: cover;
}

.workshop-images img:last-child {
  aspect-ratio: 0.92;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

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

.contact p {
  max-width: 660px;
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--line);
}

.contact-card h3 {
  margin-bottom: 4px;
}

.contact-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-card a,
.contact-card span {
  display: block;
  color: var(--teal-dark);
  font-weight: 720;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .workshop,
  .clients,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
    height: auto;
  }

  .summary-band,
  .work-grid,
  .client-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-heading {
    position: static;
  }
}

@media (min-width: 701px) {
  .work-card.large {
    grid-template-columns: minmax(280px, 0.62fr) minmax(230px, 0.38fr);
  }

  .work-card.large img {
    width: 100%;
    height: 100%;
    min-height: 620px;
  }

  .work-card.large div {
    align-self: center;
    padding: 28px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .hero {
    padding-top: 38px;
  }

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

  .summary-band,
  .work-grid,
  .client-list,
  .workshop-images {
    grid-template-columns: 1fr;
  }

  .work-card.large {
    grid-column: auto;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps p {
    grid-column: auto;
  }

  .contact-card {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-card img {
    width: 72px;
    height: 72px;
  }
}
