:root {
  --olive: #5e582e;
  --olive-dark: #302d14;
  --sand: #f0e6d1;
  --stone: #d2d3d5;
  --ink: #1c1b16;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: rgba(94, 88, 46, 0.18);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--sand);
  background: rgba(48, 45, 20, 0.78);
  border-bottom: 1px solid rgba(240, 230, 209, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 212px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  background: var(--sand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
}

.nav a,
.header-cta {
  opacity: 0.9;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  padding: 10px 16px;
  color: var(--olive-dark);
  background: var(--sand);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(30, 28, 12, 0.9), rgba(30, 28, 12, 0.55), rgba(30, 28, 12, 0.18)),
    linear-gradient(0deg, rgba(30, 28, 12, 0.62), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: 138px clamp(20px, 6vw, 76px) 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 6.25vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
  line-height: 1.55;
}

.hero-actions,
.intro-grid,
.brand-cards {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: var(--olive-dark);
  background: var(--sand);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.band,
.solutions,
.brand-band,
.project-band,
.briefing {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 36px;
}

.section-title.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.section-title h2,
.project-copy h2,
.briefing h2 {
  margin-bottom: 0;
  color: var(--olive-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  background: var(--sand);
}

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

.intro-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.intro-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--olive);
  font-weight: 900;
}

.intro-grid h3,
.solution h3,
.brand-cards h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.intro-grid p,
.solution p,
.brand-cards p,
.project-copy p,
.briefing p {
  color: rgba(28, 27, 22, 0.72);
  line-height: 1.58;
}

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

.solution-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.solution {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 190px;
  border: 1px solid var(--line);
  background: var(--white);
}

.solution.featured {
  grid-row: span 3;
  grid-template-columns: 1fr;
}

.solution img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: var(--stone);
}

.solution.featured img {
  aspect-ratio: 1.18 / 1;
  min-height: 420px;
}

.solution div {
  padding: 24px;
}

.brand-band {
  color: var(--sand);
  background: var(--olive);
}

.brand-band .section-title h2,
.brand-band .eyebrow,
.brand-band p {
  color: currentColor;
}

.brand-cards {
  grid-template-columns: repeat(2, 1fr);
}

.brand-cards article {
  min-height: 300px;
  padding: 32px;
  color: var(--ink);
  background: var(--sand);
}

.partner-logo {
  width: 170px;
  height: 72px;
  margin-bottom: 44px;
  object-fit: contain;
  object-position: left center;
}

.partner-logo.cavaletti {
  width: 210px;
}

.brand-cards a {
  display: inline-block;
  margin-top: 16px;
  color: var(--olive);
  font-weight: 900;
}

.project-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.project-copy p {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--olive);
  background: var(--paper);
  font-weight: 700;
}

.project-band figure {
  margin: 0;
}

.project-band img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.briefing {
  background:
    linear-gradient(90deg, rgba(94, 88, 46, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(94, 88, 46, 0.08) 1px, transparent 1px),
    var(--sand);
  background-size: 54px 54px;
}

.briefing-panel {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(48, 45, 20, 0.2);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 76px);
  color: var(--sand);
  background: var(--olive-dark);
  font-size: 0.86rem;
}

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

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section-title,
  .intro-grid,
  .solution-list,
  .brand-cards,
  .project-band,
  .briefing-panel {
    grid-template-columns: 1fr;
  }

  .solution.featured {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 180px;
  }

  .brand img {
    width: 180px;
    height: 46px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .solution img,
  .solution.featured img {
    min-height: 240px;
    aspect-ratio: 1.15 / 1;
  }

  .footer {
    display: grid;
  }
}
