@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f3efe5;
  --paper-deep: #e4ded0;
  --paper-light: #faf8f2;
  --ink: #18221c;
  --ink-soft: #334039;
  --moss: #637866;
  --moss-deep: #26372f;
  --fern: #8b9d84;
  --lake: #537b84;
  --clay: #bf684b;
  --gold: #cda562;
  --line: rgba(24, 34, 28, 0.18);
  --line-light: rgba(250, 248, 242, 0.22);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1380px;
  --radius: 4px;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.09;
  pointer-events: none;
}

::selection {
  background: var(--clay);
  color: var(--paper-light);
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 5px;
}

.shell {
  width: min(calc(100% - 72px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(100px, 10vw, 168px);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  border-radius: 2px;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: color-mix(in srgb, currentColor 62%, transparent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
}

.eyebrow span::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(243, 239, 229, 0.9);
  backdrop-filter: blur(18px) saturate(115%);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark img {
  width: 44px;
  height: 44px;
}

.brand-name {
  font-size: 0.91rem;
  letter-spacing: -0.025em;
}

.brand-name strong {
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.header-contact {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
  border: 1px solid var(--ink);
  padding: 0 16px;
  transition: background 180ms ease, color 180ms ease;
}

.header-contact:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: 88px;
}

.hero::before {
  position: absolute;
  top: 88px;
  bottom: 0;
  left: calc(50% - min(50vw - 36px, 690px));
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 71% 43%, rgba(83, 123, 132, 0.13), transparent 27%),
    linear-gradient(90deg, transparent 49.95%, rgba(24, 34, 28, 0.06) 50%, transparent 50.05%);
}

.hero-grid {
  display: grid;
  min-height: 770px;
  grid-template-columns: minmax(470px, 0.83fr) minmax(520px, 1.17fr);
  align-items: center;
  gap: clamp(28px, 5vw, 94px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 42px;
}

.hero h1,
.section-heading h2,
.directory-intro h2,
.about-copy h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 6.1vw, 6.65rem);
  font-weight: 300;
  letter-spacing: -0.064em;
  line-height: 0.91;
}

.hero h1 em,
.section-heading h2 em,
.directory-intro h2 em,
.about-copy h2 em,
.contact-panel h2 em,
.project-copy h3 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 em {
  color: var(--moss);
}

.hero-lead {
  max-width: 590px;
  margin: 38px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button--ink {
  background: var(--ink);
  color: var(--paper-light);
}

.button--ink:hover {
  background: var(--clay);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  padding-block: 8px;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--ink);
}

.landscape-mark {
  position: relative;
  width: min(100%, 690px);
  aspect-ratio: 1;
  justify-self: end;
}

.terrain-lines {
  position: absolute;
  inset: 2%;
  width: 96%;
  height: 96%;
  overflow: visible;
  fill: none;
  stroke: rgba(24, 34, 28, 0.31);
  stroke-width: 1.1;
}

.terrain-lines path:nth-child(even) {
  stroke: rgba(83, 123, 132, 0.36);
}

.lake-disc {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 36%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(24, 34, 28, 0.22);
}

.lake-disc::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
}

.lake-disc img {
  width: 72%;
  height: 72%;
}

.field-note {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--ink);
  background: rgba(243, 239, 229, 0.76);
  font-size: 0.62rem;
  line-height: 1.35;
  padding: 6px 9px;
  backdrop-filter: blur(7px);
}

