:root {
  --paper: #f6f0e8;
  --paper-soft: #eee4d8;
  --paper-deep: #e1d3c3;
  --stone: #b9aa99;
  --clay: #9b735f;
  --ink: #211f1d;
  --ink-soft: rgba(33, 31, 29, 0.68);
  --ink-muted: rgba(33, 31, 29, 0.48);
  --espresso: #312820;
  --cream: #fffaf2;
  --line: rgba(33, 31, 29, 0.16);
  --line-strong: rgba(33, 31, 29, 0.28);
  --shadow: 0 1.4rem 3.6rem rgba(49, 40, 32, 0.16);
  --serif: "Bodoni 72", Didot, "Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.4rem);
  --max: 88rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 32%),
    linear-gradient(180deg, var(--paper) 0%, #eadfd2 48%, var(--paper) 100%);
}

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

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  padding: 0.7rem 0.9rem;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
  min-height: 5.4rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(33, 31, 29, 0.1);
  background: rgba(246, 240, 232, 0.86);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-mark img {
  width: clamp(8.8rem, 13vw, 12rem);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.6rem);
  color: rgba(33, 31, 29, 0.74);
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a,
.text-link,
.header-cta,
.button {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(20rem, 1.02fr);
  gap: clamp(2rem, 5vw, 5.8rem);
  align-items: center;
  min-height: calc(100svh - 5.4rem);
  padding: clamp(2.4rem, 5vw, 5.3rem) var(--gutter)
    clamp(3.2rem, 6vw, 6rem);
}

.hero-copy {
  align-self: end;
  grid-column: 1;
  grid-row: 1;
  max-width: 39rem;
}

.section-kicker {
  margin-bottom: clamp(0.9rem, 1.4vw, 1.2rem);
  color: var(--clay);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
  font-size: clamp(5rem, 12vw, 12.6rem);
  line-height: 0.78;
}

.hero-lede {
  max-width: 31rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 1.06;
}

.hero-body {
  max-width: 30rem;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1vw, 1.06rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: clamp(1.6rem, 3vw, 2.3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--clay);
}

.button-light {
  border-color: rgba(255, 250, 242, 0.72);
  background: var(--cream);
  color: var(--espresso);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
}

