:root {
  --bg: #f7f2ea;
  --bg-deep: #ede6dc;
  --ink: #312b25;
  --muted: rgba(49, 43, 37, 0.6);
  --line: rgba(49, 43, 37, 0.08);
  --card: #fcf8f2;
  --shadow: 0 10px 26px rgba(35, 28, 22, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(180deg, #fbf8f4 0%, var(--bg) 48%, var(--bg-deep) 100%);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "PingFang SC",
    "Helvetica Neue",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 40px, 40px 100%;
  opacity: 0.16;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 28px 0 96px;
}

.site-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker,
.section-index,
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-size: 40px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: "Baskerville", "Times New Roman", "Songti SC", serif;
  font-weight: 600;
  line-height: 1.05;
}

.head-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.head-status {
  font-size: 14px;
  color: var(--muted);
}

.head-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 38px;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.06;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 8ch;
  font-size: clamp(46px, 7.4vw, 92px);
}

h2 {
  max-width: 10ch;
  font-size: clamp(30px, 4.6vw, 54px);
}

.lead,
.text-panel p {
  max-width: 31rem;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.hero-image,
.frame,
.quote-band {
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 38, 33, 0.06);
}

.hero-image,
.frame {
  overflow: hidden;
}

.hero-image img,
.frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  image-orientation: from-image;
}

.hero-image:hover img,
.frame:hover img {
  transform: scale(1.012);
}

.hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.duo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding-top: 108px;
}

.text-panel {
  padding: 30px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  padding-top: 118px;
}

.frame {
  border-radius: 12px;
  cursor: zoom-in;
}

.frame.large {
  grid-column: 1 / span 7;
  aspect-ratio: 16 / 10;
}

.frame.portrait {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.frame.landscape {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.quote-band {
  margin-top: 112px;
  padding: 34px 30px;
  border-radius: 12px;
}

.quote-band p {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.42;
  letter-spacing: -0.02em;
  font-family: Georgia, "Times New Roman", serif;
}

.film-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.frame.film {
  aspect-ratio: 4 / 5;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 15, 14, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 60;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 90px);
  border-radius: 14px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.fix-rotate-180 {
  transform: rotate(180deg);
}

.frame:hover img.fix-rotate-180 {
  transform: rotate(180deg) scale(1.018);
}

@media (max-width: 900px) {
  .hero,
  .duo-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .frame.large,
  .frame.portrait,
  .frame.landscape {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 16px, 1280px);
    padding-top: 14px;
  }

  .site-head {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .film-row,
  .editorial-grid {
    grid-template-columns: 1fr;
  }
}