.field-note span {
  color: rgba(24, 34, 28, 0.58);
  font-size: 0.53rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field-note b {
  font-weight: 700;
}

.field-note--one {
  top: 15%;
  right: 7%;
}

.field-note--two {
  bottom: 16%;
  left: 6%;
}

.orbit {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 5px var(--clay);
}

.orbit--one {
  top: 27%;
  left: 18%;
}

.orbit--two {
  right: 21%;
  bottom: 23%;
  background: var(--lake);
  box-shadow: 0 0 0 5px var(--lake);
}

.hero-foot {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(24, 34, 28, 0.64);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.hero-foot i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
}

/* Intro */

.intro {
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(520px, 1.35fr);
  gap: 8vw;
}

.section-index {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  padding-top: 14px;
  text-transform: uppercase;
}

.section-index span {
  color: rgba(24, 34, 28, 0.42);
}

.intro-statement > p:first-child {
  max-width: 980px;
  margin-bottom: 52px;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.054em;
  line-height: 1.04;
}

.intro-statement em {
  color: var(--moss);
  font-family: var(--serif);
  font-weight: 400;
}

.intro-note {
  max-width: 600px;
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 300;
}

/* Shared headings */

.work {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(600px, 1.2fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(60px, 7vw, 104px);
}

.section-heading h2,
.directory-intro h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(3.2rem, 5.8vw, 6rem);
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 300;
}

/* Projects */

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

.project-card {
  position: relative;
  display: flex;
  min-height: 630px;
  overflow: hidden;
  grid-column: span 4;
  flex-direction: column;
  border: 1px solid rgba(24, 34, 28, 0.15);
  background: var(--paper-light);
  color: var(--ink);
  padding: 24px;
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.3, 1), box-shadow 280ms ease;
}

.project-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(24, 34, 28, 0.13);
}

.project-card--wide {
  min-height: 750px;
  grid-column: span 7;
}

.project-card--side {
  min-height: 750px;
  grid-column: span 5;
}

.project-topline {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.project-topline > span:first-child {
  opacity: 0.6;
}

.project-open {
  transition: transform 180ms ease;
}

.project-card:hover .project-open {
  transform: translate(3px, -3px);
}

.project-copy {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.project-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.3vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.project-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
}

.project-card--canna {
  background: #202a26;
  color: #f4f8f5;
}

.project-card--canna::before {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(103, 185, 153, 0.12);
  content: "";
  filter: blur(70px);
}

.project-card--canna .project-copy {
  width: 54%;
}

.project-card--canna .project-copy h3 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
}

.project-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.project-wordmark--canna img {
  width: 40px;
  height: 40px;
}

.project-wordmark--canna span {
  color: #f5f7f6;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.035em;
}

.project-wordmark--canna strong {
  color: #7fcca9;
  font-weight: 700;
}

.canna-ui {
  position: absolute;
  z-index: 2;
  top: 24%;
  right: -8%;
  width: 55%;
  overflow: hidden;
  border: 1px solid rgba(127, 204, 169, 0.28);
  border-radius: 12px;
  background: #151b19;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(-3deg);
  transition: transform 350ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.project-card--canna:hover .canna-ui {
  transform: rotate(-1deg) translate(-8px, -5px);
}

.canna-bar {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #2c3733;
  background: #252d2a;
  padding: 0 12px;
}

.canna-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56605c;
}

.canna-bar span {
  margin-left: auto;
  color: #acb5b1;
  font-size: 0.49rem;
}

.canna-body {
  display: grid;
  min-height: 290px;
  grid-template-columns: 72px 1fr;
}

.canna-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid #2c3733;
  background: #1c2321;
  padding: 23px 15px;
}

.canna-nav b {
  width: 36px;
  height: 5px;
  border-radius: 4px;
  background: #4e5955;
}

.canna-nav b:nth-child(2) {
  background: #67b999;
}

