:root {
  --cream: #eee9df;
  --cream-light: #f7f4ed;
  --ink: #17130f;
  --brown: #5d4638;
  --gold: #b58a55;
  --rose: #b98f82;
  --muted: #82776e;
  --line: rgba(23, 19, 15, 0.18);
  --white: #fffdf8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================
   OPENING
========================================= */

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: var(--ink);
  color: var(--cream);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.opening-word {
  display: flex;
  overflow: hidden;

  font-family: "Italiana", serif;
  font-size: clamp(90px, 17vw, 260px);
  line-height: .75;
  letter-spacing: -.06em;
}

.opening-word span {
  display: inline-block;
  transform: translateY(120%);
  animation: letterUp 1s cubic-bezier(.77,0,.18,1) forwards;
}

.opening-word span:nth-child(1) {
  animation-delay: .1s;
}

.opening-word span:nth-child(2) {
  animation-delay: .18s;
}

.opening-word span:nth-child(3) {
  animation-delay: .26s;
}

.opening-word span:nth-child(4) {
  animation-delay: .34s;
}

.opening-word span:nth-child(5) {
  animation-delay: .42s;
}

.opening-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 45px;
  animation: openingLine 1.3s 0.6s forwards;
}

.opening p {
  position: absolute;
  bottom: 35px;

  font-size: 9px;
  letter-spacing: .2em;
  color: #999;
}

@keyframes letterUp {
  to {
    transform: translateY(0);
  }
}

@keyframes openingLine {
  to {
    width: min(300px, 60vw);
  }
}


/* =========================================
   HEADER
========================================= */

.header {
  position: fixed;
  z-index: 100;

  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  padding: 0 42px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  background: rgba(238, 233, 223, .86);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid transparent;

  transition:
    background .4s ease,
    border .4s ease;
}

.header.scrolled {
  background: rgba(247, 244, 237, .93);
  border-color: var(--line);
}

.logo {
  font-family: "Italiana", serif;
  font-size: 28px;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  gap: 42px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--ink);

  transition: width .3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-mark {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 9px;
  letter-spacing: .15em;
}

.header-mark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 100vh;

  padding: 145px 42px 45px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 55px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px 0;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;

  max-width: 500px;

  font-size: 9px;
  letter-spacing: .17em;

  margin-bottom: 55px;
}

.hero-kicker span {
  color: var(--gold);
}

.hero h1 {
  font-family: "Italiana", serif;

  font-size: clamp(75px, 10vw, 155px);

  line-height: .78;

  font-weight: 400;

  letter-spacing: -.045em;
}

.hero h1 i {
  display: block;

  margin-left: 20%;

  color: var(--gold);

  font-style: normal;
}

.hero h1 strong {
  display: block;

  font-weight: 400;

  color: transparent;

  -webkit-text-stroke: 1px var(--ink);

  margin-left: 4%;
}

.hero-description {
  max-width: 350px;

  margin: 55px 0 0 20%;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.8;
}

.hero-link {
  width: fit-content;

  margin: 35px 0 0 20%;

  padding-bottom: 9px;

  border-bottom: 1px solid var(--ink);

  display: flex;
  gap: 35px;
  align-items: center;

  font-size: 9px;
  letter-spacing: .14em;
}

.hero-link span {
  font-size: 18px;
}

.hero-right {
  position: relative;

  display: flex;
  align-items: center;
}

