:root {
  --bg: #000000;
  --bg-alt: #050505;
  --ink: #f5f5f7;
  --muted: #a3a7b2;
  --accent: #5ad7ff;
  --accent-dark: #2b9cc9;
  --teal: #7dd3fc;
  --card: #0b0d12;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  --radius: 30px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cambria", "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 600;
}

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

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

button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1150px, 90vw);
  margin: 0 auto;
}

.bg-orbit {
  display: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: soft-light;
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 24px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(12, 14, 18, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: "Cambria", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(90, 215, 255, 0.9), rgba(125, 211, 252, 0.6));
  color: #071015;
  padding: 6px 10px;
  border-radius: 10px;
}

.brand-text p {
  font-weight: 700;
}

.brand-text span {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #051018;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(90, 215, 255, 0.3);
}

.hero {
  padding: 120px 0 80px;
}

body.is-loaded .hero {
  animation: heroImpact 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-loaded .hero-content {
  animation: heroPunch 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

body.is-loaded .hero-visual {
  animation: heroPunchAlt 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Cambria", "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.primary,
.ghost {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.primary {
  background: var(--accent);
  color: #051018;
  box-shadow: 0 16px 30px rgba(90, 215, 255, 0.35);
}

.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.ghost:hover {
  transform: translateY(-2px);
  background: rgba(90, 215, 255, 0.12);
  border-color: rgba(90, 215, 255, 0.5);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat {
  padding: 16px 18px;
  background: rgba(18, 21, 28, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  animation: float 8s ease-in-out infinite;
}

.frame {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: #0b0d12;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 60%);
  z-index: 1;
}

.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: inherit;
  transition: transform 700ms ease;
}

.frame-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 14, 18, 0.75);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
}

.stack-1 {
  transform: rotate(-8deg) translate(-30px, 20px);
}

.stack-2 {
  transform: rotate(4deg) translate(10px, -20px);
}

.stack-3 {
  transform: rotate(12deg) translate(40px, 30px);
}

.logo-strip {
  padding: 24px 0 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.logo-strip p {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-weight: 600;
}

.section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Cambria", "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.section-head p {
  max-width: 480px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

.service-card h3 {
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card ul {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.plans {
  background: var(--bg-alt);
}

.plan-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(90, 215, 255, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.plan-card:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.18);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card.highlight {
  background: linear-gradient(140deg, rgba(90, 215, 255, 0.18), rgba(12, 14, 18, 0.95));
  border: 2px solid rgba(90, 215, 255, 0.4);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 800;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.shot {
  position: relative;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b0d12;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: inherit;
  transition: transform 700ms ease;
}

.shot-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.shot:hover {
  transform: scale(1.03);
}

.shot:hover img,
.frame:hover img {
  transform: scale(1.03);
  transition: transform 600ms ease;
}

.experience {
  background: var(--bg-alt);
}

.timeline {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-item {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item span {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  background: #0f1218;
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.booking {
  background: linear-gradient(135deg, rgba(90, 215, 255, 0.08), rgba(3, 4, 6, 0.85));
}

.booking-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.booking-info h2 {
  margin-bottom: 16px;
  font-weight: 800;
}

.booking-highlight {
  background: #0f1218;
  color: var(--ink);
  padding: 22px;
  border-radius: 20px;
  margin-top: 24px;
}

.contact-card {
  margin-top: 20px;
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.booking-form {
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  font-family: inherit;
  background: #0c0f14;
  color: var(--ink);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.site-footer {
  padding: 60px 0 20px;
  background: #020305;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: #0f1218;
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.82);
  filter: blur(8px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms ease;
  will-change: transform, opacity, filter;
}

.reveal.zoom-out {
  transform: translateY(40px) scale(1.18);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes heroImpact {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  60% {
    opacity: 1;
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heroPunch {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(1.15);
  }
  65% {
    opacity: 1;
    transform: translateY(-4px) scale(0.97);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPunchAlt {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(1.22);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    display: none;
  }
}
