:root {
  --bg: #f7f5f2;
  --ink: #1a1a1a;
  --mute: #7a766f;
  --line: #d9d4cc;
  --accent: #2c4a3e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  background-image:
    linear-gradient(180deg, #faf8f5 0%, #f0ebe4 100%);
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  animation: fade 1s ease both;
}

.back {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 3rem;
  max-width: 720px;
  animation: fade-up 1s ease both;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.sub {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--mute);
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 2.5rem;
}

.cta {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
  width: fit-content;
  transition: opacity 0.3s ease;
}

.cta:hover {
  opacity: 0.55;
}

.visual {
  height: 28vh;
  min-height: 180px;
  position: relative;
  margin: 0 clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
}

.plane {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(44, 74, 62, 0.08) 40%),
    linear-gradient(180deg, #e8e2d8, #d4cfc4);
  animation: plane-in 1.4s ease both;
}

.line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: var(--ink);
  opacity: 0.25;
  transform: scaleX(0);
  animation: draw 1.2s 0.4s ease forwards;
}

.collection {
  padding: 4rem clamp(1.25rem, 5vw, 4rem) 5rem;
  max-width: 720px;
}

.collection h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 2rem;
}

.collection ul {
  list-style: none;
}

.collection li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  animation: fade-up 0.8s ease both;
}

.collection li:last-child {
  border-bottom: 1px solid var(--line);
}

.collection li:nth-child(1) { animation-delay: 0.1s; }
.collection li:nth-child(2) { animation-delay: 0.2s; }
.collection li:nth-child(3) { animation-delay: 0.3s; }

.item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.item-meta {
  font-size: 0.85rem;
  color: var(--mute);
  white-space: nowrap;
}

footer {
  padding: 0 clamp(1.25rem, 5vw, 4rem) 3rem;
  font-size: 0.85rem;
  color: var(--mute);
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plane-in {
  from {
    opacity: 0;
    transform: scaleY(0.85);
    transform-origin: center;
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes draw {
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
