/* IMAGE SLOTS */
.img-slot {
  background: transparent;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.img-slot input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* HERO */
.hero { padding: 80px 60px 60px; max-width: 1100px; margin: 0 auto; }
.hero-year { font-size: 12px; color: var(--mid); letter-spacing: 0.05em; margin-bottom: 16px; }
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.hero-meta { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--rule); flex-wrap: wrap; }
.meta-block { display: flex; flex-direction: column; gap: 4px; }
.meta-block dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); }
.meta-block dd { font-size: 14px; font-weight: 500; color: var(--ink); }

/* HERO IMAGE */
.hero-image-wrap { max-width: 1196px; margin: 0 auto; padding: 0 24px 80px; }
.hero-image-card { border-radius: 8px; overflow: hidden; }
.hero-image-card .img-slot { aspect-ratio: 15/7; }

/* CONTENT */
.content { max-width: 1100px; margin: 0 auto; padding: 0 60px; }

/* SECTION ROW */
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.section-row.reverse { direction: rtl; }
.section-row.reverse > * { direction: ltr; }

/* IMAGE CARDS */
.section-image-card { border-radius: 8px; padding: 32px 32px 0; overflow: hidden; }
.section-image-card.orange { background: var(--orange); }
.section-image-card.lilac  { background: var(--lilac); }
.section-image-card.yellow { background: var(--yellow); }
.section-image-card.warm   { background: #d4c5b0; }
.section-image-card.sage   { background: #b5c4b1; }
.section-image-card.clay   { background: #dbcfc8; }
.section-image-card .img-slot { aspect-ratio: 4/3; }

/* TEXT */
.section-text { padding-top: 16px; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid); margin-bottom: 12px; }
.section-title { font-family: 'Lora', serif; font-size: clamp(22px, 2.8vw, 36px); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-body { font-size: 14px; color: var(--mid); line-height: 1.75; max-width: 440px; }
.section-body p + p { margin-top: 12px; }

/* DISCOVERY */
.discovery { margin-top: 20px; padding: 16px 20px; background: rgba(0,0,0,0.04); border-radius: 6px; border-left: 2px solid var(--ink); }
.discovery .d-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid); margin-bottom: 6px; }
.discovery p { font-size: 13px; color: var(--ink); line-height: 1.6; max-width: none; }

/* FULL WIDTH IMAGE */
.full-image {
  width: 100%;
  padding: 8px 0;
}
.full-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* FOOTER */
footer { max-width: 1100px; margin: 0 auto; padding: 48px 60px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Lora', serif; font-size: 15px; color: var(--ink); text-decoration: none; }
.footer-back { font-size: 13px; color: var(--mid); text-decoration: none; transition: color 0.15s; }
.footer-back:hover { color: var(--ink); }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero, .hero-image-wrap, .content { padding-left: 24px; padding-right: 24px; }
  .section-row { grid-template-columns: 1fr; gap: 40px; }
  .section-row.reverse { direction: ltr; }
}
