:root {
  --limewash: #f6f4ee;
  --limestone: #e5e2d6;
  --sage-mist: #c6cbbc;
  --sage: #99b084;
  --sea: #5e7a76;
  --sea-text: #4c6965;
  --clay: #b98e74;
  --clay-text: #825a46;
  --slate: #2b3130;
  --slate-soft: #505957;
  --line: rgba(43, 49, 48, 0.22);
  --serif: "Marcellus", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4.5vw, 5rem);
  --content-width: 90rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  padding-top: 6.25rem;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--limewash);
  color: var(--slate);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

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

section[id] {
  scroll-margin-top: 5.5rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--slate);
  color: var(--limewash);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, var(--content-width));
  min-height: 6.25rem;
  margin: 0 auto;
  padding: 1rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: min-height 180ms ease, padding 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.65rem;
  height: 3.25rem;
  border: 1px solid var(--slate);
  border-radius: 1.35rem 1.35rem 0 0;
  background: var(--slate);
  display: grid;
  place-items: center;
  transition: width 180ms ease, height 180ms ease, border-radius 180ms ease;
}

.brand-mark img {
  display: none;
}

.brand-mark::before {
  width: 70%;
  height: 70%;
  background: var(--limestone);
  content: "";
  transform: translateY(5%);
  -webkit-mask: url("images/cultivated-muse-monogram.svg") center / contain no-repeat;
  mask: url("images/cultivated-muse-monogram.svg") center / contain no-repeat;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.015em;
  transition: font-size 180ms ease;
}

