﻿:root {
  --bg: #111111;
  --text: #fff7e8;
  --muted: #d6cdbf;
  --yellow: #f6bf1f;
  --red-1: #ff3a28;
  --red-2: #d61d14;
  --red-3: #a80e0a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 191, 31, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(220, 58, 47, 0.2), transparent 25%),
    linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
}

body.modal-open {
  overflow: hidden;
}

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

.topbar, .hero-solo, .story-strip, .promo-banner, .cards-grid, .split-layout, .contact-grid {
  animation: rise 700ms ease both;
}

.reveal-section .story-strip article,
.reveal-section .promo-banner > *,
.reveal-section .cards-grid .feature-card,
.reveal-section .split-layout > *,
.reveal-section .contact-grid .contact-card,
.reveal-pill,
.hero-copy > * {
  will-change: transform, opacity, filter;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.brand-pill, .top-link, .story-strip article, .tag {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-pill, .top-link {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.top-link { color: var(--text); text-decoration: none; }
.social-link, .instagram-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-link svg, .instagram-inline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}
.instagram-inline {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.instagram-inline:hover, .social-link:hover { color: var(--yellow); }

.hero-solo { display: block; }

.hero-card, .promo-banner, .feature-card, .info-panel, .contact-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  isolation: isolate;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 210, 77, 0.28), transparent 20%),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(135deg, #ff4936 0%, var(--red-2) 48%, var(--red-3) 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 243, 223, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.18) 34%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 18px);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero-frame,
.hero-orb {
  position: absolute;
  pointer-events: none;
}

.hero-frame {
  border-radius: 999px;
  opacity: 0.85;
  filter: blur(0.2px);
}

.hero-frame-a {
  top: 16px;
  right: 22px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 233, 210, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 233, 210, 0.06), 0 0 60px rgba(255, 194, 82, 0.12);
  animation: driftSpin 18s linear infinite;
}

.hero-frame-b {
  left: -30px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 233, 210, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 233, 210, 0.04), 0 0 80px rgba(255, 90, 70, 0.1);
  animation: driftSpinReverse 24s linear infinite;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.7;
  z-index: -1;
}

.hero-orb-a {
  top: 12%;
  right: 12%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 214, 98, 0.85) 0%, rgba(255, 214, 98, 0) 72%);
  animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-b {
  left: 4%;
  bottom: 8%;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 96, 78, 0.72) 0%, rgba(255, 96, 78, 0) 74%);
  animation: floatOrb 14s ease-in-out infinite reverse;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  z-index: -1;
}
.glow-one {
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -30px;
  background: rgba(255, 191, 31, 0.78);
}
.glow-two {
  width: 180px;
  height: 180px;
  left: -30px;
  top: -35px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.hero-logo-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.16), rgba(255, 247, 232, 0.04)),
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 20px 40px rgba(97, 11, 6, 0.34);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: shellPulse 6s ease-in-out infinite;
}

.hero-logo-shell::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 38px;
  background: conic-gradient(from 180deg, rgba(255, 206, 92, 0.8), rgba(255, 255, 255, 0.12), rgba(255, 84, 64, 0.5), rgba(255, 206, 92, 0.8));
  filter: blur(18px);
  opacity: 0.8;
  z-index: -1;
}