.hero-image {
  position: relative;

  width: 82%;
  height: 78vh;

  margin-left: auto;

  overflow: hidden;

  background: #d4ccc0;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}

.hero-image:hover img {
  transform: scale(1.04);
}

.image-note {
  position: absolute;

  bottom: 18px;
  left: 18px;
  right: 18px;

  display: flex;
  justify-content: space-between;

  color: white;

  font-size: 8px;
  letter-spacing: .12em;
}

.vertical-word {
  position: absolute;

  left: 0;
  bottom: 70px;

  writing-mode: vertical-rl;

  font-size: 8px;
  letter-spacing: .18em;

  color: var(--muted);
}


/* =========================================
   INTRO
========================================= */

.intro {
  min-height: 90vh;

  padding: 150px 8vw;

  display: grid;
  grid-template-columns: 20% 80%;

  background: var(--ink);
  color: var(--cream-light);
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 20px;

  font-size: 9px;
  letter-spacing: .14em;

  color: #888;
}

.intro-content {
  max-width: 1050px;
}

.intro-big {
  font-family: "Italiana", serif;

  font-size: clamp(50px, 7vw, 110px);

  line-height: .9;

  letter-spacing: -.04em;
}

.intro-big em {
  color: var(--gold);
  font-style: normal;
}

.intro-text {
  max-width: 490px;

  margin: 80px 0 0 20%;

  color: #aaa;

  font-size: 14px;
  line-height: 1.9;
}


/* =========================================
   COLLECTIONS
========================================= */

.collections {
  padding: 150px 42px;
  background: var(--cream-light);
}

.collection-head {
  display: grid;
  grid-template-columns: 1fr 250px;

  padding-bottom: 100px;
}

.section-number {
  display: block;

  font-size: 9px;
  letter-spacing: .14em;

  color: var(--gold);
}

.collection-head h2 {
  max-width: 850px;

  margin-top: 30px;

  font-family: "Italiana", serif;

  font-size: clamp(65px, 10vw, 145px);

  font-weight: 400;

  line-height: .76;

  letter-spacing: -.055em;
}

.collection-head h2 i {
  color: var(--gold);
  font-style: normal;
}

.collection-head > p {
  align-self: end;

  max-width: 180px;

  font-size: 11px;
  line-height: 1.7;

  color: var(--muted);
}

.collection-grid {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 90px 35px;
}

.piece {
  opacity: 0;
  transform: translateY(45px);

  transition:
    opacity .8s ease,
    transform .8s ease;
}

.piece.visible {
  opacity: 1;
  transform: translateY(0);
}

.piece:nth-child(2) {
  margin-top: 150px;
}

.piece:nth-child(3) {
  margin-top: -30px;
}

.piece:nth-child(4) {
  margin-top: 120px;
}

.piece-image {
  position: relative;

  overflow: hidden;

  background: #ded7cc;
}

.piece-large .piece-image {
  height: 75vh;
}

.piece-small .piece-image {
  height: 58vh;
}

.piece-image img {
  height: 100%;
  object-fit: cover;

  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.piece:hover .piece-image img {
  transform: scale(1.05);
}

.piece-number {
  position: absolute;

  top: 18px;
  left: 18px;

  color: white;

  font-size: 9px;
  letter-spacing: .12em;
}

.piece-info {
  padding-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.piece-info h3 {
  font-family: "Italiana", serif;

  font-size: 27px;

  font-weight: 400;

  letter-spacing: .01em;
}

.piece-info p {
  margin-top: 6px;

  font-size: 8px;
  letter-spacing: .12em;

  color: var(--muted);
}

.piece-arrow {
  font-size: 20px;
  color: var(--gold);
}

.collection-link {
  width: fit-content;

  display: flex;
  gap: 30px;

  margin: 110px auto 0;

  padding-bottom: 10px;

  border-bottom: 1px solid var(--ink);

  font-size: 9px;
  letter-spacing: .14em;
}

.collection-link span {
  color: var(--gold);
  font-size: 17px;
}


/* =========================================
   FULL IMAGE
========================================= */

.full-image {
  height: 100vh;

  position: relative;

  overflow: hidden;

  background: #222;
}

.full-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.65),
      rgba(0,0,0,.05)
    );
}

.full-image img {
  height: 100%;

  object-fit: cover;

  filter: saturate(.7);

  transition: transform 1.5s ease;
}

.full-image:hover img {
  transform: scale(1.035);
}

.full-image-content {
  position: absolute;
  z-index: 2;

  top: 50%;
  left: 7vw;

  transform: translateY(-50%);

  color: white;
}

.full-image-content > span {
  font-size: 9px;
  letter-spacing: .15em;
}

.full-image-content h2 {
  margin-top: 35px;

  font-family: "Italiana", serif;

  font-size: clamp(80px, 13vw, 210px);

  line-height: .72;

  font-weight: 400;

  letter-spacing: -.07em;
}

.full-image-content h2 i {
  color: var(--gold);
  font-style: normal;
}

.full-image-content p {
  margin-top: 45px;

  font-size: 12px;

  color: #ddd;
}


/* =========================================
   CRAFT
========================================= */

.craft {
  padding: 150px 42px;

  background: var(--cream);
}

.craft-top {
  display: grid;

  grid-template-columns: 20% 80%;

  margin-bottom: 100px;
}

