:root {
  --paper: #f7f5f0;
  --paper-deep: #e7ddd8;
  --ink: #332823;
  --muted: #664131;
  --line: #ded4ce;
  --forest: #2f3b34;
  --clay: #c75626;
  --stone: #d9d4c9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(51, 40, 35, 0.12);
  --radius: 8px;
  --max: 1180px;
}

@font-face {
  font-family: Folito;
  src: url("assets/Folito-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

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

@font-face {
  font-family: Folito;
  src: url("assets/folito-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Folito, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

button,
input {
  font: inherit;
}

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

.logo-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link:focus {
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  padding: 0 2.5rem;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 245, 240, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 22px;
  color: currentColor;
  line-height: 1;
}

.logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.65rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.primary-nav a,
.header-cta,
.text-link {
  position: relative;
}

.primary-nav a::after,
.header-cta::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.header-cta:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 42%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 17, 0.7) 0%, rgba(17, 19, 17, 0.34) 48%, rgba(17, 19, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 19, 17, 0.65) 0%, rgba(17, 19, 17, 0.08) 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: calc(100% - 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 0 3rem;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .eyebrow,
.showroom .eyebrow {
  color: var(--paper-deep);
}

.hero-logo-wrap {
  margin-top: 0.8rem;
  line-height: 0.95;
}

.logo-mark--hero {
  width: min(100%, 500px);
  height: auto;
}

.hero__lead {
  width: 100%;
  max-width: 620px;
  margin-top: 1.35rem;
  font-family: "PT Serif", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--forest);
  border-color: var(--forest);
}

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

.button--light:hover {
  background: var(--paper-deep);
  border-color: var(--paper-deep);
}

.hero__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 920px;
  margin-top: 4.5rem;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero__details div {
  min-height: 112px;
  padding: 1.1rem;
  background: rgba(22, 23, 20, 0.4);
  backdrop-filter: blur(10px);
}

.hero__details dt,
.product-card p,
.journal-card p,
.site-footer h2,
.newsletter label {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero__details dd {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.45;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.proof-band div {
  min-height: 160px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 600;
}

.proof-band p {
  margin-top: 2rem;
  max-width: 260px;
  font-family: "PT Serif", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.section {
  width: calc(100% - 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 0;
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 5rem;
  align-items: start;
}

.section h2,
.founder-band h2,
.service-section h2,
.showroom h2,
.sustainability h2 {
  margin-top: 0.65rem;
  font-family: "PT Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

.section__copy p + p {
  margin-top: 1rem;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section__heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.text-link--reverse {
  color: var(--white);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1rem;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  color: var(--white);
}

.pathway-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.pathway-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.pathway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 13, 12, 0.72), rgba(12, 13, 12, 0.08) 58%);
}

.pathway-card:hover img {
  transform: scale(1.035);
}

.pathway-card span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-family: "PT Serif", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.brand-panel {
  display: grid;
  grid-template-rows: 360px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-panel img {
  height: 100%;
  object-fit: cover;
}

.brand-panel div {
  padding: 1.35rem;
}

.brand-panel h3,
.product-card h3,
.journal-card h3 {
  margin-top: 0.35rem;
  font-family: "PT Serif", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.16;
}

.brand-panel p:not(.eyebrow) {
  margin: 0.8rem 0 1.1rem;
  color: var(--muted);
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  min-height: 620px;
  background: var(--forest);
  color: var(--white);
}

.founder-band__image {
  height: 100%;
}

.founder-band__image img {
  height: 100%;
  object-fit: cover;
}

.founder-band__copy {
  width: calc(100% - 3rem);
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 0;
}

.founder-band__copy p:not(.eyebrow) {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: center;
}

.service-section__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-section__content p:not(.eyebrow) {
  margin-top: 1.1rem;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 1.7rem;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1.25rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--clay);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-deep);
}

.product-card div {
  min-height: 150px;
  padding: 1rem;
}

.product-card p,
.journal-card p {
  color: var(--clay);
}

.product-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.showroom {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.showroom > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.showroom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 20, 18, 0.76), rgba(18, 20, 18, 0.2));
}

.showroom__content {
  position: relative;
  z-index: 1;
  width: calc(100% - 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 0;
}

.showroom__content p:not(.eyebrow) {
  max-width: 560px;
  margin: 1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.sustainability {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 4rem;
  align-items: start;
}

.sustainability p:last-child {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.journal-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.journal-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.journal-card p,
.journal-card h3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.journal-card p {
  margin-top: 1rem;
}

.journal-card h3 {
  min-height: 94px;
  margin-bottom: 1.15rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.7fr) minmax(160px, 0.55fr) minmax(260px, 0.9fr);
  gap: 2.5rem;
  padding: 4rem 2.5rem;
  background: var(--ink);
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.brand--footer {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--white);
}

.site-footer h2,
.newsletter label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--white);
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.newsletter input,
.newsletter button {
  min-height: 46px;
  border: 0;
  color: var(--white);
  background: transparent;
}

.newsletter input {
  width: 100%;
  outline: 0;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.newsletter button {
  cursor: pointer;
  font-weight: 600;
}

.newsletter__message {
  min-height: 24px;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: none;
    place-content: center;
    gap: 1.5rem;
    background: var(--paper);
    color: var(--ink);
    font-family: "PT Serif", Georgia, serif;
    font-size: 2rem;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .logo-mark--hero {
    width: min(100%, 420px);
  }

  .hero__lead {
    font-size: 1.4rem;
  }

  .hero__details,
  .proof-band,
  .section--intro,
  .brand-grid,
  .founder-band,
  .service-section,
  .sustainability,
  .journal-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section--intro,
  .service-section,
  .sustainability {
    gap: 2rem;
  }

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

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

  .founder-band__image {
    height: 480px;
  }
}

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

  .site-header {
    min-height: 66px;
    padding: 0 1rem;
  }

  .brand {
    width: 130px;
    height: 19px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__image {
    object-position: center;
  }

  .hero__content,
  .section,
  .founder-band__copy,
  .showroom__content {
    width: calc(100% - 2rem);
    max-width: var(--max);
  }

  .hero__content {
    max-width: 358px;
    margin-left: 1rem;
    margin-right: auto;
  }

  .logo-mark--hero {
    width: min(100%, 330px);
  }

  .hero__lead {
    font-size: 1.22rem;
  }

  .hero__details {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section h2,
  .founder-band h2,
  .service-section h2,
  .showroom h2,
  .sustainability h2 {
    font-size: 2.18rem;
  }

  .section__heading--split {
    display: grid;
    align-items: start;
  }

  .pathway-grid,
  .product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .pathway-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .brand-panel {
    grid-template-rows: 280px 1fr;
  }

  .founder-band__image {
    height: 360px;
  }

  .showroom {
    min-height: 700px;
  }

  .site-footer {
    padding: 3rem 1rem;
  }

  .newsletter div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    border-bottom: 0;
  }

  .newsletter input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .newsletter button {
    justify-content: flex-start;
  }
}
