* {
  box-sizing: border-box;
}

:root {
  --bg: #0f0d0c;
  --panel: rgba(29, 24, 21, 0.76);
  --panel-strong: rgba(245, 235, 223, 0.08);
  --text: #f5ecdf;
  --muted: #c8b9a4;
  --accent: #b33a27;
  --accent-soft: rgba(179, 58, 39, 0.18);
  --line: rgba(245, 235, 223, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(179, 58, 39, 0.34), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(245, 235, 223, 0.12), transparent 20%),
    linear-gradient(135deg, #090807 0%, #13100f 48%, #0b0908 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.26;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(17, 14, 12, 0.58);
  backdrop-filter: blur(14px);
}

.topbar {
  border-radius: 26px 26px 18px 18px;
}

.footer {
  margin-top: 22px;
  border-radius: 18px 18px 26px 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.brand-mark,
.topbar-copy,
.footer p {
  margin: 0;
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.topbar-copy {
  color: var(--muted);
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 22px;
  margin-top: 22px;
}

.hero-copy,
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 235, 223, 0.05), rgba(245, 235, 223, 0.01));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 34px 18px 18px 34px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 58, 39, 0.55), transparent 70%);
  filter: blur(12px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 18px 34px 34px 18px;
  background:
    linear-gradient(160deg, rgba(179, 58, 39, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(17, 14, 12, 0.95), rgba(21, 17, 15, 0.8));
}

.eyebrow {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid rgba(245, 235, 223, 0.18);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 9ch;
}

.lead,
.message-card p {
  position: relative;
  z-index: 1;
}

.lead {
  max-width: 32rem;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.8;
}

.message-card {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(179, 58, 39, 0.16), rgba(255, 255, 255, 0.02));
}

.message-card p {
  margin: 0;
  line-height: 1.75;
}

.message-note {
  margin-top: 12px !important;
  color: var(--muted);
  font-size: 0.95rem;
}

.pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--text);
  font-size: 0.9rem;
}

.visual-frame {
  position: relative;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(245, 235, 223, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(34, 28, 24, 0.85), rgba(12, 10, 9, 0.98));
  box-shadow: var(--shadow);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: contain;
  border-radius: 20px;
  background: #f4efe7;
  filter: saturate(0.96) contrast(1.04);
}

.floating-card {
  position: absolute;
  left: -16px;
  bottom: 34px;
  width: min(78%, 320px);
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(179, 58, 39, 0.92);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.floating-label,
.floating-title,
.vertical-note {
  margin: 0;
}

.floating-label {
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 240, 0.82);
}

.floating-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.vertical-note {
  position: absolute;
  right: 10px;
  top: 44px;
  color: rgba(245, 235, 223, 0.35);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.14s;
}

.delay-2 {
  animation-delay: 0.28s;
}

.delay-3 {
  animation-delay: 0.4s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-copy,
  .hero-visual,
  .topbar,
  .footer {
    border-radius: 24px;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    padding: 20px;
  }

  .vertical-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .topbar-copy {
    text-align: left;
  }

  .hero-copy {
    padding: 28px 20px;
  }

  .lead {
    line-height: 1.7;
  }

  .message-card {
    padding: 18px;
  }

  .visual-frame {
    padding: 12px;
    border-radius: 22px;
  }

  .visual-frame img {
    height: 420px;
    border-radius: 14px;
  }

  .floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
