:root {
  --olive-deep: #252b1d;
  --olive: #3f4a32;
  --olive-soft: #667154;
  --cream: #f5ead7;
  --cream-soft: #efe0c9;
  --sand: #d8b98a;
  --terracotta: #c96538;
  --terracotta-dark: #9f4728;
  --clay: #b8774d;
  --text-dark: #24301f;
  --text-muted: #5e614f;
  --line: rgba(63, 74, 50, 0.2);
  --shadow: 0 24px 70px rgba(45, 36, 24, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
}

p {
  margin: 0;
}

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

.site-header {
  height: 56px;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--olive-deep);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.9;
  padding: 1.2rem 0;
  border-bottom: 2px solid transparent;
}

.nav a.active {
  color: #f3a26d;
  border-bottom-color: var(--terracotta);
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.4fr);
  background:
    linear-gradient(90deg, rgba(245, 234, 215, 0.96) 0%, rgba(245, 234, 215, 0.86) 34%, rgba(245, 234, 215, 0.14) 58%),
    radial-gradient(circle at 74% 18%, rgba(255, 194, 130, 0.55), transparent 35%),
    linear-gradient(135deg, #e7c28c 0%, #d5793d 42%, #51623f 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.24), transparent 16%),
    radial-gradient(circle at 70% 38%, rgba(160, 75, 38, 0.3), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(37, 43, 29, 0.22) 100%);
  pointer-events: none;
}

.hero-copy {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--olive-deep);
  letter-spacing: -0.05em;
}

.hero-tagline {
  margin-top: 1.4rem;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--terracotta-dark);
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 580px;
  color: #333929;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.9rem 1.4rem;
  border-radius: 3px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 12px 30px rgba(159, 71, 40, 0.28);
}

.button.primary:hover {
  background: var(--terracotta-dark);
}

.button.secondary {
  border: 1px solid rgba(37, 43, 29, 0.45);
  color: var(--olive-deep);
  background: rgba(245, 234, 215, 0.55);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(62, 75, 46, 0.15), transparent 35%),
    radial-gradient(circle at 88% 36%, rgba(37, 43, 29, 0.45), transparent 26%),
    linear-gradient(10deg, rgba(37, 43, 29, 0.32), transparent 55%);
  z-index: -1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -24%;
  width: 90%;
  height: 70%;
  background:
    radial-gradient(ellipse at 35% 40%, #c76034 0%, rgba(199, 96, 52, 0.55) 28%, transparent 29%),
    radial-gradient(ellipse at 55% 45%, #90492c 0%, rgba(144, 73, 44, 0.48) 24%, transparent 25%),
    radial-gradient(ellipse at 75% 50%, #536440 0%, rgba(83, 100, 64, 0.45) 20%, transparent 21%);
  opacity: 0.42;
  filter: blur(1px);
  z-index: -1;
}

.glass-board {
  width: min(720px, 100%);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid rgba(245, 234, 215, 0.7);
  background: rgba(245, 234, 215, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.board-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--olive-deep);
}

.flow {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.7rem;
}

.flow-step {
  min-height: 100px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(37, 43, 29, 0.86);
  color: var(--cream);
  border: 1px solid rgba(245, 234, 215, 0.3);
}

.flow-step strong {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.flow-step span {
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(245, 234, 215, 0.82);
}

.flow-arrow {
  color: var(--olive-deep);
  font-size: 1.25rem;
  font-weight: 800;
}

.board-footer {
  margin-top: 1rem;
  text-align: center;
  color: rgba(37, 43, 29, 0.84);
  font-size: 0.86rem;
}

.desk {
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 7%;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(88, 60, 35, 0.08), rgba(88, 60, 35, 0.38), rgba(88, 60, 35, 0.16));
  opacity: 0.9;
}

.laptop,
.notebook,
.mug,
.plant {
  position: absolute;
  bottom: 32px;
}

.laptop {
  left: 22%;
  width: 120px;
  height: 72px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(135deg, #9d947c, #4f513e);
  transform: skewX(-12deg);
  opacity: 0.75;
}

.notebook {
  left: 45%;
  width: 150px;
  height: 32px;
  background: rgba(245, 234, 215, 0.76);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.mug {
  right: 20%;
  width: 38px;
  height: 42px;
  border-radius: 8px 8px 14px 14px;
  background: #9f704c;
}

.plant {
  right: 8%;
  width: 52px;
  height: 60px;
  background:
    radial-gradient(circle at 50% 10%, #6d7c45 0 8px, transparent 9px),
    radial-gradient(circle at 30% 22%, #4f613a 0 10px, transparent 11px),
    radial-gradient(circle at 70% 22%, #758751 0 10px, transparent 11px),
    linear-gradient(#9f704c, #9f704c);
  background-size: 100% 70%, 100% 70%, 100% 70%, 38px 22px;
  background-repeat: no-repeat;
  background-position: center top, center top, center top, center bottom;
}

.capabilities,
.work {
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 6vw, 6rem);
}

.capabilities {
  background: linear-gradient(180deg, #f4e8d4 0%, #eee0c7 100%);
}

.section-kicker,
.work-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 800;
}

.capabilities > .section-kicker,
.capabilities > h2 {
  text-align: center;
}

.capabilities h2,
.work h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--text-dark);
}

.capability-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.capability-card {
  min-height: 220px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255, 249, 238, 0.48);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(67, 55, 34, 0.06);
}

.icon {
  color: var(--terracotta);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.capability-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.capability-card p {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.work {
  background: #eadcc3;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.text-link {
  color: var(--terracotta);
  font-weight: 750;
}

.work-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.work-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 210px;
  background: rgba(255, 249, 238, 0.42);
  border: 1px solid var(--line);
  overflow: hidden;
}

.work-image {
  min-height: 210px;
}

.image-one {
  background:
    linear-gradient(rgba(37, 43, 29, 0.05), rgba(37, 43, 29, 0.15)),
    radial-gradient(circle at 25% 80%, #415033 0 10%, transparent 11%),
    linear-gradient(135deg, #f5d09b 0%, #c96538 45%, #5c6c45 100%);
}

.image-two {
  background:
    repeating-radial-gradient(circle at 20% 60%, rgba(255,255,255,0.18) 0 8px, transparent 9px 18px),
    linear-gradient(135deg, #9f704c 0%, #dfaa6c 48%, #4f613a 100%);
}

.image-three {
  background:
    radial-gradient(circle at 26% 34%, #c96538 0 14%, transparent 15%),
    radial-gradient(circle at 52% 45%, #88472d 0 18%, transparent 19%),
    radial-gradient(circle at 80% 58%, #526640 0 14%, transparent 15%),
    linear-gradient(180deg, #a6d5f2 0%, #f0c590 45%, #d0743f 100%);
}

.work-content {
  padding: 1.4rem;
}

.work-content h3 {
  margin-top: 0.45rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.work-content p:not(.work-kicker) {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.work-content a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--terracotta);
  font-weight: 750;
}

.about-strip {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: auto 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 100% 100%, rgba(201, 101, 56, 0.24), transparent 35%),
    linear-gradient(135deg, #f5ead7 0%, #ead4b8 100%);
  border-top: 1px solid rgba(63, 74, 50, 0.18);
}

.headshot-placeholder {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--olive), var(--terracotta));
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: 1.6rem;
}

.about-copy p {
  margin-top: 0.6rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-copy a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--terracotta);
  font-weight: 750;
}

blockquote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.35;
  color: var(--olive-deep);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .capability-card {
    min-height: auto;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
    padding-block: 1rem;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

  .work-card {
    grid-template-columns: 1fr;
  }
}