:root {
  --ink: #11100e;
  --muted: #6f675e;
  --paper: #f5efe6;
  --paper-2: #e8ded0;
  --gold: #b99355;
  --white: #fffaf3;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img { width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(245, 239, 230, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
}

.brand {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  letter-spacing: .26em;
  line-height: 1;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .18em;
}

.brand-sub {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: .55em;
  text-align: center;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.8vw, 42px);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  opacity: .72;
}
.nav a:hover { opacity: 1; }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 58px);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
}

.hero-media {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 36px 90px rgba(17, 16, 14, .18);
}

.hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 8vw, 118px);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 22px 0;
}

h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.03em;
}

h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.lede, .split-section p, .lookbook-header p, .signup p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  cursor: pointer;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}
.button-secondary {
  color: var(--ink);
  background: transparent;
}

.split-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 130px) clamp(20px, 4vw, 58px);
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 6vw, 110px);
  align-items: start;
}

.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 58px) clamp(72px, 10vw, 150px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 420px;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.feature-card.large { grid-row: span 2; }

.feature-card img {
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .8s ease, opacity .8s ease;
}

.feature-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.card-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(22px, 3vw, 42px);
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}

.collections {
  background: var(--ink);
  color: var(--white);
  padding: clamp(70px, 10vw, 140px) clamp(20px, 4vw, 58px);
}

.collections > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.collection-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}

.collection {
  min-height: 180px;
  color: var(--white);
  text-decoration: none;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
}
.collection small {
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.lookbook {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 58px);
}

.lookbook-header {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  margin-bottom: 46px;
  align-items: end;
}

.masonry {
  columns: 3 300px;
  column-gap: 18px;
}

.masonry-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
  overflow: hidden;
}

.masonry-item img {
  transition: transform .55s ease, filter .55s ease;
}

.masonry-item:hover img {
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.quote-band {
  margin: 0;
  min-height: 54vh;
  background: linear-gradient(rgba(17,16,14,.28), rgba(17,16,14,.52)), url("assets/tempra-collateral-08.png") center/cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 110px);
}

.quote-band p {
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
}

.quote-band h2 { max-width: 860px; }

.signup {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 4vw, 58px);
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}

.signup-form {
  background: var(--paper-2);
  padding: clamp(24px, 4vw, 48px);
}

label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17,16,14,.45);
  background: transparent;
  padding: 18px 0;
  font: inherit;
  font-size: 18px;
  outline: none;
  margin-bottom: 24px;
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  color: var(--gold);
}

.footer {
  border-top: 1px solid rgba(17,16,14,.12);
  padding: 28px clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  color: var(--muted);
}

.footer .brand { color: var(--ink); }
.footer .brand-name { font-size: 24px; }
.footer .brand-sub { font-size: 9px; }

.lightbox {
  width: min(94vw, 1200px);
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop { background: rgba(0,0,0,.82); }

.lightbox img {
  max-height: 92vh;
  width: auto;
  max-width: 100%;
  margin: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; gap: 16px; }
  .nav { display: none; }
  .hero, .split-section, .lookbook-header, .signup { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .feature-card, .feature-card.large { grid-row: auto; min-height: 420px; }
  .collection-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .collection-row { grid-template-columns: 1fr; }
  h1 { font-size: 58px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