.canna-main {
  padding: 22px 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.metric-row i {
  height: 48px;
  border: 1px solid #34413c;
  border-radius: 5px;
  background: #242d29;
}

.calendar-head,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.calendar-head span {
  border: 1px solid #303b37;
  border-right: 0;
  color: #6f7b76;
  font-size: 0.46rem;
  padding: 6px;
}

.calendar-grid {
  position: relative;
  height: 128px;
}

.calendar-grid > span {
  border-right: 1px solid #303b37;
  border-bottom: 1px solid #303b37;
  border-left: 1px solid #303b37;
}

.calendar-grid > span:not(:first-child) {
  border-left: 0;
}

.event {
  position: absolute;
  height: 8px;
  border-radius: 6px;
}

.event--one {
  top: 24px;
  left: 8%;
  width: 42%;
  background: #67b999;
}

.event--two {
  top: 55px;
  left: 35%;
  width: 50%;
  background: #5a9bc6;
}

.event--three {
  top: 86px;
  left: 17%;
  width: 30%;
  background: #d2a65c;
}

.project-card--sky {
  background: #121411;
  color: #f1e1b9;
}

.project-card--sky .project-copy p {
  color: rgba(241, 225, 185, 0.7);
}

.sky-visual {
  position: relative;
  display: grid;
  min-height: 390px;
  flex: 1;
  place-items: center;
}

.sky-visual::before,
.sky-visual::after {
  position: absolute;
  border: 1px solid rgba(205, 165, 98, 0.27);
  border-radius: 50%;
  content: "";
}

.sky-visual::before {
  width: 82%;
  aspect-ratio: 1;
}

.sky-visual::after {
  width: 58%;
  aspect-ratio: 1;
}

.sky-grid {
  position: absolute;
  inset: 12% 2%;
  background-image:
    linear-gradient(rgba(205, 165, 98, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 165, 98, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  clip-path: circle(43% at 50% 50%);
}

.sky-visual img {
  position: relative;
  z-index: 2;
  width: min(62%, 260px);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.35));
  transition: transform 400ms ease;
}

.project-card--sky:hover .sky-visual img {
  transform: scale(1.03) translateY(-4px);
}

.sky-coordinate {
  position: absolute;
  right: 0;
  bottom: 7%;
  color: rgba(241, 225, 185, 0.45);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
}

.project-card--iching {
  background: #d9cdb8;
}

.iching-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(24, 34, 28, 0.16);
}

.iching-visual::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: 1px;
  background: rgba(24, 34, 28, 0.16);
  content: "";
}

.iching-visual > span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(6rem, 10vw, 9rem);
  line-height: 1;
  text-align: center;
}