.craft-top .mini-title {
  display: block;

  margin-top: 20px;

  font-size: 9px;
  letter-spacing: .14em;

  color: var(--muted);
}

.craft-top h2 {
  margin-top: 30px;

  font-family: "Italiana", serif;

  font-size: clamp(70px, 10vw, 150px);

  line-height: .76;

  font-weight: 400;

  letter-spacing: -.06em;
}

.craft-top h2 i {
  color: var(--gold);
  font-style: normal;
}

.craft-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.craft-image {
  height: 75vh;

  overflow: hidden;
}

.craft-image img {
  height: 100%;
  object-fit: cover;

  filter: saturate(.65);

  transition: transform 1s ease;
}

.craft-image:hover img {
  transform: scale(1.04);
}

.craft-copy {
  border-top: 1px solid var(--line);
}

.craft-step {
  min-height: 190px;

  display: grid;
  grid-template-columns: 55px 1fr;

  padding: 35px 0;

  border-bottom: 1px solid var(--line);
}

.craft-step > span {
  color: var(--gold);

  font-size: 9px;
}

.craft-step h3 {
  font-family: "Italiana", serif;

  font-size: 36px;

  font-weight: 400;
}

.craft-step p {
  max-width: 350px;

  margin-top: 15px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
  overflow: hidden;

  padding: 35px 0;

  background: var(--brown);

  color: var(--cream-light);
}

.marquee {
  display: flex;
  align-items: center;

  width: max-content;

  animation: marqueeMove 22s linear infinite;
}

.marquee span {
  margin: 0 35px;

  font-family: "Italiana", serif;

  font-size: 70px;

  white-space: nowrap;
}

.marquee b {
  color: var(--gold);

  font-size: 18px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================
   STORY
========================================= */

.story {
  min-height: 100vh;

  padding: 150px 42px;

  display: grid;

  grid-template-columns: 100px 1fr .8fr;

  gap: 40px;

  background: var(--cream-light);
}

.story-number {
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--gold);
}

.story-content {
  max-width: 700px;
}

.story-content > span {
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--muted);
}

.story-content h2 {
  margin-top: 50px;

  font-family: "Italiana", serif;

  font-size: clamp(65px, 9vw, 135px);

  line-height: .76;

  font-weight: 400;

  letter-spacing: -.06em;
}

.story-content h2 i {
  color: var(--gold);
  font-style: normal;
}

.story-content p {
  max-width: 470px;

  margin-top: 65px;

  font-size: 13px;
  line-height: 1.8;

  color: var(--muted);
}

.story-content p + p {
  margin-top: 20px;
}

.story-image {
  height: 75vh;

  align-self: center;

  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: cover;

  filter: saturate(.7);
}


/* =========================================
   SIGNATURE
========================================= */

.signature {
  min-height: 100vh;

  padding: 120px 42px;

  background: var(--ink);
  color: var(--cream-light);

  display: grid;

  grid-template-columns: 1fr .8fr;

  gap: 70px;

  align-items: center;
}

.signature-left > span {
  font-size: 9px;
  letter-spacing: .14em;

  color: #888;
}

.signature-left h2 {
  margin-top: 50px;

  font-family: "Italiana", serif;

  font-size: clamp(80px, 11vw, 175px);

  line-height: .72;

  font-weight: 400;

  letter-spacing: -.07em;
}

.signature-left h2 i {
  color: var(--gold);
  font-style: normal;
}

.signature-product {
  position: relative;

  height: 80vh;

  overflow: hidden;
}

.signature-product img {
  height: 100%;
  object-fit: cover;

  filter: saturate(.7);

  transition: transform 1.2s ease;
}

.signature-product:hover img {
  transform: scale(1.04);
}

.signature-caption {
  position: absolute;

  bottom: 18px;
  left: 18px;
  right: 18px;

  display: flex;
  justify-content: space-between;

  font-size: 8px;
  letter-spacing: .12em;

  color: white;
}


/* =========================================
   CONTACT
========================================= */

