:root {
  --ink: #0c0b0a;
  --ink-lift: #1c1917;
  --ivory: #f4f0ea;
  --ivory-mute: rgba(244, 240, 234, 0.72);
  --champagne: #b8a078;
  --line: rgba(244, 240, 234, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.55;
  background: var(--ink);
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(184, 160, 120, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(80, 60, 40, 0.35), transparent 55%),
    linear-gradient(165deg, #141210 0%, #0c0b0a 45%, #080707 100%);
}

.atmosphere__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(244, 240, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 234, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.atmosphere__veil {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 35%, rgba(184, 160, 120, 0.08) 50%, transparent 65%);
  animation: veil-drift 16s ease-in-out infinite;
}

@keyframes veil-drift {
  0%, 100% { transform: translateX(-6%) translateY(2%); opacity: 0.5; }
  50% { transform: translateX(6%) translateY(-2%); opacity: 1; }
}

.brand-bar,
.hero,
.site-foot {
  position: relative;
  z-index: 1;
}

.brand-bar {
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 5vw, 4rem) 0;
  animation: rise 1s ease-out both;
}

.brand-logo {
  display: block;
  width: min(11.5rem, 42vw);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.brand-sub {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--champagne);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - 9rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.hero__copy {
  max-width: 36rem;
  animation: rise 1.1s ease-out 0.12s both;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.3rem;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.lede {
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  color: var(--ivory-mute);
  max-width: 32rem;
  margin-bottom: 2.35rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.cta--primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.cta--primary:hover {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

.cta--ghost {
  background: transparent;
  color: var(--ivory-mute);
  border-color: var(--line);
}

.cta--ghost:hover {
  color: var(--ivory);
  border-color: rgba(244, 240, 234, 0.45);
}

.hero__visual {
  display: flex;
  justify-content: center;
  animation: rise 1.2s ease-out 0.25s both;
}

.visual-plane {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #050505;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(184, 160, 120, 0.18);
}

.visual-plane__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 45% 40%, rgba(184, 160, 120, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(80, 150, 220, 0.12), transparent 60%);
  animation: glow-breathe 10s ease-in-out infinite;
  pointer-events: none;
}

.visual-plane__logo {
  position: relative;
  z-index: 1;
  width: 86%;
  height: auto;
  animation: logo-settle 1.4s ease-out 0.2s both;
}

@keyframes logo-settle {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

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

.site-foot {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 234, 0.42);
  animation: rise 1.2s ease-out 0.4s both;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.75rem;
  }

  .hero__visual {
    order: -1;
  }

  .brand-logo {
    width: min(9.5rem, 48vw);
  }

  .visual-plane {
    width: min(100%, 20rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
