:root {
  --red: rgb(145, 17, 43);
  --dark-red: rgb(101, 11, 29);
  --cream: rgb(250, 248, 235);
  --rose: rgb(231, 185, 181);
  --taupe: rgb(197, 178, 156);
  --line: rgba(145, 17, 43, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--red); font: 16px/1.5 "Poppins", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }

.header {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: start;
  min-height: 110px; padding: 24px clamp(20px, 3vw, 48px); border-bottom: 1px solid var(--line);
}
.header nav { display: flex; gap: clamp(18px, 3vw, 48px); padding-top: 6px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.header-note { justify-self: end; padding-top: 6px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.header a:hover, footer a:hover { opacity: .55; }

.logo { display: flex; flex-direction: column; width: fit-content; font-size: clamp(5.4rem, 11vw, 11.5rem); font-weight: 800; line-height: .78; letter-spacing: -.075em; }
.logo.small { font-size: 1.3rem; letter-spacing: -.055em; }
.label { margin: 0; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }

.hero { display: grid; grid-template-columns: .92fr 1.08fr; min-height: calc(100vh - 110px); border-bottom: 1px solid var(--line); }
.hero-copy { display: flex; flex-direction: column; justify-content: space-between; min-height: 680px; padding: clamp(30px, 5vw, 76px) clamp(20px, 4vw, 62px) 45px; border-right: 1px solid var(--line); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.hero-bottom p { max-width: 420px; margin: 0; font-size: clamp(1rem, 1.6vw, 1.4rem); }
.round-link { display: grid; flex: 0 0 58px; width: 58px; height: 58px; place-items: center; border: 1px solid; border-radius: 50%; font-size: 1.5rem; }
.round-link:hover { background: var(--red); color: var(--cream); }

.hero-images { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr auto; gap: 8px; padding: 8px; }
.image-slot { position: relative; min-height: 300px; background: #d8beb4; }

.image-slot {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.9);
}
.image-slot span { position: absolute; right: 16px; bottom: 14px; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.image-slot.large { grid-row: span 2; min-height: 680px; background: var(--rose); }
.image-slot.detail { min-height: 450px; background: var(--taupe); }
.claim { align-self: end; margin: 0; padding: 20px 12px 14px; font-size: clamp(1.4rem, 2.4vw, 2.3rem); font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }

.section { padding: clamp(74px, 10vw, 160px) clamp(20px, 4vw, 64px); }
h2 { margin: 0; font-size: clamp(3rem, 6.8vw, 7.5rem); font-weight: 700; line-height: .92; letter-spacing: -.065em; }
.intro { display: grid; grid-template-columns: 1fr 2.3fr 1.15fr; gap: 36px; border-bottom: 1px solid var(--line); }
.body-copy { align-self: end; }
.body-copy p { margin: 0; font-size: 1.05rem; }
.body-copy small { display: block; margin-top: 34px; opacity: .6; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }

.section-title { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-title .label { margin-bottom: 18px; }
.section-title > p { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.collection-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(18px, 3vw, 48px); align-items: start; }
.tall { grid-row: span 2; }
.tall .image-slot { min-height: min(72vw, 860px); }
.wide .image-slot { min-height: min(38vw, 420px); background: #bab8a6; }
.small-card { width: 72%; margin-left: auto; }
.small-card .image-slot { min-height: min(31vw, 360px); background: #c6a590; }
.meta { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.meta span { font-size: .72rem; }
.meta h3 { margin: 0; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }

.atelier { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--red); color: var(--cream); }
.atelier-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(48px, 7vw, 108px) clamp(20px, 4vw, 64px); }
.atelier-copy > p:last-child { max-width: 470px; margin: 40px 0 0; }
.atelier-image { min-height: 760px; background: #5d4b47; }

.contact { min-height: 700px; display: flex; flex-direction: column; justify-content: space-between; }
.contact h2 { margin-top: 60px; font-size: clamp(4.6rem, 10.6vw, 12rem); }
.contact-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-top: 80px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-row p { margin: 0; }
.contact-row a { font-size: 1.1rem; font-weight: 700; }

footer { padding: clamp(58px, 8vw, 110px) clamp(20px, 4vw, 64px) 32px; background: var(--dark-red); color: var(--cream); }
.footer-logo { font-size: clamp(5.6rem, 15vw, 16rem); }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; margin-top: 90px; padding-top: 20px; border-top: 1px solid rgba(250,248,235,.28); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-row a:last-child { justify-self: end; }

@media (max-width: 850px) {
  .header { grid-template-columns: 1fr auto; min-height: 90px; }
  .header-note { display: none; }
  .hero, .intro, .atelier { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; border-right: 0; border-bottom: 1px solid var(--line); }
  .intro .body-copy { max-width: 560px; margin-left: auto; }
  .atelier-copy { min-height: 620px; }
}

@media (max-width: 600px) {
  .header { min-height: 78px; padding: 20px; }
  .header nav { gap: 16px; font-size: .65rem; }
  .header nav a:nth-child(2) { display: none; }
  .logo.small { font-size: 1.15rem; }
  .hero-copy { min-height: 510px; padding: 28px 20px; }
  .logo { font-size: clamp(5.2rem, 28vw, 8.5rem); }
  .hero-images { grid-template-columns: 1fr .72fr; min-height: 500px; }
  .image-slot.large { min-height: 500px; }
  .image-slot.detail { min-height: 320px; }
  .claim { font-size: 1.1rem; padding: 10px 6px; }
  .section { padding: 74px 20px; }
  h2 { font-size: clamp(2.8rem, 14vw, 4.7rem); }
  .section-title, .contact-row { align-items: start; flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; gap: 48px; }
  .tall .image-slot, .wide .image-slot, .small-card .image-slot { min-height: 118vw; }
  .small-card { width: 78%; }
  .atelier-image { min-height: 500px; }
  .contact { min-height: 580px; }
  .contact h2 { font-size: clamp(4rem, 20vw, 7rem); }
  .footer-row { grid-template-columns: 1fr auto; row-gap: 16px; margin-top: 60px; }
  .footer-row > span { grid-column: 1 / -1; grid-row: 2; }
}