.site-header.is-compact .header-inner {
  min-height: 4.5rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.site-header.is-compact .brand-mark {
  width: 2.15rem;
  height: 2.6rem;
  border-radius: 1.1rem 1.1rem 0 0;
}

.site-header.is-compact .brand-name {
  font-size: 1.05rem;
}

.nav-list {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a:hover,
.footer-links a:hover {
  color: var(--sea-text);
}

.hero {
  position: relative;
  min-height: min(52rem, calc(100vh - 6.25rem));
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(33rem, 1.8fr) minmax(12rem, 1fr);
  align-items: stretch;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2.75rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem) clamp(3.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  text-align: center;
}

.eyebrow {
  margin-bottom: 1.6rem;
  color: var(--sea-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 7.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero-word {
  min-height: 0.88em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}

.hero-word + .hero-word {
  margin-top: -0.03em;
}

.hero-word > span {
  display: block;
}

.hero-initial {
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-initial-c {
  height: 0.91em;
  margin-right: -0.055em;
  margin-bottom: -0.015em;
}

.hero-initial-m {
  height: 0.94em;
  margin-right: -0.14em;
  margin-bottom: -0.025em;
}

.hero-rule {
  width: 6.5rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: var(--line);
  display: grid;
  place-items: center;
}

.hero-rule span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sage);
}

.hero-statement {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.hero-intro {
  max-width: 39rem;
  margin: 0 auto 0.8rem;
  color: var(--slate-soft);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.hero-intro:last-child {
  margin-bottom: 0;
}

.hero-architecture {
  position: relative;
  min-width: 0;
}

.arch-fill,
.arch-line {
  position: absolute;
  border: 1px solid var(--line);
}

.hero-architecture-left .arch-fill {
  right: -0.5rem;
  bottom: -1px;
  width: min(22vw, 19rem);
  height: 78%;
  border-bottom: 0;
  border-radius: 10rem 10rem 0 0;
  background: var(--limestone);
}

.hero-architecture-left .arch-line {
  right: 1.8rem;
  bottom: -1px;
  width: min(24vw, 21rem);
  height: 84%;
  border-bottom: 0;
  border-radius: 11rem 11rem 0 0;
}

.hero-architecture-right .arch-fill {
  left: -0.5rem;
  top: 0;
  bottom: auto;
  width: min(20vw, 18rem);
  height: 63%;
  border-top: 0;
  border-radius: 0 0 9rem 9rem;
  background: var(--sage-mist);
}

.hero-architecture-right .arch-line {
  left: 1.8rem;
  top: 0;
  bottom: auto;
  width: min(22vw, 20rem);
  height: 69%;
  border-top: 0;
  border-radius: 0 0 10rem 10rem;
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(4.25rem, 6.5vw, 6.25rem) var(--page-pad);
}

.about {
  position: relative;
  padding-top: clamp(3.75rem, 5vw, 4.75rem);
  padding-bottom: clamp(3.75rem, 5vw, 4.75rem);
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  grid-template-areas:
    "index heading"
    ". copy";
  gap: clamp(2.5rem, 4vw, 3.75rem) clamp(2rem, 4vw, 4rem);
  align-items: start;
  overflow: hidden;
}

.about::before,
.about::after {
  position: absolute;
  bottom: -1px;
  border-bottom: 0;
  content: "";
}

.about::before {
  left: -10rem;
  width: 20rem;
  height: 22rem;
  border: 1px solid rgba(94, 122, 118, 0.38);
  border-radius: 10rem 10rem 0 0;
}

.about::after {
  left: -4rem;
  width: 13rem;
  height: 17rem;
  border: 1px solid rgba(43, 49, 48, 0.1);
  border-radius: 6.5rem 6.5rem 0 0;
  background: var(--clay);
  opacity: 0.72;
}

.about .section-index {
  grid-area: index;
}

.about-heading {
  position: relative;
  z-index: 1;
  grid-area: heading;
  min-height: 0;
}

.section-index,
.principle-number {
  color: var(--clay-text);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.about h2,
.philosophy h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.about-copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  max-width: none;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  color: var(--slate-soft);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.62;
}

.about-copy p {
  margin-bottom: 0.7rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy .about-closing {
  margin-top: 1.25rem;
  color: var(--slate);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.product {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(30rem, 1.18fr) minmax(24rem, 0.82fr);
  background: var(--slate);
  color: var(--limewash);
}

.product-copy {
  max-width: 44rem;
  margin-left: auto;
  padding: clamp(3.75rem, 5.5vw, 5.5rem) clamp(2rem, 5vw, 5rem) clamp(3.75rem, 5.5vw, 5.5rem) var(--page-pad);
}

.product .eyebrow {
  color: var(--sage-mist);
}

.product h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-wrap: balance;
}

.product-copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(246, 244, 238, 0.72);
}

.product-copy .product-lead {
  margin-bottom: 1.75rem;
  color: var(--limewash) !important;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.45;
  text-wrap: pretty;
}

.button-link {
  min-height: 3.25rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(246, 244, 238, 0.48);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.button-link[href]:hover {
  background: var(--limewash);
  color: var(--slate);
}

.button-link-pending {
  cursor: default;
}

.product-visual {
  position: relative;
  min-height: 37rem;
  padding: clamp(2.25rem, 4vw, 4rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--limestone);
  color: var(--slate);
}

.visual-arch {
  position: absolute;
  top: 9%;
  right: auto;
  bottom: 0;
  left: 70%;
  width: min(90%, 33rem);
  border: 1px solid rgba(94, 122, 118, 0.34);
  border-bottom: 0;
  border-radius: 16.5rem 16.5rem 0 0;
  background: var(--sage-mist);
  transform: translateX(-50%);
}

.visual-arch::before {
  position: absolute;
  inset: -2.25rem 1.5rem 0 -4rem;
  border: 1px solid rgba(43, 49, 48, 0.2);
  border-bottom: 0;
  border-radius: 19rem 19rem 0 0;
  content: "";
}

.liana-image {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 34rem;
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  display: block;
}

.philosophy {
  position: relative;
  display: block;
  padding-bottom: 0;
  overflow: hidden;
}

.philosophy-intro {
  position: relative;
  min-height: clamp(8.5rem, 12.5vw, 11.5rem);
  padding-right: min(29vw, 27rem);
}

.philosophy-intro::before,
.philosophy-intro::after {
  position: absolute;
  border-bottom: 0;
  content: "";
}

.philosophy-intro::before {
  top: auto;
  bottom: -31rem;
  right: -12rem;
  width: min(27vw, 28rem);
  height: 41.5rem;
  border: 1px solid rgba(94, 122, 118, 0.42);
  border-radius: 14rem 14rem 0 0;
}

.philosophy-intro::after {
  top: auto;
  right: 1rem;
  bottom: -31rem;
  width: min(17vw, 17rem);
  height: 38.5rem;
  border: 1px solid rgba(185, 142, 116, 0.34);
  border-radius: 8.5rem 8.5rem 0 0;
  background: rgba(185, 142, 116, 0.42);
}

.principles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 75%;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.principles li {
  padding: clamp(1.75rem, 2.6vw, 2.5rem) clamp(1.5rem, 2.6vw, 2.75rem) 2.25rem;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem 0.75rem;
  align-content: start;
}

.principles li:first-child {
  padding-left: 0;
}

.principles li:last-child {
  padding-right: clamp(1.5rem, 2.6vw, 2.75rem);
  border-right: 1px solid var(--line);
}

.principles h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
}

.principles p {
  margin-bottom: 0;
  color: var(--slate-soft);
  font-size: 0.9rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.principle-copy {
  grid-column: 1 / -1;
}

.principle-copy p + p {
  margin-top: 0.58rem;
}

.principle-copy .principle-emphasis {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--sage);
  color: var(--sea);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.values {
  position: relative;
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(34rem, 1.35fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  padding-top: clamp(3.75rem, 5vw, 5rem);
  padding-bottom: clamp(3.75rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--slate);
  color: var(--limewash);
}

.values::before {
  position: absolute;
  bottom: -11rem;
  left: -3%;
  width: min(29vw, 25rem);
  height: 28rem;
  border: 1px solid rgba(229, 226, 214, 0.14);
  border-bottom: 0;
  border-radius: 13rem 13rem 0 0;
  content: "";
}

.values::after {
  position: absolute;
  bottom: -12rem;
  left: 8%;
  width: min(23vw, 19rem);
  height: 24rem;
  border: 1px solid rgba(198, 203, 188, 0.08);
  border-bottom: 0;
  border-radius: 10rem 10rem 0 0;
  background: rgba(94, 122, 118, 0.16);
  content: "";
}

.values .eyebrow {
  color: var(--sage-mist);
}

.values .principle-number {
  color: var(--sage-mist);
}

.values-intro {
  position: sticky;
  top: 3rem;
  z-index: 1;
  align-self: start;
}

.values h2,
.standard h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.values-intro h2 {
  margin-bottom: 0;
}

.values-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value {
  padding: 1.35rem clamp(1.5rem, 2.5vw, 2.5rem);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-content: start;
}

.value:nth-child(odd):not(:last-child) {
  padding-left: 0;
}

.value:nth-child(even) {
  padding-right: 0;
}

.value h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.value p {
  max-width: 39rem;
  margin-bottom: 0.5rem;
  color: rgba(246, 244, 238, 0.7);
  font-size: 0.9rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.value p:last-child {
  margin-bottom: 0;
}

.standard {
  position: relative;
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(25rem, 1.15fr);
  grid-template-areas:
    "heading heading"
    "photo copy";
  column-gap: clamp(3.5rem, 7vw, 7rem);
  row-gap: 2.5rem;
  overflow: hidden;
  background: var(--limestone);
}

.standard::before,
.standard::after {
  position: absolute;
  border-bottom: 0;
  content: "";
}

.standard::before {
  bottom: -12rem;
  left: -3%;
  width: min(27vw, 23rem);
  height: 25rem;
  border: 1px solid rgba(43, 49, 48, 0.2);
  border-radius: 12rem 12rem 0 0;
}

.standard::after {
  bottom: -12rem;
  left: 8%;
  width: min(21vw, 17rem);
  height: 21rem;
  border: 1px solid rgba(43, 49, 48, 0.08);
  border-radius: 9rem 9rem 0 0;
  background: rgba(198, 203, 188, 0.48);
}

.standard-heading {
  position: relative;
  z-index: 1;
  grid-area: heading;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.founder-photo {
  position: relative;
  z-index: 1;
  grid-area: photo;
  width: min(100%, 15rem);
  aspect-ratio: 4 / 5;
  margin-left: auto;
  border: 1px solid rgba(43, 49, 48, 0.2);
  border-radius: 10rem 10rem 0 0;
  overflow: hidden;
  background: rgba(198, 203, 188, 0.72);
  display: grid;
  place-items: center;
}

.founder-photo span {
  color: rgba(43, 49, 48, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.standard-copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  max-width: 43rem;
  padding-right: max(0rem, calc((100vw - var(--content-width)) / 2));
  color: var(--slate-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-wrap: pretty;
}

.standard-copy p {
  margin-bottom: 0.75rem;
}

.standard-copy blockquote {
  margin: 1.8rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(185, 142, 116, 0.52);
  color: var(--slate);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.25;
}

.standard .eyebrow {
  color: var(--clay-text);
}

.contact {
  position: relative;
  min-height: 30rem;
  padding: 5rem var(--page-pad);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
}

.contact-arch {
  position: absolute;
  right: -4rem;
  bottom: -1px;
  width: min(27vw, 22rem);
  height: 82%;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 11rem 11rem 0 0;
  background: var(--limestone);
}

.contact-arch::before {
  position: absolute;
  top: -2.25rem;
  right: 2.25rem;
  bottom: 0;
  left: -2.25rem;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 12rem 12rem 0 0;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  max-width: 48rem;
  margin-left: max(0rem, calc((100vw - var(--content-width)) / 2));
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact-lead {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-wrap: pretty;
}

.contact-copy {
  max-width: 39rem;
  margin: 0 0 2rem;
  color: var(--slate-soft);
  text-wrap: pretty;
}

.email-link {
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  text-decoration-color: var(--clay);
}

.site-footer {
  width: min(100%, var(--content-width));
  min-height: 8rem;
  margin: 0 auto;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer-brand {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.copyright {
  margin: 0;
  color: var(--slate-soft);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .about::before {
    left: -9rem;
    width: 14.5rem;
    height: 18rem;
  }

  .about::after {
    left: -5rem;
    width: 10rem;
    height: 14rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 8rem minmax(25rem, 1fr) 8rem;
  }

  .about {
    grid-template-columns: 2rem 1fr;
    grid-template-areas:
      "index heading"
      ". copy";
    gap: 2.5rem;
  }

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

  .product {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .product-copy {
    padding-right: 3rem;
  }

  .product-visual {
    min-height: 35rem;
    padding: 3rem 2rem;
  }

  .philosophy {
    display: block;
  }

  .philosophy-intro {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 2.75rem;
  }

  .principles {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .principles li,
  .principles li:first-child,
  .principles li:last-child {
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles li:last-child {
    border-bottom: 0;
  }

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

  .values-intro {
    position: static;
  }

  .about::before,
  .about::after,
  .values::before,
  .values::after,
  .standard::before,
  .standard::after {
    display: block;
    pointer-events: none;
  }

  .about::before {
    bottom: -3rem;
    left: -7rem;
    width: 14rem;
    height: 19rem;
    border-radius: 7rem 7rem 0 0;
  }

  .about::after {
    bottom: -3rem;
    left: -2rem;
    width: 8rem;
    height: 14rem;
    border-radius: 4rem 4rem 0 0;
    opacity: 0.42;
  }

  .philosophy-intro::before,
  .philosophy-intro::after {
    display: block;
    pointer-events: none;
  }

  .philosophy-intro::before {
    right: -8rem;
    bottom: -21rem;
    width: 15rem;
    height: 30rem;
    border-radius: 7.5rem 7.5rem 0 0;
  }

  .philosophy-intro::after {
    right: -0.5rem;
    bottom: -21rem;
    width: 8.5rem;
    height: 26rem;
    border-radius: 4.25rem 4.25rem 0 0;
    background: rgba(185, 142, 116, 0.28);
  }

  .values::before {
    right: -7rem;
    bottom: -6rem;
    left: auto;
    width: 15rem;
    height: 22rem;
    border-radius: 7.5rem 7.5rem 0 0;
  }

  .values::after {
    right: -1.5rem;
    bottom: -6rem;
    left: auto;
    width: 8rem;
    height: 17rem;
    border-radius: 4rem 4rem 0 0;
  }

  .standard::before {
    bottom: -7rem;
    left: -8rem;
    width: 16rem;
    height: 22rem;
    border-radius: 8rem 8rem 0 0;
  }

  .standard::after {
    bottom: -7rem;
    left: -2rem;
    width: 9rem;
    height: 17rem;
    border-radius: 4.5rem 4.5rem 0 0;
    background: rgba(198, 203, 188, 0.3);
  }
}

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

  .product-copy {
    max-width: none;
    margin: 0;
    padding: 4.75rem var(--page-pad);
  }

  .product-visual {
    min-height: 38rem;
  }

  .standard {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "photo"
      "copy";
    gap: 2rem;
  }

  .standard-heading {
    max-width: none;
    margin: 0;
  }

  .founder-photo {
    width: min(72vw, 15rem);
    margin-left: 0;
  }

  .standard-copy {
    max-width: 42rem;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --page-pad: 1.35rem;
  }

  .header-inner {
    min-height: 5.3rem;
  }

  body {
    padding-top: 5.3rem;
  }

  .site-header.is-compact .header-inner {
    min-height: 4.35rem;
  }

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

  .brand-mark {
    width: 2.25rem;
    height: 2.8rem;
  }

  .nav-list {
    gap: 1rem;
  }

  .nav-list a {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 42rem;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 4.25rem var(--page-pad) 4.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .hero-architecture {
    position: absolute;
    inset: 0;
  }

  .hero-architecture-left .arch-fill {
    right: auto;
    left: -4rem;
    width: 11rem;
    height: 36%;
  }

  .hero-architecture-left .arch-line {
    right: auto;
    left: -2.5rem;
    width: 11.5rem;
    height: 40%;
  }

  .hero-architecture-right .arch-fill {
    right: -4rem;
    left: auto;
    width: 10rem;
    height: 25%;
  }

  .hero-architecture-right .arch-line {
    right: -2.5rem;
    left: auto;
    width: 10.5rem;
    height: 29%;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy";
    gap: 1.5rem;
  }

  .section-index {
    display: none;
  }

  .about-copy {
    padding-top: 0.5rem;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about::before {
    left: -13.25rem;
  }

  .about::after {
    left: -9rem;
  }

  .about-heading {
    min-height: 0;
  }

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

  .product-copy {
    margin: 0;
    padding: 4.75rem var(--page-pad);
  }

  .product h2 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .product-visual {
    min-height: 38rem;
    padding: 4rem var(--page-pad);
  }

  .visual-arch {
    right: auto;
    left: 64%;
    width: min(92%, 28rem);
    transform: translateX(-50%);
  }

  .liana-image {
    max-height: 34rem;
  }

  .philosophy {
    display: block;
  }

  .principles li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem 1rem;
  }

  .principles p {
    grid-column: 2;
  }

  .principle-copy {
    grid-column: 2;
  }

  .values {
    gap: 3.5rem;
  }

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

  .value {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .value,
  .value:nth-child(odd):not(:last-child),
  .value:nth-child(even),
  .value:last-child {
    grid-column: auto;
    padding: 1.4rem 0;
    border-right: 0;
  }

  .contact {
    min-height: 29rem;
  }

  .contact-arch {
    right: -7rem;
    bottom: -1px;
    width: 15rem;
    height: 64%;
  }

  .site-footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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

  .brand-name {
    display: none;
  }

  .nav-list {
    padding-top: 0.8rem;
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .button-link {
    width: 100%;
  }

  .liana-image {
    width: min(100%, 20rem);
    max-height: none;
  }

  .footer-links {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
