:root {
  --paper: #f4efe7;
  --paper-soft: #faf7f1;
  --ink: #1d211d;
  --muted: #6c6f68;
  --olive: #5b6659;
  --line: rgba(29, 33, 29, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --content: min(1240px, calc(100vw - 48px));
  --page-gutter: max(24px, calc((100vw - 1240px) / 2));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #253d35; color: #fff; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    max(18px, env(safe-area-inset-top))
    var(--page-gutter)
    14px;
  transition: color .3s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(244, 239, 231, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: .35s ease;
}
.site-header.is-scrolled::before {
  background: rgba(244, 239, 231, .83);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand__mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}
.brand__mark circle { fill: currentColor; stroke: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__type strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: .01em;
}
.brand__type small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:not(.site-nav__cta) { position: relative; }
.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:not(.site-nav__cta):hover::after { right: 0; }
.site-nav__cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 11px 17px;
  transition: background .25s ease, color .25s ease;
}
.site-nav__cta:hover { background: var(--ink); color: var(--paper); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
  width: var(--content);
  margin: auto;
  padding: 135px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 700px;
  height: 700px;
  left: -410px;
  top: 12%;
  border: 1px solid rgba(93, 102, 89, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(93, 102, 89, .035), 0 0 0 160px rgba(93, 102, 89, .025);
}
.hero__noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(67px, 7.5vw, 118px);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.048em;
}
.hero h1 em { color: #706355; font-weight: 400; }
.hero__lead {
  max-width: 610px;
  margin: 38px 0 0;
  color: #535850;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.75;
}
.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 42px; }
.hero__actions > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: var(--paper-soft); }
.button--light { background: var(--paper-soft); color: var(--ink); }

.hero__showcase {
  position: relative;
  width: min(100%, 500px);
  height: min(70vh, 700px);
  justify-self: end;
  perspective: 1500px;

  transition: opacity 300ms ease;
}

.hero__showcase.is-changing {
  opacity: 0;
}

.showcase-card {
  position: absolute;
  width: 52%;
  aspect-ratio: 9 / 16;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;

  background: #ddd;
  box-shadow: 0 35px 90px rgba(42, 43, 37, .22);

  text-decoration: none;
  transform-origin: center bottom;

  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
}

.showcase-card:hover {
  box-shadow: 0 42px 110px rgba(42, 43, 37, .3);
}

.showcase-card img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