.hero-logo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(320deg, transparent 58%, rgba(255, 255, 255, 0.12) 76%, transparent 88%);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.hero-logo {
  display: block;
  width: 172px;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0;
  border-radius: 50%;
  border: 8px solid rgba(255, 233, 210, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.eyebrow, .card-kicker {
  margin: 0 0 12px;
  color: #ffe4c4;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: rgba(23, 23, 23, 0.82); }

h1, h2, h3 {
  margin: 0;
  line-height: 0.95;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 5.9rem);
}

h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: 2rem; }

.lead, .feature-card p, .info-panel p, .promo-banner p, .contact-card p {
  line-height: 1.6;
  font-size: 1rem;
}

.lead {
  max-width: 34rem;
  margin: 16px 0 0;
  font-size: 1.04rem;
  color: rgba(255, 243, 223, 0.92);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-badge-stack,
.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge-stack span,
.hero-mini-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 223, 0.16);
  background: rgba(20, 8, 8, 0.18);
  color: rgba(255, 243, 223, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary {
  color: #320b07;
  background: linear-gradient(180deg, #ffd04d 0%, #ffb91a 100%);
  box-shadow: 0 12px 30px rgba(255, 191, 31, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.button.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 191, 31, 0.42);
  filter: saturate(1.06);
}

.magnetic-button {
  position: relative;
  overflow: hidden;
}
.magnetic-button::after {
  content: "";
  position: absolute;
  inset: -140% auto auto -30%;
  width: 60%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}
.magnetic-button:hover::after {
  opacity: 1;
  animation: sheen 1s ease;
}

.section { margin-top: 28px; }
.story-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.story-strip article {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #262626 0%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.promo-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: end;
  padding: 30px 32px;
  background: linear-gradient(90deg, rgba(246, 191, 31, 0.98), rgba(246, 191, 31, 0.82)), linear-gradient(180deg, #f6bf1f 0%, #f3aa16 100%);
  color: #171717;
}
.promo-banner p { color: rgba(23, 23, 23, 0.82); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card { min-height: 280px; }
.tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
}
.media-card {
  overflow: hidden;
  padding: 0 0 24px;
  background: linear-gradient(180deg, #1d1d1d 0%, #111111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 220ms ease, filter 220ms ease;
}

.promo-trigger:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}
.media-card .tag, .media-card h3, .media-card p {
  padding-left: 24px;
  padding-right: 24px;
}
.media-card p, .info-panel p, .contact-card p { color: var(--muted); }

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.info-panel {
  padding: 30px;
  background: linear-gradient(180deg, #1c1c1c 0%, #121212 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.accent-panel {
  background: radial-gradient(circle at top right, rgba(246, 191, 31, 0.18), transparent 32%), linear-gradient(180deg, #1e1510 0%, #151515 100%);
}
.big-time {
  margin: 14px 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
}
.section-heading { margin-bottom: 18px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  padding: 28px;
  background: linear-gradient(180deg, #1b1b1b 0%, #111111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.promo-modal[hidden] {
  display: none;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
}

.promo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.96), rgba(18, 18, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.promo-modal-image {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: contain;
  background: #0b0b0b;
}

.promo-modal-copy {
  padding: 18px 8px 8px;
}

.promo-modal-copy p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -12px, 0) scale(1.06); }
}

@keyframes driftSpin {
  from { transform: rotate(0deg) translate3d(0, 0, 0); }
  50% { transform: rotate(180deg) translate3d(8px, -6px, 0); }
  to { transform: rotate(360deg) translate3d(0, 0, 0); }
}

@keyframes driftSpinReverse {
  from { transform: rotate(360deg) translate3d(0, 0, 0); }
  50% { transform: rotate(180deg) translate3d(-10px, 8px, 0); }
  to { transform: rotate(0deg) translate3d(0, 0, 0); }
}

@keyframes shellPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.015); }
}

@keyframes sheen {
  from { transform: translateX(-20%) rotate(24deg); }
  to { transform: translateX(220%) rotate(24deg); }
}

@media (max-width: 980px) {
  .promo-banner, .cards-grid, .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .story-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }
  .topbar {
    gap: 12px;
    align-items: stretch;
    flex-direction: column;
  }
  .social-link { justify-content: center; }
  .hero-card, .promo-banner, .feature-card, .info-panel, .contact-card {
    border-radius: 24px;
  }
  .hero-card {
    padding: 20px;
  }
  .hero-frame-a,
  .hero-frame-b {
    opacity: 0.45;
  }
  .hero-card::before {
    inset: 8px;
    border-radius: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-visual {
    justify-items: start;
  }
  .hero-logo-shell {
    width: 190px;
    border-radius: 24px;
  }
  .hero-logo { width: 138px; }
  .story-strip { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .lead { font-size: 1rem; }
}
