@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Montserrat:wght@300;400&display=swap');

:root {
  --warm: #faf8f5;
  --warm-mid: #f2ede7;
  --black: #0d0b0a;
  --grey: #888;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm);
  color: var(--black);
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--warm);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
}

.nav-back {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav-back:hover { border-color: var(--black); }

/* HERO */
.collection-hero {
  padding-top: 70px;
  height: 60vh;
  min-height: 400px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.collection-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 60px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
}

.hero-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0.6;
}

/* INTRO */
.collection-intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.collection-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}

/* GALLERY GRID */
.gallery-section {
  padding: 0 40px 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
}

.gallery-item {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #e8e4de;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* SECTION LABEL */
.section-label {
  text-align: center;
  padding: 60px 40px 40px;
}

.section-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section-label .divider {
  width: 40px;
  height: 1px;
  background: var(--black);
  margin: 20px auto 0;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

footer a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .hero-text { padding: 40px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.two-col { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 2/3; }
  footer { padding: 30px 24px; flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
