:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --cream: #f3efe8;
  --soft: #e9e0d3;
  --olive: #6d7052;
  --olive-dark: #55583f;
  --ink: #20211c;
  --muted: #66665f;
  --line: #ddd7ce;
  --rose: #c99281;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shadow: 0 18px 48px rgba(52, 44, 34, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea { font-family: var(--sans); }

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

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

button,
input,
textarea { border-radius: 0; }

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 96px;
  border-bottom: 1px solid rgba(221, 215, 206, 0.8);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { width: 324px; }

.nav nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.nav nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--olive);
  transition: transform 180ms ease;
}

.nav nav > a:not(.button):hover::after,
.nav nav > a:first-child::after { transform: scaleX(1); }

.menu {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 22px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  transform: translateY(-1px);
}

.button.small {
  min-height: 34px;
  padding: 9px 17px;
}

.eyebrow {
  display: inline-block;
  color: var(--olive);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  overflow: hidden;
  background: linear-gradient(90deg, #f8f4ee 0%, #eee9e1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 405px;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 56px clamp(34px, 4vw, 64px) 56px 10px;
}

.hero h1,
.cta-card h2,
.section-heading h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 540px;
  margin: 16px 0 18px;
  font-size: clamp(43px, 4.2vw, 62px);
  line-height: 0.98;
}

.hero p {
  max-width: 450px;
  margin: 0 0 29px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 28px 0 38px -34px rgba(32, 33, 28, 0.28);
  pointer-events: none;
}

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

.services {
  padding: 30px 0 16px;
  background: var(--surface);
}

.service-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(230px, 310px);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  min-height: 168px;
  padding: 38px 16px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child { border-bottom: 0; }

.icon-circle {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--cream);
}

.icon-circle img { width: 34px; }

.service-row h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.service-row p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-row ul {
  min-height: 96px;
  margin: 0;
  padding: 3px 0 3px 35px;
  border-left: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-row li::before {
  margin-right: 9px;
  color: var(--olive);
  content: "•";
}

.cta-strip {
  padding: 72px 0 74px;
  background: var(--surface);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid #e5ded4;
  border-radius: 3px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.cta-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 5vw, 68px);
}

.cta-card h2 {
  margin: 0 0 13px;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.02;
}

.cta-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.cta-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.logos {
  padding: 12px 0 72px;
  background: var(--surface);
}

.center,
.section-heading--center {
  display: block;
  text-align: center;
}

.brand-carousel {
  overflow: hidden;
  margin-top: 28px;
  padding-block: 12px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 28s linear infinite;
}

.brand-carousel:hover .brand-track { animation-play-state: paused; }

.brand-set {
  display: flex;
  align-items: center;
  gap: clamp(50px, 6vw, 90px);
  padding-right: clamp(50px, 6vw, 90px);
}

