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

:root {
  --bg: #0d0d0d;
  --bg-soft: #141414;
  --text: #e8e6e3;
  --text-muted: #6b6b6b;
  --accent: #c9a962;
  --accent-dim: rgba(201, 169, 98, 0.4);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Atmospheric overlays */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 2;
}

/* Background shapes */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  color: var(--accent);
  opacity: 0.25;
}

.bg-shape svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
}

.bg-shape--umbrella {
  top: 8%;
  left: 5%;
  width: 4rem;
  transform: rotate(-12deg);
}

.bg-shape--jet {
  top: 12%;
  right: 8%;
  width: 5rem;
  transform: rotate(8deg);
}

.bg-shape--yacht {
  bottom: 25%;
  left: 3%;
  width: 6rem;
  transform: rotate(-5deg);
}

.bg-shape--compass {
  bottom: 20%;
  right: 6%;
  width: 3.5rem;
  transform: rotate(15deg);
}

.bg-shape--suitcase {
  top: 35%;
  right: 4%;
  width: 3rem;
  transform: rotate(-8deg);
}

.bg-shape--palm {
  top: 45%;
  left: 2%;
  width: 3rem;
  transform: rotate(6deg);
}

.bg-shape--champagne {
  top: 22%;
  left: 12%;
  width: 2rem;
  transform: rotate(-15deg);
}

.bg-shape--globe {
  bottom: 35%;
  left: 8%;
  width: 4rem;
  transform: rotate(-10deg);
}

.bg-shape--passport {
  bottom: 8%;
  left: 12%;
  width: 2.5rem;
  transform: rotate(12deg);
}

.bg-shape--anchor {
  bottom: 30%;
  right: 15%;
  width: 3rem;
  transform: rotate(-18deg);
}

.bg-shape--mountain {
  top: 55%;
  right: 12%;
  width: 4rem;
  transform: rotate(5deg);
}

.bg-shape--key {
  top: 25%;
  left: 25%;
  width: 2.5rem;
  transform: rotate(-25deg);
}

@media (max-width: 640px) {
  .bg-shape--umbrella { width: 2.5rem; left: 2%; }
  .bg-shape--jet { width: 3rem; right: 2%; }
  .bg-shape--yacht { width: 3.5rem; left: 1%; }
  .bg-shape--compass { width: 2.5rem; right: 2%; }
  .bg-shape--suitcase { width: 2rem; right: 2%; }
  .bg-shape--palm { width: 2rem; }
  .bg-shape--champagne { width: 1.5rem; left: 8%; }
  .bg-shape--globe { width: 2.5rem; }
  .bg-shape--passport { width: 1.8rem; }
  .bg-shape--anchor { width: 2rem; right: 8%; }
  .bg-shape--mountain { width: 2.5rem; }
  .bg-shape--key { width: 1.8rem; left: 15%; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.35em;
}

.tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Main */
main {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
}

/* Hero */
.hero {
  text-align: center;
  max-width: 36rem;
}

.hero-sub {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-title .line:first-child {
  animation-delay: 0.9s;
}

.hero-title .line:last-child {
  animation-delay: 1.1s;
}

.hero-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

.line-accent {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

.symbol {
  font-size: 0.5rem;
  color: var(--accent);
  opacity: 0.6;
}

/* About */
.about {
  max-width: 28rem;
  text-align: center;
}

.about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

/* CTA */
.cta {
  margin-top: 4rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.cta-hint {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cta-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent-dim);
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-link:hover {
  background: var(--accent-dim);
  color: var(--text);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: center;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}

.footer .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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