.showcase-card__name {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;

  padding: 9px 12px;
  border-radius: 999px;

  color: white;
  background: rgba(22, 22, 19, .68);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.showcase-card--left {
  left: 0;
  top: 12%;
  transform: rotate(-10deg) translateY(24px);
}

.showcase-card--right {
  right: 0;
  top: 8%;
  transform: rotate(9deg) translateY(10px);
}

.showcase-card--front {
  left: 50%;
  bottom: 1%;
  z-index: 5;

  transform: translateX(-50%) rotate(-1deg);
}

.showcase-card--left:hover {
  transform: rotate(-7deg) translateY(15px);
}

.showcase-card--right:hover {
  transform: rotate(6deg) translateY(2px);
}

.showcase-card--front:hover {
  transform: translateX(-50%) translateY(-8px);
}

.hero__scroll {
  position: absolute;
  left: 0;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero__scroll i { width: 70px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateX(-100%); animation: scan 2.5s infinite; }
@keyframes scan { 50%, 100% { transform: translateX(100%); } }

.section { width: var(--content); margin: auto; padding: clamp(90px, 11vw, 160px) 0; }
.intro { text-align: center; max-width: 930px; }
.intro h2, .section-heading h2, .experience h2, .closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.04em;
}
.intro > p:last-child {
  max-width: 780px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 58px;
}
.section-heading > p { max-width: 390px; margin: 0 0 10px; color: var(--muted); }

.collection { padding-top: 70px; }
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 64px 30px;
}
.theme-card { min-width: 0; }
.theme-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
  text-decoration: none;
}
.theme-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.theme-card__visual:hover img { transform: scale(1.025); }
.theme-card__open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  padding: 11px 14px 11px 17px;
  background: rgba(250,247,241,.91);
  color: #252923;
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: .35s ease;
}
.theme-card__open i { font-size: 16px; font-style: normal; }
.theme-card__visual:hover .theme-card__open,
.theme-card__visual:focus-visible .theme-card__open { transform: none; opacity: 1; }
.theme-card__content { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding-top: 24px; }
.theme-card__number { padding-top: 8px; color: #8d8e88; font-size: 10px; letter-spacing: .2em; }
.theme-card__category { margin: 0 0 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.theme-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 400;
  line-height: 1;
}
.theme-card__content p:not(.theme-card__category) { max-width: 500px; margin: 15px 0 0; color: var(--muted); }
.swatches { display: flex; gap: 7px; margin-top: 19px; }
.swatches span { width: 17px; height: 17px; border-radius: 50%; background: var(--swatch); border: 1px solid rgba(0,0,0,.08); }

.experience { width: 100%; max-width: none; padding-inline: 24px; }
.experience__panel {
  width: min(1400px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 10vw, 160px);
  background: #1d241f;
  color: #f6f1e8;
  padding: clamp(65px, 9vw, 120px);
}
.experience .section-kicker { color: #b8ad92; }
.experience h2 { font-size: clamp(50px, 6vw, 84px); }
.experience__list { border-top: 1px solid rgba(255,255,255,.18); }
.experience__list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.experience__list span { color: #b8ad92; font-size: 10px; letter-spacing: .18em; }
.experience__list p { margin: 0; color: rgba(246,241,232,.66); }
.experience__list strong { display: block; margin-bottom: 4px; color: #f6f1e8; font-family: var(--serif); font-size: 27px; font-weight: 400; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-step { padding: 35px 38px 22px 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 38px; }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--muted); font-size: 10px; letter-spacing: .2em; }
.process-step h3 { margin: 34px 0 13px; font-family: var(--serif); font-size: 51px; font-weight: 400; }
.process-step p { max-width: 320px; margin: 0; color: var(--muted); }

.closing-cta {
  width: min(1120px, calc(100vw - 48px));
  text-align: center;
  background: #6f5e50;
  color: #faf7f1;
  padding: clamp(80px, 10vw, 140px) clamp(28px, 8vw, 110px);
}
.closing-cta .section-kicker { color: #ddd0bf; }
.closing-cta h2 { max-width: 830px; margin: auto; }
.closing-cta__mark { width: 64px; margin: 0 auto 38px; fill: none; stroke: #ddcfba; stroke-width: 1; }
.closing-cta__mark circle { fill: #ddcfba; stroke: none; }
.closing-cta .button { margin-top: 38px; }

.site-footer {
  width: 100%;
  margin: 0;
  padding:
    50px
    var(--page-gutter)
    max(45px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  border-top: 1px solid var(--line);
}
.brand--footer .brand__mark { width: 33px; }
.brand--footer .brand__type strong { font-size: 23px; }
.site-footer__links { display: flex; gap: 25px; }
.site-footer__links a { color: var(--muted); text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-footer > p { justify-self: end; margin: 0; color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root {
    --content: min(calc(100% - 36px), 760px);
    --page-gutter: 18px;
  }
  .site-nav > a:not(.site-nav__cta) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 145px; }
  .hero__copy { max-width: 760px; }
  .hero h1 { font-size: clamp(67px, 13vw, 108px); }
  .hero__showcase {
    width: min(440px, 90vw);
    height: 580px;
    margin: 40px auto 0;
    justify-self: center;
  }

  .showcase-card {
    width: 50%;
    border-radius: 20px;
  }

  .showcase-card--left {
    left: 2%;
    top: 12%;
    transform: rotate(-8deg);
  }

  .showcase-card--right {
    right: 2%;
    top: 10%;
    transform: rotate(8deg);
  }

  .showcase-card--front {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .hero__scroll { display: none; }
  .theme-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 62px 24px;
  }
  .theme-card__visual { aspect-ratio: 4 / 5; }
  .theme-card__open { opacity: 1; transform: none; }
  .experience__panel { grid-template-columns: 1fr; gap: 55px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .site-footer > p { justify-self: center; }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 32px);
    --page-gutter: 16px;
  }
  .site-header { padding-top: max(14px, env(safe-area-inset-top)); }
  .brand__mark { width: 32px; height: 32px; }
  .brand__type strong { font-size: 23px; }
  .brand__type small { font-size: 7px; }
  .site-nav__cta { padding: 9px 13px; font-size: 8px!important; }
  .hero { min-height: auto; padding: 130px 0 85px; gap: 44px; }
  .hero h1 { font-size: clamp(61px, 18vw, 86px); line-height: .85; }
  .hero__lead { margin-top: 27px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 31px; }
  .hero__showcase {
    width: min(330px, 92vw);
    height: 440px;
    margin-top: 32px;
  }

  .showcase-card {
    width: 49%;
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(42, 43, 37, 0.2);
  }

  .showcase-card--left {
    left: 1%;
    top: 13%;
    transform: rotate(-7deg);
  }

  .showcase-card--right {
    right: 1%;
    top: 11%;
    transform: rotate(7deg);
  }

  .showcase-card--front {
    left: 50%;
    bottom: 0;
    z-index: 5;
    transform: translateX(-50%);
  }

  .showcase-card__name {
    right: 8px;
    bottom: 8px;
    left: 8px;

    padding: 7px 8px;
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  /* Disable hover movement on touch devices */
  .showcase-card--left:hover {
    transform: rotate(-7deg);
  }

  .showcase-card--right:hover {
    transform: rotate(7deg);
  }

  .showcase-card--front:hover {
    transform: translateX(-50%);
  }
  .section { padding: 85px 0; }
  .intro h2, .section-heading h2, .experience h2, .closing-cta h2 { font-size: clamp(48px, 14vw, 69px); }
  .intro > p:last-child { margin-top: 27px; font-size: 15px; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin-top: 22px; }
  .theme-grid { gap: 62px; }
  .theme-card__visual { aspect-ratio: 4 / 5; }
  .theme-card__open { right: 12px; bottom: 12px; font-size: 8px; }
  .theme-card__content { grid-template-columns: 34px 1fr; gap: 10px; padding-top: 18px; }
  .theme-card h3 { font-size: 47px; }
  .theme-card__content p:not(.theme-card__category) { font-size: 14px; }
  .experience { padding-inline: 0; }
  .experience__panel { padding: 67px 24px; }
  .experience__list > div { grid-template-columns: 34px 1fr; }
  .experience__list strong { font-size: 25px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 22px; font-size: 44px; }
  .closing-cta { width: calc(100vw - 24px); padding: 75px 24px; }
  .site-footer__links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
}

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