.brand-set img {
  width: clamp(158px, 14vw, 205px);
  height: 74px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-set img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brand-marquee {
  to { transform: translateX(-50%); }
}

.portfolio {
  padding: 72px 0 86px;
  background: var(--paper);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 740px;
  margin: 9px 0 0;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.05;
}

.section-heading--center h2 { margin-inline: auto; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.portfolio-grid img:hover {
  filter: saturate(0.88);
  transform: translateY(-4px);
}

.founder {
  padding: 92px 0;
  background: var(--surface);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(52px, 7vw, 94px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  margin: 0;
}

.founder-portrait::before {
  position: absolute;
  z-index: 0;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--line);
  content: "";
}

.founder-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.founder-copy h2 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.founder-lead {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
}

.founder-copy > p:not(.founder-lead) {
  max-width: 540px;
  color: var(--muted);
  font-size: 13px;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 27px 0;
}

.founder-facts > div {
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.founder-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.founder-facts span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career { border-top: 1px solid var(--line); }

.career > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.career time {
  color: var(--olive);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.career p { margin: 0; }

.career b {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
}

.career span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.process,
.results,
.feed,
.contact { padding: 92px 0; }

.process { background: var(--cream); }

.process { padding-block: 68px; }

.process .section-heading { margin-bottom: 26px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(109, 112, 82, 0.15);
  background: rgba(251, 250, 247, 0.54);
  text-align: left;
}

.steps article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -15px;
  color: var(--olive);
  content: "→";
  font-size: 13px;
  transform: translateY(-50%);
}

.steps b {
  display: inline-grid;
  place-items: center;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--rose);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.steps h3 {
  align-self: end;
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.08;
}

.steps p {
  align-self: start;
  max-width: none;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.results { background: var(--surface); }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.metrics article {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.metrics article:hover {
  border-color: #c8beb1;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.metrics img {
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
}

.metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.metrics p {
  max-width: 150px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.feed-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  background-image: url("../assets/images/feed/feed-grid-v2.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  box-shadow: inset 0 0 0 1px rgba(84, 76, 64, 0.05);
}

.feed-tile-1 { background-position: 0 0; }
.feed-tile-2 { background-position: 50% 0; }
.feed-tile-3 { background-position: 100% 0; }
.feed-tile-4 { background-position: 0 100%; }
.feed-tile-5 { background-position: 50% 100%; }
.feed-tile-6 { background-position: 100% 100%; }

.feed-tile figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(42, 40, 33, 0.62);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.feed-tile:hover figcaption,
.feed-tile:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.contact h2 {
  max-width: 510px;
  margin: 12px 0 18px;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.02;
}

.contact p {
  max-width: 420px;
  color: var(--muted);
  font-size: 12px;
}

.contact form { display: grid; gap: 17px; }

.contact form label { display: grid; gap: 7px; }

.contact form label > span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfc6b9;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(109, 112, 82, 0.12);
}

.contact textarea {
  min-height: 125px;
  resize: vertical;
}

.contact output {
  min-height: 20px;
  color: var(--olive-dark);
  font-size: 11px;
}

footer {
  padding: 70px 0 26px;
  border-top: 1px solid #e4dcd1;
  background: #f2ece3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.9fr 1.35fr;
  gap: 42px;
}

.footer-grid > img { width: 324px; }

.footer-grid b {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover { color: var(--ink); }

.footer-grid p,
.footer-grid label {
  color: var(--muted);
  font-size: 13px;
}

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
}

.newsletter button {
  width: 43px;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.copyright {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }
  .hero-copy { padding-right: 38px; }
  .service-row { grid-template-columns: 70px minmax(0, 1fr) 245px; gap: 24px; }
  .service-row ul { padding-left: 24px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps article::after { display: none; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .wrap { width: min(var(--max), calc(100% - 44px)); }
  .menu { display: block; }
  .logo { width: 250px; }
  .nav nav {
    position: absolute;
    top: 95px;
    right: 0;
    left: 0;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px 22px 32px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 16px 28px rgba(45, 39, 31, 0.08);
  }
  .nav nav.open { display: flex; }
  .nav nav .button { width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 420px; padding: 65px 0; }
  .hero-image { height: auto; aspect-ratio: 16 / 9; }
  .service-row { grid-template-columns: 70px minmax(0, 1fr); }
  .service-row ul {
    grid-column: 2;
    min-height: 0;
    padding: 15px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    columns: 2;
  }
  .cta-card,
  .contact-grid { grid-template-columns: 1fr; }
  .cta-card img { min-height: 320px; }
  .brand-set { gap: 44px; padding-right: 44px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { gap: 14px; }
  .contact-grid { gap: 44px; }
  .founder-grid { grid-template-columns: 1fr; gap: 58px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body { font-size: 13px; }
  .wrap { width: calc(100% - 32px); }
  .header { height: 78px; }
  .logo { width: 230px; }
  .nav nav { top: 77px; }
  .hero-copy { min-height: 390px; padding: 54px 0; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero p { font-size: 12px; }
  .hero-image { height: auto; aspect-ratio: 16 / 9; }
  .services { padding-top: 14px; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 8px;
    text-align: center;
  }
  .icon-circle { margin-inline: auto; }
  .service-row ul {
    grid-column: auto;
    padding-top: 17px;
    text-align: left;
    columns: 1;
  }
  .service-row li { width: max-content; margin-inline: auto; }
  .cta-strip { padding: 54px 0; }
  .cta-card > div { padding: 38px 28px; }
  .cta-card img { min-height: 260px; }
  .logos { padding-bottom: 56px; }
  .brand-carousel { margin-inline: -16px; }
  .brand-set img { width: 150px; }
  .portfolio,
  .process,
  .results,
  .feed,
  .contact { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 37px; }
  .portfolio-grid,
  .feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .feed-tile figcaption { display: none; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .metrics { gap: 10px; }
  .metrics article { min-height: 180px; padding: 22px 10px; }
  .metrics strong { font-size: 34px; }
  .contact h2 { font-size: 40px; }
  .founder { padding: 72px 0; }
  .founder-portrait::before { inset: 12px -8px -12px 8px; }
  .founder-facts { grid-template-columns: 1fr; }
  .contact form { gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .copyright { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .brand-track { width: 100%; animation: none; }
  .brand-set { width: 100%; flex-wrap: wrap; justify-content: center; }
  .brand-set[aria-hidden="true"] { display: none; }
}
