@font-face {
  font-family: 'NovelSansRdPro';
  src: url('/fonts/NovelSansRdPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NovelSansPro';
  src: url('/fonts/novel-sans-pro-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --color-background: hsl(40, 33%, 94%);
  --color-foreground: hsl(230, 70%, 22%);
  --color-primary: hsl(230, 70%, 28%);
  --color-primary-fg: hsl(40, 33%, 94%);
  --color-secondary: hsl(38, 55%, 50%);
  --color-caramel: hsl(38, 55%, 50%);
  --color-saffron: hsl(42, 80%, 55%);
  --color-tiger: hsl(22, 80%, 52%);
  --color-sand: hsl(40, 33%, 94%);
}

body {
  font-family: 'NovelSansRdPro', sans-serif;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  background: var(--color-background);
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      hsla(230, 70%, 22%, 0.55),
      hsla(230, 70%, 22%, 0.35),
      hsla(230, 70%, 22%, 0.75));
}

/* ── Leaf decorations ─────────────────────────────── */

.leaf {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leaf-left {
  bottom: -5rem;
  right: -8rem;
  width: 20rem;
  opacity: 0.06;
  transform: rotate(25deg);
}

.leaf-right {
  top: -4rem;
  left: -8rem;
  width: 24rem;
  opacity: 0.04;
  transform: scaleX(-1) rotate(15deg);
}

.leaf-accent {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  width: 10rem;
  opacity: 0.15;
}

.leaf-contact-left {
  position: absolute;
  right: -3rem;
  bottom: 2rem;
  width: 16rem;
  opacity: 0.06;
  transform: rotate(40deg);
}

/* ── Hero content ─────────────────────────────────── */

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 0;
  text-align: center;
}

.hero-logo {
  max-width: 22rem;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.15));
}

u .divider {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  height: 1px;
  width: 5rem;
  background: linear-gradient(90deg, transparent, var(--color-saffron), transparent);
}

.launching {
  font-family: 'NovelSansPro', sans-serif;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-saffron);
}

.description {
  margin-top: 1.2rem;
  font-size: 0.875rem;
  color: hsla(40, 33%, 94%, 0.7);
  max-width: 28rem;
  line-height: 1.75;
}

.scroll-indicator {
  position: relative;
  z-index: 10;
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsla(40, 33%, 94%, 0.45);
}

.scroll-indicator span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ── Brand strip ────────────────────── */

.brand-strip {
  position: relative;
  overflow: hidden;
  background: var(--color-sand);
  padding: 4rem 2rem;
}

.strip-inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.brand-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.brand-quote::before,
.brand-quote::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, var(--color-caramel), var(--color-tiger));
  border-radius: 1px;
}

.brand-quote::after {
  margin: 1.5rem auto 0;
}

/* ── Contact ──────────────────────────────────────── */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  padding: 5rem 1.5rem;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.mission {
  font-size: 1.5rem;
  color: var(--color-primary-fg);
  line-height: 1.4;
}

.divider-small {
  margin: 2.5rem auto 2rem;
  height: 1px;
  width: 4rem;
  background: linear-gradient(90deg, transparent, var(--color-saffron), transparent);
}

.emails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.email-group {
  text-align: center;
}

.email-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-saffron);
  margin-bottom: 0.4rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(40, 33%, 94%, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.email-link svg {
  color: hsla(42, 80%, 55%, 0.6);
  transition: color 0.2s;
}

.email-link:hover {
  color: var(--color-saffron);
}

.email-link:hover svg {
  color: var(--color-saffron);
}

.socials {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid hsla(40, 33%, 94%, 0.15);
  color: hsla(40, 33%, 94%, 0.5);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
  border-color: var(--color-saffron);
  color: var(--color-saffron);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 3.5rem;
  font-size: 0.7rem;
  color: hsla(40, 33%, 94%, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Animations ───────────────────────────────────── */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.fade-in {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
}

.fade-in-d2 {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

.fade-in-d3 {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.5s forwards;
}

.fade-in-d4 {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.7s forwards;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25%);
  }
}

.bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

/* ── Responsive ───────────────────────────────────── */

@media (min-width: 640px) {
  .hero-logo {
    max-width: 28rem;
  }

  .leaf-left {
    width: 26rem;
    opacity: 0.07;
    bottom: -6rem;
    left: -8rem;
  }

  .leaf-right {
    width: 30rem;
    opacity: 0.05;
    top: -4rem;
    right: -8rem;
  }

  .description {
    font-size: 1rem;
  }

  .brand-strip {
    padding: 5rem 2rem;
  }

  .brand-quote {
    font-size: 1.35rem;
  }

  .contact {
    padding: 6rem 1.5rem;
  }

  .mission {
    font-size: 1.875rem;
  }

  .emails {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-logo {
    max-width: 34rem;
  }

  .mission {
    font-size: 2.25rem;
  }

  .leaf-accent {
    width: 14rem;
  }
}

@media (min-width: 1024px) {
  .leaf-left {
    width: 32rem;
    opacity: 0.08;
  }

  .leaf-right {
    width: 36rem;
    opacity: 0.05;
  }

  .leaf-contact-left {
    width: 22rem;
    opacity: 0.05;
  }
}