/* Peelisse — lookbook */
:root {
  --clay: #9a4e2c;
  --sand: #f3e6d4;
  --ink: #2a1c14;
  --warm: #c47a4a;
  --paper: #faf4eb;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
}
body { padding-bottom: 3.6rem; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { color: inherit; }
.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding: .75rem 1.4rem;
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 400;
}
.nav a { text-decoration: none; }
.nav-mid { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.nav-mid a { opacity: .72; }
.nav-mid a:hover { opacity: 1; }

body.home .nav {
  color: #fff;
  background: linear-gradient(to bottom, rgba(42,28,20,.28), transparent);
}
body.inner .nav {
  color: var(--ink);
  background: rgba(250,244,235,.94);
  border-bottom: 1px solid rgba(42,28,20,.06);
}
body.inner { padding-top: 3.2rem; padding-bottom: 3.6rem; }

.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero > img { min-height: 100vh; }
.hero-copy {
  position: absolute; inset: auto 0 0 0;
  padding: 6rem 1.5rem 2.4rem;
  background: linear-gradient(to top, rgba(42,28,20,.48), rgba(42,28,20,.08) 58%, transparent);
  color: #fff;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 500; line-height: 1.05; max-width: 14ch;
}
.sub { margin: .7rem 0 1.3rem; max-width: 34ch; font-size: .95rem; letter-spacing: .02em; opacity: .9; }
.cta {
  display: inline-block; background: var(--sand); color: var(--ink);
  text-decoration: none; letter-spacing: .16em; text-transform: uppercase;
  font-size: .62rem; font-weight: 500; padding: .7rem 1.15rem;
}
body.inner .cta { background: var(--ink); color: var(--sand); }

.sku-rail {
  padding: .55rem 1.4rem;
  display: flex; justify-content: center; align-items: center;
  gap: .7rem; flex-wrap: wrap;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid rgba(42,28,20,.07);
}

section { padding: 0; }
.wrap { max-width: 36rem; margin: 0 auto; padding: 0 1.4rem; }
.band { padding: 0; width: 100%; }

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500;
}

.doors, .how-grid {
  display: grid; gap: 2px;
  width: 100%;
}
@media (min-width: 800px) {
  .doors, .how-grid { grid-template-columns: 1fr 1fr 1fr; }
}
figure { position: relative; overflow: hidden; margin: 0; }
.doors figure { min-height: 78vh; }
.how-grid figure { min-height: 72vh; }
.doors figure img, .how-grid figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: auto;
}
figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3.2rem 1.3rem 1.35rem;
  background: linear-gradient(to top, rgba(42,28,20,.62), transparent);
  color: var(--sand);
  z-index: 1;
}
figcaption strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500; line-height: 1.05;
  color: var(--sand);
  margin: 0;
}
figcaption .line {
  display: block; margin-top: .35rem;
  font-size: .78rem; letter-spacing: .04em; opacity: .88;
}
.step {
  display: block;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .8;
  margin-bottom: .35rem;
}

.film {
  display: flex; gap: 2px;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: none;
}
.film::-webkit-scrollbar { display: none; }
.film img {
  flex: 0 0 42vw;
  aspect-ratio: 4/5;
  height: auto;
}
@media (min-width: 800px) {
  .film { display: grid; grid-template-columns: repeat(6, 1fr); overflow: visible; gap: 2px; }
  .film img { flex: none; width: 100%; height: auto; }
}

.split {
  display: grid;
  min-height: calc(100vh - 3.2rem);
}
@media (min-width: 880px) {
  .split { grid-template-columns: 58% 42%; }
}
.split-still { min-height: 62vh; overflow: hidden; position: relative; }
.split-still img { position: absolute; inset: 0; width: 100%; height: 100%; }
.split-rail {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.6rem 2rem 3rem;
  max-width: 28rem;
}
.split-rail h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 12ch; }
.split-rail .lede, .split-rail .note {
  font-size: .92rem; line-height: 1.5; max-width: 34ch; margin-bottom: .85rem;
}
.split-rail .lede { margin-top: .9rem; }
.sku-row {
  display: flex; flex-wrap: wrap; gap: .4rem 1rem;
  margin: .15rem 0 1.1rem;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--clay);
}
.page-cta { margin-top: 1.2rem; }

.faq-rows {
  padding: 1.6rem 1.4rem 0.4rem;
  border-top: 1px solid rgba(42,28,20,.07);
}
.faq-rows dl {
  display: grid; gap: 1rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 800px) { .faq-rows dl { grid-template-columns: 1fr 1fr 1fr; } }
.faq-rows dt {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay); font-weight: 400;
}
.faq-rows dd { margin: .25rem 0 0; font-size: .86rem; line-height: 1.4; color: var(--ink); }

form { display: flex; gap: .45rem; flex-wrap: wrap; align-items: center; }
input[type=email] {
  flex: 1 1 160px; border: 0; border-bottom: 1px solid rgba(243,230,212,.45);
  background: transparent; color: var(--sand); padding: .4rem 0; font: inherit;
  font-size: .8rem;
}
input[type=email]::placeholder { color: rgba(243,230,212,.45); }
button {
  border: 0; background: var(--sand); color: var(--ink);
  letter-spacing: .16em; text-transform: uppercase; font-size: .6rem;
  font-weight: 500; padding: .5rem 1rem; cursor: pointer;
}

.wait-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 20;
  background: var(--ink); color: var(--sand);
  padding: .38rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem 1.2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(243,230,212,.1);
}
.wait-bar p {
  font-size: .72rem; letter-spacing: .08em; line-height: 1.3;
  white-space: nowrap;
}
.wait-bar form { flex: 1 1 200px; max-width: 380px; justify-content: flex-end; }

@media (prefers-reduced-motion: no-preference) {
  .hero > img { animation: ken 22s ease-in-out infinite alternate; transform-origin: 60% 40%; }
  @keyframes ken { from { transform: scale(1); } to { transform: scale(1.06); } }
  .hero-copy h1, .hero-copy .sub, .hero-copy .cta { animation: rise .9s ease both; }
  .hero-copy .sub { animation-delay: .15s; }
  .hero-copy .cta { animation-delay: .3s; }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  .cta { transition: transform .25s ease, background .25s ease; }
  .cta:hover { transform: translateY(-2px); }
  figure img, .split-still img, .film img { transition: transform 1.1s ease; }
  figure:hover img, .split-still:hover img, .film img:hover { transform: scale(1.04); }
}

footer {
  padding: 1.6rem 1.4rem 2.2rem; font-size: .62rem; letter-spacing: .08em;
  color: #7a6556;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .wait-bar p { white-space: normal; max-width: 28ch; }
  .doors figure, .how-grid figure { min-height: 78vh; }
}