.contact {
  min-height: 90vh;

  padding: 45px 42px 80px;

  background: var(--gold);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-top {
  display: flex;
  justify-content: space-between;

  font-size: 9px;
  letter-spacing: .14em;
}

.contact-main > p:first-child {
  font-family: "Italiana", serif;

  font-size: clamp(32px, 5vw, 70px);

  line-height: .9;
}

.contact-main > p:first-child i {
  color: var(--cream-light);
  font-style: normal;
}

.contact-main h2 {
  margin-top: 25px;

  font-family: "Italiana", serif;

  font-size: clamp(75px, 13vw, 205px);

  line-height: .7;

  font-weight: 400;

  letter-spacing: -.08em;
}

.contact-main h2 strong {
  color: transparent;

  -webkit-text-stroke: 1px var(--ink);

  font-weight: 400;
}

.contact-button {
  margin-top: 80px;

  padding: 25px 0;

  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);

  display: flex;
  justify-content: space-between;

  font-size: 10px;
  letter-spacing: .13em;
}

.contact-button span:last-child {
  font-size: 22px;
}

.client-copy {
  max-width: 600px;

  margin-top: 30px;

  font-size: 11px;
  line-height: 1.7;
}

.client-copy strong {
  font-family: monospace;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  background: var(--ink);
  color: var(--cream-light);

  padding: 65px 42px 25px;
}

.footer-logo {
  font-family: "Italiana", serif;

  font-size: clamp(100px, 18vw, 300px);

  line-height: .65;

  letter-spacing: -.07em;
}

.footer-line {
  height: 1px;

  margin-top: 90px;

  background: rgba(255,255,255,.2);
}

.footer-info {
  padding-top: 18px;

  display: flex;
  justify-content: space-between;

  font-size: 8px;
  letter-spacing: .13em;

  color: #888;
}


/* =========================================
   SCROLL ANIMATIONS
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(55px);

  transition:
    opacity .9s ease,
    transform .9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .header {
    padding: 0 22px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 125px 22px 30px;

    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hero-image {
    width: 90%;
    height: 65vh;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 55px;

    padding: 110px 25px;
  }

  .intro-text {
    margin-left: 10%;
  }

  .collections,
  .craft {
    padding: 110px 22px;
  }

  .collection-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .collection-grid {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .piece:nth-child(2),
  .piece:nth-child(3),
  .piece:nth-child(4) {
    margin-top: 0;
  }

  .piece-large .piece-image,
  .piece-small .piece-image {
    height: 65vh;
  }

  .craft-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .craft-image {
    height: 65vh;
  }

  .story {
    grid-template-columns: 50px 1fr;
  }

  .story-image {
    grid-column: 2;
    height: 65vh;
  }

  .signature {
    grid-template-columns: 1fr;
  }

  .signature-product {
    height: 65vh;
  }

  .contact {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}


@media (max-width: 600px) {

  .header {
    height: 75px;
  }

  .logo {
    font-size: 23px;
  }

  .header-mark {
    font-size: 8px;
  }

  .hero {
    padding: 105px 18px 25px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-description,
  .hero-link {
    margin-left: 0;
  }

  .hero-image {
    width: 94%;
    height: 55vh;
  }

  .vertical-word {
    display: none;
  }

  .intro {
    padding: 90px 20px;
  }

  .intro-big {
    font-size: 55px;
  }

  .intro-text {
    margin-left: 0;
    margin-top: 55px;
  }

  .collections,
  .craft {
    padding: 90px 18px;
  }

  .collection-head h2,
  .craft-top h2 {
    font-size: 68px;
  }

  .piece-large .piece-image,
  .piece-small .piece-image {
    height: 58vh;
  }

  .full-image {
    height: 70vh;
  }

  .full-image-content {
    left: 25px;
  }

  .full-image-content h2 {
    font-size: 75px;
  }

  .marquee span {
    font-size: 55px;
  }

  .story {
    padding: 90px 20px;

    grid-template-columns: 35px 1fr;
  }

  .story-content h2 {
    font-size: 65px;
  }

  .story-image {
    height: 55vh;
  }

  .signature {
    padding: 90px 20px;
  }

  .signature-left h2 {
    font-size: 75px;
  }

  .signature-product {
    height: 55vh;
  }

  .contact {
    min-height: 75vh;
  }

  .contact-main h2 {
    font-size: 75px;
  }

  .contact-button {
    margin-top: 60px;
  }

  .footer {
    padding: 45px 18px 20px;
  }

  .footer-logo {
    font-size: 100px;
  }

  .footer-info {
    flex-direction: column;
    gap: 14px;
  }
}