.iching-visual small {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: rgba(24, 34, 28, 0.55);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hexagram {
  display: flex;
  width: 102px;
  flex-direction: column;
  gap: 12px;
  justify-self: center;
}

.hexagram i {
  height: 7px;
  background: var(--ink);
}

.hexagram i.broken {
  background: linear-gradient(90deg, var(--ink) 0 43%, transparent 43% 57%, var(--ink) 57% 100%);
}

.project-card--tone {
  background: #f5f4f0;
}

.tone-visual {
  display: flex;
  min-height: 310px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.tone-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0 12px;
  margin-bottom: 24px;
}

.tone-label b {
  grid-row: span 2;
  color: #6557d9;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.tone-label span {
  font-size: 1rem;
  font-weight: 700;
}

.tone-label i {
  color: rgba(24, 34, 28, 0.5);
  font-size: 0.52rem;
  font-style: normal;
  text-transform: uppercase;
}

.keys {
  position: relative;
  display: grid;
  height: 140px;
  grid-template-columns: repeat(7, 1fr);
}

.key {
  border: 1px solid rgba(24, 34, 28, 0.22);
  border-right: 0;
  background: #fff;
}

.key:last-of-type {
  border-right: 1px solid rgba(24, 34, 28, 0.22);
}

.key--active::after {
  display: block;
  width: 9px;
  height: 9px;
  margin: 112px auto 0;
  border-radius: 50%;
  background: #6557d9;
  content: "";
}

.black {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 9.5%;
  height: 82px;
  border-radius: 0 0 3px 3px;
  background: var(--ink);
}

.black--one { left: 9.5%; }
.black--two { left: 24%; }
.black--three { left: 52.2%; }
.black--four { left: 66.8%; }
.black--five { left: 81%; }

.project-card--diamond {
  background: #19244d;
  color: #f5f7ff;
}

.diamond-visual {
  display: flex;
  min-height: 310px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.diamond-visual::before {
  position: absolute;
  top: 12%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(93, 177, 255, 0.17), transparent 64%);
  content: "";
}

.diamond-metrics {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 16px;
  margin-bottom: 26px;
}

.diamond-metrics span {
  grid-column: 1 / -1;
  color: rgba(245, 247, 255, 0.55);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.diamond-metrics b {
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -0.045em;
}

.diamond-metrics i {
  color: #7fe0b1;
  font-size: 0.7rem;
  font-style: normal;
}

.diamond-visual svg {
  width: 100%;
  height: 120px;
  overflow: visible;
}

.chart-fill {
  fill: rgba(93, 177, 255, 0.12);
}

.chart-line {
  fill: none;
  stroke: #5db1ff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.project-card--shopper {
  background: #eceef0;
}

.shopper-visual {
  display: flex;
  min-height: 310px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.shopper-logo {
  width: min(29%, 116px);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(24, 34, 28, 0.1);
}

.sundial-logo {
  width: min(35%, 142px);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(24, 34, 28, 0.1);
}

.shopper-plus {
  color: rgba(24, 34, 28, 0.38);
  font-family: var(--serif);
  font-size: 2rem;
}

/* Directory */

.directory {
  background: var(--ink);
  color: var(--paper-light);
}

.directory-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.28fr);
  gap: 9vw;
}

.directory-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.directory-intro h2 {
  font-size: clamp(3.3rem, 5.5vw, 5.7rem);
}

.directory-intro h2 em {
  color: var(--fern);
}

.directory-intro > p:last-child {
  max-width: 390px;
  margin-top: 34px;
  color: rgba(250, 248, 242, 0.58);
  font-size: 0.96rem;
  font-weight: 300;
}

.project-links {
  border-top: 1px solid var(--line-light);
}

.project-links a {
  display: grid;
  min-height: 104px;
  grid-template-columns: 45px minmax(220px, 1.1fr) minmax(160px, 0.8fr) 22px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, padding 180ms ease;
}

.project-links a:hover {
  color: #a9c5ad;
  padding-inline: 8px;
}

.project-links .link-number {
  color: rgba(250, 248, 242, 0.34);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.project-links strong {
  font-size: clamp(1.15rem, 1.9vw, 1.65rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.project-links strong + span {
  color: rgba(250, 248, 242, 0.5);
  font-size: 0.72rem;
}

.project-links i {
  font-style: normal;
  transition: transform 180ms ease;
}

.project-links a:hover i {
  transform: translate(3px, -3px);
}

/* Practice */

.practice {
  background: #a6b09e;
}

.section-heading--practice h2 em {
  color: var(--moss-deep);
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24, 34, 28, 0.32);
}

.practice-list article {
  position: relative;
  min-height: 510px;
  border-right: 1px solid rgba(24, 34, 28, 0.32);
  padding: 23px 42px 30px 0;
}

.practice-list article:not(:first-child) {
  padding-left: 42px;
}

.practice-list article:last-child {
  border-right: 0;
  padding-right: 0;
}

.practice-list article > span {
  color: rgba(24, 34, 28, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.practice-list h3 {
  margin: 46px 0 28px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.practice-list p {
  max-width: 370px;
  margin-bottom: 0;
  color: rgba(24, 34, 28, 0.7);
  font-size: 0.83rem;
  font-weight: 300;
}

.practice-icon {
  position: relative;
  width: 124px;
  height: 124px;
  margin-top: 58px;
}

.practice-icon--product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 7px;
  transform: rotate(8deg);
}

.practice-icon--product i {
  border: 1px solid var(--ink);
  background: rgba(243, 239, 229, 0.18);
}

.practice-icon--product i:first-child {
  grid-row: span 2;
  background: var(--ink);
}

.practice-icon--identity i:first-child {
  position: absolute;
  inset: 2px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.practice-icon--identity i:last-child {
  position: absolute;
  inset: 24px;
  transform: rotate(45deg);
  background: var(--clay);
}

.practice-icon--land i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 46% 54% 58% 42%;
}

.practice-icon--land i:nth-child(2) { inset: 15px; }
.practice-icon--land i:nth-child(3) { inset: 31px; }
.practice-icon--land i:nth-child(4) { inset: 47px; background: var(--lake); }

/* About */

.about {
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.75fr) minmax(600px, 1.25fr);
  align-items: center;
  gap: 9vw;
}

.about-mark {
  position: relative;
  display: grid;
  width: min(100%, 500px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.about-mark::before { inset: 10%; }
.about-mark::after { inset: 24%; }

.about-mark img {
  position: relative;
  z-index: 2;
  width: 44%;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(24, 34, 28, 0.18);
}

.about-mark span {
  position: absolute;
  right: 4%;
  bottom: 15%;
  transform: rotate(-8deg);
  background: var(--clay);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 0.83rem;
  font-style: italic;
  padding: 9px 14px;
}

.about-copy h2 em {
  color: var(--moss);
}

.about-lead {
  margin: 48px 0 24px;
  font-size: clamp(1.2rem, 1.85vw, 1.6rem);
  font-weight: 300;
  line-height: 1.55;
}

.about-copy > p:last-child {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Contact */

.contact {
  background: var(--paper-light);
  padding-top: 0;
}

.contact-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--clay);
  color: var(--paper-light);
  padding: clamp(48px, 7vw, 98px);
}

.contact-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  font-size: clamp(3.8rem, 7.1vw, 7.4rem);
}

.contact-panel h2 em {
  color: #f1d5c8;
}

.contact-panel > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 52px;
  border-bottom: 1px solid rgba(250, 248, 242, 0.65);
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  padding-bottom: 8px;
}

.contact-panel > a span {
  transition: transform 180ms ease;
}

.contact-panel > a:hover span {
  transform: translate(4px, -4px);
}

.contact-rings {
  position: absolute;
  right: -5%;
  bottom: -38%;
  width: 56%;
  aspect-ratio: 1;
}

.contact-rings i {
  position: absolute;
  border: 1px solid rgba(250, 248, 242, 0.24);
  border-radius: 50%;
}

.contact-rings i:nth-child(1) { inset: 0; }
.contact-rings i:nth-child(2) { inset: 12%; }
.contact-rings i:nth-child(3) { inset: 26%; }
.contact-rings i:nth-child(4) { inset: 42%; background: rgba(250, 248, 242, 0.08); }

/* Footer */

.site-footer {
  background: var(--paper-light);
  padding-bottom: 28px;
}

.footer-top {
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr 1.15fr 0.6fr;
  align-items: start;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 46px;
}

.footer-top > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 36px;
}

.footer-links a {
  font-size: 0.72rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--clay);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(24, 34, 28, 0.56);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  padding-top: 22px;
  text-transform: uppercase;
}

/* Reveal motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.projects-grid [data-reveal]:nth-child(2),
.practice-list [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.projects-grid [data-reveal]:nth-child(3),
.practice-list [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

@media (max-width: 1120px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-contact {
    margin-left: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 730px;
    grid-template-columns: minmax(400px, 0.9fr) minmax(430px, 1.1fr);
    gap: 16px;
  }

  .field-note--two {
    left: 0;
  }

  .section-heading {
    grid-template-columns: minmax(520px, 1.1fr) minmax(280px, 0.6fr);
    gap: 5vw;
  }

  .project-card {
    min-height: 600px;
  }

  .project-card--wide,
  .project-card--side {
    min-height: 690px;
  }

  .practice-list article {
    padding-right: 26px;
  }

  .practice-list article:not(:first-child) {
    padding-left: 26px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section-pad {
    padding-block: 100px;
  }

  .header-inner {
    min-height: 74px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle > span,
  .menu-toggle > span::before {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle > span::before {
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] > span {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span::before {
    transform: rotate(-90deg);
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    transition: max-height 320ms ease;
  }

  .mobile-nav.is-open {
    max-height: 520px;
  }

  .mobile-nav-inner {
    border-top: 1px solid var(--line);
    padding-block: 10px 24px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 59px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 300;
  }

  .mobile-nav a span {
    color: rgba(24, 34, 28, 0.42);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 110px 58px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11vw, 6.2rem);
  }

  .landscape-mark {
    width: min(100%, 620px);
    margin: -18px auto 0;
    justify-self: center;
  }

  .hero-foot {
    min-height: 76px;
  }

  .intro-grid,
  .section-heading,
  .directory-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 54px;
  }

  .section-heading {
    gap: 38px;
  }

  .section-heading > p {
    margin-left: auto;
  }

  .project-card,
  .project-card--wide,
  .project-card--side {
    min-height: 620px;
    grid-column: span 6;
  }

  .project-card--canna {
    grid-column: 1 / -1;
  }

  .project-card--canna .project-copy {
    width: 50%;
  }

  .project-card--canna .canna-ui {
    width: 58%;
  }

  .project-copy h3 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .directory-grid {
    gap: 70px;
  }

  .directory-intro {
    position: static;
  }

  .practice-list {
    grid-template-columns: 1fr;
  }

  .practice-list article,
  .practice-list article:not(:first-child),
  .practice-list article:last-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 150px 1fr;
    align-items: start;
    gap: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 34, 28, 0.32);
    padding: 36px 0;
  }

  .practice-list article:last-child {
    border-bottom: 0;
  }

  .practice-icon {
    width: 104px;
    height: 104px;
    margin: 0;
  }

  .practice-list h3 {
    margin: 0 0 20px;
  }

  .practice-list p {
    grid-column: 3;
  }

  .about-grid {
    gap: 80px;
  }

  .about-mark {
    width: min(78vw, 500px);
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section-pad {
    padding-block: 78px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .hero-grid {
    padding-block: 94px 46px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .landscape-mark {
    width: calc(100% + 18px);
    margin-left: -9px;
  }

  .field-note--one {
    top: 7%;
    right: 1%;
  }

  .field-note--two {
    bottom: 8%;
  }

  .hero-foot {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .hero-foot > span {
    display: none;
  }

  .intro-statement > p:first-child {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .section-heading h2,
  .directory-intro h2,
  .about-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .projects-grid {
    display: block;
  }

  .project-card,
  .project-card--wide,
  .project-card--side {
    min-height: 590px;
    margin-bottom: 14px;
    padding: 20px;
  }

  .project-card--canna {
    min-height: 720px;
  }

  .project-card--canna .canna-ui {
    top: 22%;
    right: -9%;
    width: 88%;
  }

  .project-card--canna .project-copy {
    width: 100%;
  }

  .project-card--canna .project-copy h3 {
    font-size: 2.8rem;
  }

  .canna-body {
    min-height: 245px;
    grid-template-columns: 56px 1fr;
  }

  .canna-nav {
    padding-inline: 10px;
  }

  .canna-nav b {
    width: 28px;
  }

  .project-topline {
    gap: 10px;
    font-size: 0.52rem;
  }

  .sky-visual,
  .tone-visual,
  .iching-visual,
  .diamond-visual,
  .shopper-visual {
    min-height: 285px;
  }

  .project-copy h3 {
    font-size: 2.65rem;
  }

  .project-links a {
    min-height: 95px;
    grid-template-columns: 34px 1fr 20px;
    gap: 10px;
  }

  .project-links strong + span {
    display: none;
  }

  .practice-list article,
  .practice-list article:not(:first-child),
  .practice-list article:last-child {
    grid-template-columns: 34px 90px 1fr;
    gap: 18px;
  }

  .practice-icon {
    width: 72px;
    height: 72px;
  }

  .practice-list h3 {
    font-size: 2.1rem;
  }

  .practice-list p {
    grid-column: 3;
    font-size: 0.76rem;
  }

  .about-mark {
    width: 100%;
  }

  .about-lead {
    margin-top: 34px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-panel {
    min-height: 520px;
    padding: 44px 26px;
  }

  .contact-panel h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .contact-panel > a {
    gap: 14px;
    font-size: 0.8rem;
  }

  .contact-rings {
    right: -35%;
    bottom: -9%;
    width: 100%;
  }

  .footer-top {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 44px;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
