:root {
  --ivory: #f6f0e6;
  --paper: #fbf8f1;
  --stone: #d8d0c2;
  --beige: #c7ad8d;
  --charcoal: #26231f;
  --charcoal-soft: #3c3832;
  --terracotta: #ad6540;
  --sage: #58685d;
  --bluegrey: #6f7d7a;
  --line: rgba(38, 35, 31, 0.16);
  --shadow: 0 22px 70px rgba(38, 35, 31, 0.12);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  width: var(--scroll, 0%);
  background: var(--terracotta);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 18px 5vw;
  color: var(--charcoal);
  background: rgba(246, 240, 230, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.home-page .site-header:not(.is-scrolled):not(.nav-active) {
  color: var(--paper);
  background: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 42px;
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  inset: 3px auto 3px 0;
  width: 29px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 28px 28px 0;
  transform-origin: left center;
}

.brand-mark span:nth-child(2) {
  width: 22px;
  transform: translateX(5px);
  opacity: 0.72;
}

.brand-mark span:nth-child(3) {
  width: 15px;
  transform: translateX(10px);
  opacity: 0.48;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 140px 5vw 8svh;
  overflow: hidden;
  color: var(--paper);
}

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

.home-hero-media {
  background-image: url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.74) 0%, rgba(20, 18, 15, 0.38) 48%, rgba(20, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.1) 44%);
}

.home-hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow,
.feature-link span,
.case-study span,
.framework span,
.definition span,
.journal-list span {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  color: var(--stone);
}

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

h1,
h2,
h3,
.feature-link strong,
.journal-list strong,
.quiet-band p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 6rem;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.25rem;
}

h3 {
  margin-bottom: 14px;
  font-size: 2.05rem;
}

.hero-subtitle {
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.hero-copy,
.page-hero p {
  max-width: 650px;
  color: rgba(251, 248, 241, 0.9);
  font-size: 1.08rem;
}

.page-hero p {
  color: var(--charcoal-soft);
}

.section-pad {
  padding: 112px 5vw;
}

.page-hero {
  padding: 180px 5vw 86px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero.narrow {
  max-width: none;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--charcoal);
}

.editorial-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.feature-link {
  display: grid;
  align-content: end;
  min-height: 510px;
  padding: 42px 5vw;
  background: var(--paper);
  overflow: hidden;
  transition: background 200ms ease, color 200ms ease;
}

.feature-link:hover {
  background: var(--charcoal);
  color: var(--paper);
}

.feature-link img {
  width: calc(100% + 10vw);
  max-width: none;
  height: 330px;
  margin: -42px -5vw 38px;
  object-fit: cover;
}

.feature-link strong {
  display: block;
  max-width: 640px;
  font-size: 3.3rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.62fr);
  gap: 8vw;
  align-items: center;
}

.text-column {
  max-width: 720px;
  color: var(--charcoal-soft);
  font-size: 1.08rem;
}

.name-art {
  position: relative;
  min-height: 460px;
  border-left: 1px solid var(--line);
}

.name-art span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 380px;
  height: 380px;
  border: 2px solid var(--terracotta);
  border-left: 0;
  border-radius: 0 50% 50% 0;
  transform: translateY(-50%);
  opacity: 0.9;
}

.name-art span:nth-child(2) {
  width: 300px;
  height: 300px;
  opacity: 0.68;
}

.name-art span:nth-child(3) {
  width: 220px;
  height: 220px;
  opacity: 0.48;
}

.name-art span:nth-child(4) {
  width: 140px;
  height: 140px;
  opacity: 0.34;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: 8vw;
  align-items: start;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.editorial-band h2 {
  max-width: 900px;
}

.definition,
.framework {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.definition article,
.framework article {
  min-height: 370px;
  padding: 44px;
  background: var(--paper);
}

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

.framework span {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--bluegrey);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.framework h2,
.definition h2 {
  font-size: 2.25rem;
}

.definition p,
.framework p,
.case-study p,
.method-grid p,
.distinction-grid p,
.service-matrix p,
.story-notes,
.vignette-grid p,
.process-steps p,
.guide-list p,
.collab-copy,
.journal-list p,
.connect-info {
  color: var(--charcoal-soft);
}

.principle-grid,
.distinction-grid,
.process-steps,
.vignette-grid,
.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.principle-grid article,
.distinction-grid article,
.process-steps article,
.vignette-grid article,
.guide-list article {
  min-height: 300px;
  padding: 38px;
  background: var(--paper);
}

.principle-grid span,
.distinction-grid span,
.process-steps span,
.vignette-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 78px 5vw;
  background: var(--charcoal);
  color: var(--paper);
  text-align: center;
}

.manifesto p {
  max-width: 980px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.02;
}

.method-section {
  display: grid;
  gap: 56px;
  background: var(--ivory);
}

.method-section > div:first-child {
  max-width: 940px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.method-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-matrix article {
  min-height: 235px;
  padding: 30px;
  background: var(--paper);
}

.service-matrix article:last-child {
  grid-column: span 3;
  min-height: 180px;
}

.services-page {
  background: var(--ivory);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 960px;
}

.service-list span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 14px;
  background: rgba(88, 104, 93, 0.06);
  color: var(--charcoal-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.case-list {
  background: var(--ivory);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  min-height: 620px;
  border-bottom: 1px solid var(--line);
}

.case-study:nth-child(even) {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.04fr);
}

.case-study:nth-child(even) img {
  grid-column: 2;
}

.case-study:nth-child(even) div {
  grid-column: 1;
  grid-row: 1;
}

.case-study img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.case-study div {
  display: grid;
  align-content: center;
  padding: 64px 5vw;
  background: var(--paper);
}

.case-study h2 {
  font-size: 3.2rem;
}

.story-notes {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.story-notes li {
  position: relative;
  padding-left: 22px;
}

.story-notes li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--terracotta);
}

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

.vignette-grid article {
  min-height: 260px;
}

.collab {
  display: grid;
  gap: 58px;
  background: var(--sage);
  color: var(--paper);
}

.collab-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7vw;
  color: rgba(251, 248, 241, 0.88);
  font-size: 1.08rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(251, 248, 241, 0.22);
  border: 1px solid rgba(251, 248, 241, 0.22);
}

