@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #14182b;
  --ink-soft: #3d4563;
  --sand: #fff6ec;
  --cream: #ffe8d2;
  --night: #0b1430;
  --night-2: #15224a;
  --coral: #ff5c3a;
  --amber: #ffc24b;
  --teal: #1fbea8;
  --sky: #5b8cff;
  --line: rgba(20, 24, 43, 0.1);
  --glow: rgba(255, 92, 58, 0.35);
  --radius: 22px;
  --max: 1140px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.brand-mark {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Animated site atmosphere */
.bg-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orbit span {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.28;
  animation: drift 18s ease-in-out infinite;
}

.bg-orbit .o1 {
  width: 180px;
  height: 180px;
  left: -40px;
  top: 18%;
  background: radial-gradient(circle at 30% 30%, #ffd27a, #ff5c3a 70%);
}

.bg-orbit .o2 {
  width: 120px;
  height: 120px;
  right: 8%;
  top: 42%;
  background: radial-gradient(circle at 30% 30%, #9ff3e4, #1fbea8 70%);
  animation-delay: -6s;
}

.bg-orbit .o3 {
  width: 90px;
  height: 90px;
  left: 22%;
  bottom: 12%;
  background: radial-gradient(circle at 30% 30%, #c5d6ff, #5b8cff 70%);
  animation-delay: -11s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -30px, 0) scale(1.08);
  }
}

.site {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 246, 236, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 246, 236, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.logo img,
.footer-brand img {
  width: 42px;
  height: 42px;
}

.brand-mark {
  font-size: 1.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--coral);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--night);
  color: #fff !important;
  font-size: 0.85rem !important;
}

.nav-cta:hover {
  background: var(--coral);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 3rem 0 5rem;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 92, 58, 0.35), transparent 45%),
    radial-gradient(ellipse at 80% 10%, rgba(91, 140, 255, 0.35), transparent 40%),
    linear-gradient(160deg, #0b1430 0%, #1a2758 48%, #0f1a3d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(31, 190, 168, 0.18), transparent 35%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.02) 28px,
      rgba(255, 255, 255, 0.02) 29px
    );
  animation: shimmer 14s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(40px);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38ch;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.play-badge {
  display: inline-block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.play-badge img {
  width: 168px;
  height: auto;
}

.play-badge:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(255, 194, 75, 0.35));
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.phone-frame {
  position: relative;
  width: min(260px, 70vw);
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #2a355f, #10182f);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: float-phone 5.5s ease-in-out infinite;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 810 / 1440;
  object-fit: cover;
}

@keyframes float-phone {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.orbit-marble {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: orbit-spin 12s linear infinite;
}

.orbit-marble.m1 {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 28%, #ffe28a, #ff5c3a 68%);
  top: 8%;
  right: 12%;
  animation-duration: 9s;
}

.orbit-marble.m2 {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 30% 28%, #b8fff1, #1fbea8 70%);
  bottom: 16%;
  left: 10%;
  animation-duration: 13s;
  animation-direction: reverse;
}

.orbit-marble.m3 {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 28%, #d7e8ff, #5b8cff 70%);
  top: 42%;
  left: 4%;
  animation-duration: 7s;
}

@keyframes orbit-spin {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(12px, -18px);
  }
  50% {
    transform: translate(-8px, -8px);
  }
  75% {
    transform: translate(16px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  z-index: 3;
  color: var(--sand);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: var(--night);
  color: #fff;
}

.section-cream {
  background: linear-gradient(180deg, var(--sand), var(--cream));
}

.section-teal {
  background: linear-gradient(135deg, #0f766e, #134e4a);
  color: #fff;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin: 0 0 0.8rem;
}

.section-lead {
  max-width: 58ch;
  color: var(--ink-soft);
  margin: 0 0 2.2rem;
}

.section-dark .section-lead,
.section-teal .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Intro story */
.story-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 1.6rem;
  box-shadow: 0 20px 50px rgba(20, 24, 43, 0.06);
}

.story-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-media {
  border-radius: 24px;
  overflow: hidden;
  background: var(--night-2);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Feature mosaic */
.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.feature-tile {
  grid-column: span 6;
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-tile:nth-child(3),
.feature-tile:nth-child(4) {
  grid-column: span 6;
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 24, 43, 0.08);
}

.feature-tile::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -20px;
  top: -20px;
  border-radius: 50%;
  opacity: 0.18;
}

.feature-tile:nth-child(1)::after {
  background: var(--coral);
}
.feature-tile:nth-child(2)::after {
  background: var(--teal);
}
.feature-tile:nth-child(3)::after {
  background: var(--sky);
}
.feature-tile:nth-child(4)::after {
  background: var(--amber);
}

.feature-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--night);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.feature-tile h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.feature-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Combo strip */
.combo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.combo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.combo-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.combo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 0.35rem;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(255, 194, 75, 0.15);
}

.combo-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.combo-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.combo-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #0a1024;
}

.combo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.95;
}

/* Atmosphere break */
.atmosphere {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.atmosphere img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) brightness(0.55);
  transform: scale(1.05);
  animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-12px);
  }
}

.atmosphere-copy {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 40rem;
}

.atmosphere-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.atmosphere-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* Gallery */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shot-card {
  border-radius: 20px;
  overflow: hidden;
  background: #10182f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 9 / 16;
  transition: transform 0.3s ease;
}

.shot-card:hover {
  transform: translateY(-6px);
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Journey map - unique block */
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.journey-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  position: relative;
}

.journey-card strong {
  display: block;
  color: var(--coral);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.journey-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.journey-card p {
  margin: 0;
  color: var(--ink-soft);
}

/* Voices */
.voices {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.quote-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2rem;
}

.quote-card blockquote {
  margin: 0 0 1.2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
}

.quote-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.voice-phone {
  width: min(240px, 70%);
  margin-inline: auto;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #2a355f, #10182f);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.voice-phone img {
  border-radius: 20px;
  aspect-ratio: 810 / 1440;
  object-fit: cover;
  object-position: top;
}

/* Final CTA */
.final-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.final-cta h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.final-cta p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42ch;
}

.final-visual {
  border-radius: 28px;
  overflow: hidden;
  max-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 420px;
}

/* Inner pages */
.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 92, 58, 0.18), transparent 40%),
    linear-gradient(180deg, #fff0e0, var(--sand));
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero p {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
}

.content-wrap {
  padding: 2.5rem 0 5rem;
}

.prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 820px;
}

.prose h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.4rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  background: var(--night);
  color: #fff;
}

.inline-cta p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.85);
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.tip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
}

.tip-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.tip-card p {
  margin: 0;
  color: var(--ink-soft);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}

.split-media .media-box {
  border-radius: 24px;
  overflow: hidden;
  background: var(--night);
  max-height: 480px;
}

.split-media .media-box img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* Footer */
.site-footer {
  background: #090f22;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.8rem;
}

.footer-top {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.3rem;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 720px;
  margin-inline: auto;
  background: #10182f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner.is-open {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner a {
  color: var(--amber);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9rem;
}

.btn-accept {
  background: var(--amber);
  color: var(--ink);
}

.btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .story-panel,
  .combo-strip,
  .voices,
  .final-cta,
  .split-media {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-stage {
    min-height: 400px;
    order: -1;
  }

  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .feature-tile:nth-child(3),
  .feature-tile:nth-child(4) {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 246, 236, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.4rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .tip-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(220px, 62vw);
  }
}

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