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

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

:root {
  --cream: #f7f4ef;
  --warm-white: #faf9f7;
  --text: #2a2520;
  --text-light: #9a9089;
  --accent: #c4a882;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, var(--warm-white) 60%, transparent);
}

.contact-link {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--text);
}

.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ── Main / Collage ── */
main {
  flex: 1;
  padding: 120px 3rem 4rem;
}

.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collage-item {
  overflow: hidden;
  background: var(--cream);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: saturate(0.9);
}

.collage-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

/* Asymmetric collage layout */
.item-1 {
  grid-column: 1 / 8;
  grid-row: 1;
  height: 520px;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.1s;
}

.item-2 {
  grid-column: 8 / 13;
  grid-row: 1;
  height: 520px;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.25s;
}

.item-3 {
  grid-column: 1 / 5;
  grid-row: 2;
  height: 380px;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.4s;
}

.item-4 {
  grid-column: 5 / 13;
  grid-row: 2;
  height: 380px;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.55s;
}

/* ── Footer ── */
footer {
  padding: 3rem;
  text-align: center;
  border-top: 1px solid rgba(196, 168, 130, 0.25);
  margin-top: 2rem;
}

footer p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

footer a:hover {
  color: var(--accent);
  border-color: transparent;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  header {
    padding: 1.5rem 1.5rem;
  }

  main {
    padding: 100px 1.5rem 3rem;
  }

  .collage {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .item-1, .item-2, .item-3, .item-4 {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }
}

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

  .item-1, .item-2, .item-3, .item-4 {
    height: 260px;
  }

  .logo {
    height: 36px;
  }
}