.partner-list span {
  display: grid;
  min-height: 96px;
  place-items: center;
  background: rgba(38, 35, 31, 0.18);
  padding: 14px;
  text-align: center;
  color: rgba(251, 248, 241, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quiet-band {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 70px 5vw;
  background: var(--paper);
  text-align: center;
}

.quiet-band p {
  max-width: 900px;
  margin: 0;
  font-size: 4rem;
}

.journal-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: 7vw;
  align-items: center;
  background: var(--ivory);
}

.journal-feature img {
  height: 560px;
  object-fit: cover;
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.page-journal {
  margin: 0 5vw 112px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.journal-list a {
  min-height: 340px;
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.journal-list a:last-child {
  border-right: 0;
}

.journal-list a:hover {
  background: var(--charcoal);
  color: var(--paper);
}

.journal-list a:hover p {
  color: rgba(251, 248, 241, 0.76);
}

.journal-list strong {
  display: block;
  margin-bottom: 18px;
  font-size: 2.15rem;
  line-height: 1.05;
}

.connect-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 9vw;
  align-items: start;
  background: var(--ivory);
}

.inquiry-guide {
  display: grid;
  gap: 54px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.inquiry-guide > div:first-child {
  max-width: 860px;
}

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

.guide-list article {
  min-height: 280px;
}

address {
  margin-bottom: 22px;
  font-style: normal;
}

.connect-info > a {
  display: block;
  width: max-content;
  margin-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
  font-weight: 700;
}

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

.socials a {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  color: var(--charcoal-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf7;
  color: var(--charcoal);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--terracotta);
  border-radius: 4px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.socials a:focus-visible,
.journal-list a:focus-visible,
.feature-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.status-error {
  color: #8f3e2d;
}

.form-status.status-success {
  color: var(--sage);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 32px 5vw;
  background: var(--charcoal);
  color: rgba(251, 248, 241, 0.76);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  border-bottom: 1px solid currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .site-nav {
    gap: 18px;
  }

  .framework,
  .principle-grid,
  .method-grid,
  .distinction-grid,
  .service-matrix,
  .process-steps,
  .vignette-grid,
  .guide-list,
  .partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-matrix article:last-child {
    grid-column: span 2;
  }

  .feature-link strong,
  .case-study h2,
  .manifesto p,
  .quiet-band p {
    font-size: 2.75rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 22px 24px;
    background: rgba(246, 240, 230, 0.98);
    color: var(--charcoal);
    box-shadow: 0 16px 42px rgba(38, 35, 31, 0.13);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
  }

  .home-hero {
    min-height: 86svh;
    padding: 110px 22px 46px;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(20, 18, 15, 0.72) 0%, rgba(20, 18, 15, 0.22) 100%),
      rgba(20, 18, 15, 0.18);
  }

  h1 {
    font-size: 3.35rem;
  }

  h2,
  .feature-link strong,
  .case-study h2,
  .quiet-band p {
    font-size: 2.28rem;
  }

  h3 {
    font-size: 1.72rem;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .section-pad,
  .page-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-hero {
    padding-top: 132px;
    padding-bottom: 62px;
  }

  .editorial-links,
  .split-section,
  .definition,
  .framework,
  .editorial-band,
  .method-grid,
  .distinction-grid,
  .service-matrix,
  .journal-feature,
  .collab-copy,
  .journal-list,
  .connect-page,
  .case-study,
  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-link {
    min-height: 430px;
    padding: 34px 22px;
  }

  .feature-link img {
    width: calc(100% + 44px);
    height: 280px;
    margin: -34px -22px 32px;
  }

  .case-study:nth-child(even) img,
  .case-study:nth-child(even) div {
    grid-column: auto;
    grid-row: auto;
  }

  .case-study,
  .case-study img {
    min-height: auto;
  }

  .case-study img {
    height: 360px;
  }

  .case-study div {
    padding: 44px 22px;
  }

  .journal-feature img {
    height: 360px;
  }

  .name-art {
    min-height: 300px;
  }

  .name-art span {
    width: 290px;
    height: 290px;
  }

  .name-art span:nth-child(2) {
    width: 226px;
    height: 226px;
  }

  .name-art span:nth-child(3) {
    width: 162px;
    height: 162px;
  }

  .name-art span:nth-child(4) {
    width: 98px;
    height: 98px;
  }

  .page-journal {
    margin: 0 22px 78px;
  }

  .journal-list a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2,
  .feature-link strong,
  .case-study h2,
  .quiet-band p {
    font-size: 2.02rem;
  }

  .brand-name {
    max-width: 126px;
  }

  .framework,
  .principle-grid,
  .distinction-grid,
  .service-matrix,
  .process-steps,
  .vignette-grid,
  .guide-list,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .service-matrix article:last-child {
    grid-column: auto;
  }

  .framework span {
    margin-bottom: 28px;
    font-size: 2.6rem;
  }

  .definition article,
  .framework article,
  .principle-grid article,
  .distinction-grid article,
  .service-matrix article,
  .process-steps article,
  .vignette-grid article,
  .guide-list article,
  .contact-form {
    padding: 24px;
  }

  .feature-link,
  .quiet-band {
    min-height: 360px;
  }

  .case-study img {
    height: 300px;
  }
}
