:root {
  --bg: #f5ead9;
  --bg-soft: #fff8ef;
  --ink: #1f1b18;
  --muted: #695f57;
  --accent: #c85a2e;
  --accent-dark: #8f3717;
  --panel: rgba(255, 248, 239, 0.78);
  --shadow: 0 24px 80px rgba(93, 44, 18, 0.18);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 90, 46, 0.3), transparent 30%),
    radial-gradient(circle at right center, rgba(143, 55, 23, 0.18), transparent 25%),
    linear-gradient(135deg, #f1ddbf 0%, #f8efe3 48%, #ead2bc 100%);
}
img { display: block; width: 100%; }
.page { min-height: 100vh; display: grid; place-items: center; padding: 32px; }
.spotlight {
  width: min(1180px, 100%);
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(143, 55, 23, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.92), rgba(255, 248, 239, 0.7)), var(--bg-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  animation: panel-in 0.85s ease-out both;
}
.spotlight::before, .spotlight::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200, 90, 46, 0.16), rgba(143, 55, 23, 0.06));
}
.spotlight::before { width: 220px; height: 220px; top: -90px; right: -60px; }
.spotlight::after { width: 180px; height: 180px; bottom: -80px; left: -30px; }
.spotlight__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  animation: rise-in 0.8s 0.12s ease-out both;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.7rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.lead { margin: 22px 0 0; font-size: 1.08rem; line-height: 1.7; color: var(--muted); }
.highlights { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.highlights article {
  padding: 18px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(143, 55, 23, 0.14);
  backdrop-filter: blur(8px);
}
.highlights span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.highlights strong { font-size: 0.98rem; line-height: 1.5; }
.spotlight__visual { position: relative; min-height: 560px; animation: rise-in 0.9s 0.24s ease-out both; }
.card { margin: 0; overflow: hidden; border-radius: 28px; box-shadow: 0 18px 50px rgba(63, 33, 18, 0.2); }
.card img { height: 100%; object-fit: cover; }
.card--city { position: absolute; inset: 0 78px 110px 0; }
.card--city::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 10, 8, 0.03), rgba(12, 10, 8, 0.45)); }
.card--city figcaption {
  position: absolute;
  left: 22px;
  right: 118px;
  bottom: 18px;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff6ea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}
.card--profile {
  position: absolute;
  width: min(280px, 52%);
  right: 0;
  bottom: 0;
  aspect-ratio: 1 / 1.08;
  border: 8px solid rgba(255, 248, 239, 0.95);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 960px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__content { max-width: none; }
  .spotlight__visual { min-height: 520px; }
}
@media (max-width: 680px) {
  .page { padding: 16px; }
  .spotlight { padding: 22px; border-radius: 24px; }
  .highlights { grid-template-columns: 1fr; }
  .spotlight__visual { min-height: 430px; }
  .card--city { inset: 0 0 110px 0; }
  .card--profile { width: 190px; border-width: 6px; }
  .card--city figcaption { right: 22px; }
}
