:root {
  --ink: #192f59;
  --accent: #7d003c;
  --paper: #f7f5f0;
  --body: #3a3a3a;
  --shadow: 0 0 33px rgba(10, 10, 10, 0.075);
  --shadow-hover: 0 12px 40px rgba(10, 10, 10, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--body);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.marquee {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 6vh;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  opacity: 0.12;
  color: var(--accent);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 1;
  letter-spacing: -0.01em;
  animation: drift 60s linear infinite;
}
.marquee span { display: inline-block; padding-right: 6vw; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 28px 60px;
}

.masthead {
  text-align: center;
  margin-bottom: 56px;
}

.wordmark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #5a5a5a;
  margin: 0;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
  margin-bottom: 80px;
}

@media (max-width: 720px) {
  .tiles { grid-template-columns: 1fr; gap: 28px; }
  .page { padding: 56px 20px 48px; }
}

.tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease;
}

.tile:hover { transform: translateY(-4px); }
.tile:hover .tile-image { box-shadow: var(--shadow-hover); }
.tile:hover .tile-title { color: var(--accent); }

.tile-image {
  position: relative;
  aspect-ratio: 2 / 1;
  width: 100%;
  background: #e7e2d8;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 220ms ease;
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 18px 0 0;
  text-align: center;
  transition: color 180ms ease;
}

.tile-soon {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #8a8a8a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.tile--placeholder { cursor: default; }
.tile--placeholder:hover { transform: none; }
.tile--placeholder:hover .tile-image { box-shadow: var(--shadow); }
.tile--placeholder:hover .tile-title { color: var(--ink); }
.tile--placeholder .tile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 240, 0.35);
}

.foot {
  text-align: center;
  font-size: 13px;
  color: #8a8a8a;
  padding-top: 32px;
  border-top: 1px solid #e7e2d8;
}
.foot p { margin: 0; }