.text-link {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-details {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 34rem;
  margin: clamp(0.3rem, 1vw, 0.8rem) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-details div {
  padding: 1rem clamp(0.7rem, 1.6vw, 1.2rem);
  border-left: 1px solid var(--line);
}

.hero-details div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-details dt {
  margin-bottom: 0.25rem;
  color: var(--ink-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-details dd {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.15;
}

.hero-visual {
  position: relative;
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  width: min(100%, 43rem);
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: clamp(0.8rem, 2vw, 1.5rem) auto auto clamp(-0.7rem, -1vw, -0.35rem);
  z-index: -1;
  width: 62%;
  height: 70%;
  content: "";
  border: 1px solid rgba(33, 31, 29, 0.22);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: clamp(0.8rem, 2vw, 1.4rem);
  bottom: clamp(0.8rem, 2vw, 1.4rem);
  max-width: 13rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(20rem, 1fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  border-top: 1px solid var(--line);
}

.story-panel {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-panel-item {
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line);
}

.story-panel-item:first-child {
  border-top: 0;
}

.story-panel-item span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-panel-item p {
  max-width: 20rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.story-copy {
  max-width: 44rem;
}

.story-copy h2,
.section-heading h2,
.product-section h2,
.launch-section h2 {
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  font-size: clamp(2.25rem, 4.2vw, 4.9rem);
  line-height: 0.98;
}

.story-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.launch-copy p:not(.section-kicker) {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
}

.essence-section {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: var(--espresso);
  color: var(--cream);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
}

.essence-section .section-kicker,
.philosophy-copy .section-kicker,
.launch-section .section-kicker {
  color: rgba(255, 250, 242, 0.68);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
}

.section-heading-wide h2 {
  max-width: 12ch;
}

.section-heading-wide p:not(.section-kicker) {
  align-self: end;
  max-width: 33rem;
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 250, 242, 0.2);
  border-bottom: 1px solid rgba(255, 250, 242, 0.2);
}

.essence-item {
  min-height: 17rem;
  padding: clamp(1.8rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 250, 242, 0.2);
}

.essence-item:first-child {
  border-left: 0;
}

.essence-icon {
  display: inline-flex;
  margin-bottom: clamp(2.6rem, 5vw, 4.8rem);
  color: rgba(255, 250, 242, 0.44);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.8;
}

.essence-item h3 {
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.essence-item p {
  max-width: 17rem;
  color: rgba(255, 250, 242, 0.66);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.product-section {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.product-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.product-card img {
  width: 100%;
  aspect-ratio: 0.74 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding: 1.1rem;
  border-top: 1px solid var(--line);
}

.product-card span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.product-card small {
  max-width: 10rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.philosophy-section {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(22rem, 1.2fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 6rem);
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(24rem, 34vw, 33rem);
  padding: clamp(2.2rem, 5vw, 4.6rem);
  background: var(--clay);
  color: var(--cream);
}

.philosophy-copy h2 {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 1.02;
}

.short-rule {
  width: 4rem;
  height: 1px;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 250, 242, 0.62);
}

.philosophy-copy p:not(.section-kicker) {
  max-width: 24rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.movement-visual {
  margin: 0;
}

.movement-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(24rem, 34vw, 33rem);
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(0.92);
}

.launch-section {
  display: grid;
  place-items: center;
  min-height: clamp(26rem, 43vw, 39rem);
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background:
    radial-gradient(circle at 22% 20%, rgba(155, 115, 95, 0.55), transparent 20rem),
    radial-gradient(circle at 84% 72%, rgba(255, 250, 242, 0.1), transparent 18rem),
    linear-gradient(135deg, #3a3028 0%, #211f1d 100%);
  color: var(--cream);
  text-align: center;
}

.launch-copy {
  width: min(100%, 45rem);
}

.launch-section h2 {
  margin-inline: auto;
}

.launch-copy p:not(.section-kicker) {
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.76);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.4rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.launch-actions span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  background: var(--ink);
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer img {
  width: 7.6rem;
  filter: invert(1) brightness(1.8);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:nth-of-type(1) {
  text-align: center;
}

.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;
}

@media (min-width: 1500px) {
  .hero-section {
    grid-template-columns: minmax(24rem, 0.88fr) minmax(30rem, 1.12fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .hero-section,
  .story-section,
  .section-heading-wide,
  .philosophy-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
  }

  .hero-copy,
  .hero-visual,
  .hero-details {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy {
    max-width: 43rem;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 1.12 / 1;
  }

  .story-panel {
    max-width: 28rem;
  }

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

  .essence-grid {
    border-top: 0;
  }

  .essence-item {
    min-height: auto;
    border-top: 1px solid rgba(255, 250, 242, 0.2);
    border-left: 0;
  }

  .essence-icon {
    margin-bottom: 2rem;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(12rem, 0.8fr) minmax(12rem, 1fr);
    align-items: stretch;
  }

  .product-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-card figcaption {
    align-items: flex-end;
    min-height: 13rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .philosophy-section {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    min-height: 0;
  }

  .brand-mark img {
    width: 9.6rem;
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-section {
    gap: 2rem;
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .hero-lede {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .hero-details div {
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-details div:first-child {
    border-top: 0;
  }

  .hero-visual::before,
  .hero-visual figcaption {
    display: none;
  }

  .hero-visual img {
    aspect-ratio: 0.92 / 1;
  }

  .story-section {
    padding-top: 3.4rem;
  }

  .story-panel {
    max-width: none;
  }

  .story-copy h2,
  .section-heading h2,
  .product-section h2,
  .launch-section h2 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .essence-item {
    padding-inline: 0;
  }

  .philosophy-copy {
    padding: 2.4rem 1.35rem;
  }

  .product-card {
    display: block;
  }

  .product-card img {
    aspect-ratio: 0.78 / 1;
  }

  .product-card figcaption {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-card small {
    max-width: 8rem;
  }

  .movement-visual img {
    min-height: 20rem;
  }

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

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

  .site-footer p:nth-of-type(1) {
    text-align: left;
  }
}

@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;
  }
}
