@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --navy: #07172f;
  --navy-2: #0b2855;
  --blue: #087cff;
  --sky: #45c7ff;
  --red: #f23b31;
  --yellow: #ffd436;
  --white: #ffffff;
  --cloud: #f4f9ff;
  --ink: #102344;
  --muted: #60708b;
  --green: #18a868;
  --shadow: 0 18px 50px rgba(5, 34, 83, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 1rem/1.65 "Nunito", system-ui, sans-serif;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 999; padding: 10px 14px; background: white; color: var(--navy); }
.skip-link:focus { left: 10px; }

.topbar {
  color: white;
  background: var(--navy);
  text-align: center;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 8px 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,23,47,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 62px; height: 62px; object-fit: contain; border-radius: 50%; }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; color: var(--navy); font: 800 1.15rem/1.05 "Baloo 2", sans-serif; }
.brand-copy span { color: var(--blue); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-links a { border-radius: 999px; padding: 9px 13px; color: var(--navy); font-weight: 800; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: #e9f4ff; color: #005cc8; }
.nav-links .nav-cta { color: white; background: var(--red); box-shadow: 0 8px 20px rgba(242,59,49,.25); }
.nav-links .nav-cta:hover { background: #d92d25; color: white; }
.menu-button {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 0; border-radius: 12px;
  color: white; background: var(--navy);
  font-size: 1.4rem;
}

.hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  color: white;
  background: var(--navy) url("assets/party-hero.png") center/cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(4,17,42,.97) 0%, rgba(5,28,67,.88) 38%, rgba(5,28,67,.28) 68%, rgba(5,28,67,.12) 100%);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 74px; z-index: -1;
  background: white;
  clip-path: polygon(0 72%, 8% 48%, 17% 65%, 30% 35%, 45% 62%, 58% 32%, 70% 56%, 82% 28%, 91% 55%, 100% 38%, 100% 100%, 0 100%);
}
.hero-content { max-width: 650px; padding: 90px 0 125px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(7,23,47,.6);
  padding: 8px 14px;
  font-size: .84rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
}
.hero h1, .page-hero h1, h2, h3 { font-family: "Baloo 2", sans-serif; }
.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 5.75rem);
  line-height: .91;
  letter-spacing: -.04em;
  text-shadow: 0 5px 0 rgba(0,0,0,.12);
}
.hero h1 span { color: var(--yellow); display: block; }
.hero p { max-width: 590px; margin: 24px 0 30px; font-size: clamp(1.05rem, 2vw, 1.22rem); font-weight: 700; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px;
  border: 2px solid transparent; border-radius: 14px;
  padding: 12px 19px;
  font-weight: 900; line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--red); box-shadow: 0 12px 25px rgba(242,59,49,.3); }
.btn-primary:hover { background: #d92d25; }
.btn-secondary { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 25px rgba(255,212,54,.22); }
.btn-secondary:hover { background: #ffe06a; }
.btn-outline { color: var(--blue); background: white; border-color: #c7dcf4; }
.btn-outline:hover { border-color: var(--blue); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; font-size: .92rem; font-weight: 800; }
.hero-notes span { display: inline-flex; align-items: center; gap: 7px; }

.section { padding: 88px 0; }
.section-soft { background: var(--cloud); }
.section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.kicker { margin: 0 0 7px; color: var(--red); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2, .split-copy h2, .cta-band h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(2.1rem, 4vw, 3.3rem); line-height: 1; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.07rem; }

.inventory-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.preview-card, .inventory-card {
  overflow: hidden;
  border: 1px solid #dce8f6;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.preview-card:hover, .inventory-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(5,34,83,.2); }
.preview-card img { height: 260px; object-fit: cover; }
.preview-card .card-body { padding: 22px; }
.preview-card h3, .inventory-card h2 { margin: 0; color: var(--navy); font-size: 1.55rem; line-height: 1.1; }
.price { color: var(--red); font: 800 1.65rem/1 "Baloo 2", sans-serif; }
.price small { color: var(--muted); font: 700 .82rem/1.2 "Nunito", sans-serif; }
.card-heading { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.preview-card p { min-height: 50px; color: var(--muted); }
.text-link { color: var(--blue); font-weight: 900; }
.text-link:hover { text-decoration: underline; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card { padding: 25px 20px; border-radius: 20px; color: white; background: var(--navy); text-align: center; }
.trust-card:nth-child(2) { background: var(--blue); }
.trust-card:nth-child(3) { background: var(--red); }
.trust-card:nth-child(4) { color: var(--navy); background: var(--yellow); }
.trust-icon { display: block; margin-bottom: 8px; font-size: 1.8rem; }
.trust-card strong { display: block; font: 800 1.2rem/1.1 "Baloo 2", sans-serif; }
.trust-card span { font-size: .85rem; font-weight: 700; opacity: .88; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.split-visual { position: relative; }
.split-visual img { border-radius: 30px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.float-badge { position: absolute; right: -20px; bottom: 24px; width: 150px; border-radius: 20px; background: var(--yellow); padding: 18px; color: var(--navy); font-weight: 900; text-align: center; box-shadow: var(--shadow); transform: rotate(-3deg); }
.split-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; margin: 24px 0 30px; padding: 0; }
.check-list li { position: relative; margin: 11px 0; padding-left: 30px; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.cta-band { padding: 58px 0; color: white; background: linear-gradient(120deg, #07172f, #09387d 55%, #087cff); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: white; }
.cta-band p { margin: 0; opacity: .86; }

.page-hero { position: relative; overflow: hidden; padding: 82px 0 70px; color: white; background: linear-gradient(115deg, var(--navy), #0b4396); }
.page-hero::before { content: ""; position: absolute; width: 390px; height: 390px; border: 70px solid rgba(69,199,255,.16); border-radius: 50%; right: -90px; top: -170px; }
.page-hero::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,212,54,.13); right: 250px; bottom: -110px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0; font-size: clamp(2.9rem, 6vw, 5rem); line-height: .95; }
.page-hero p { max-width: 700px; margin: 15px 0 0; font-size: 1.12rem; font-weight: 700; opacity: .9; }

.inventory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.inventory-card { display: grid; grid-template-rows: auto 1fr; }
.inventory-card.featured { grid-column: 1 / -1; grid-template-columns: 1.2fr 1fr; grid-template-rows: none; }
.inventory-image { position: relative; overflow: hidden; min-height: 310px; background: #dfeeff; }
.inventory-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.inventory-card:hover .inventory-image img { transform: scale(1.025); }
.inventory-card .inventory-content { display: flex; flex-direction: column; padding: 28px; }
.pill { display: inline-flex; align-self: flex-start; border-radius: 999px; padding: 6px 10px; color: #005cc8; background: #e4f2ff; font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.inventory-card h2 { margin-top: 13px; font-size: 2rem; }
.inventory-card p { color: var(--muted); }
.spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 22px; }
.spec-row span { border-radius: 10px; background: var(--cloud); padding: 7px 10px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.inventory-card .card-bottom { margin-top: auto; }
.inventory-price { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.inventory-price .price { font-size: 2.3rem; }
.tax-note { color: var(--muted); font-size: .77rem; font-weight: 700; }
.call-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.call-actions .btn { min-height: 48px; padding-inline: 12px; font-size: .91rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-intro h2 { margin: 0; color: var(--navy); font-size: 2.6rem; line-height: 1; }
.contact-intro p { color: var(--muted); font-size: 1.07rem; }
.contact-stack { display: grid; gap: 15px; }
.contact-card { display: flex; align-items: center; gap: 18px; border: 1px solid #dce8f6; border-radius: 20px; background: white; padding: 22px; box-shadow: 0 10px 30px rgba(5,34,83,.08); }
.contact-card:hover { border-color: #9acaff; }
.contact-card .contact-icon { display: grid; place-items: center; flex: 0 0 50px; width: 50px; height: 50px; border-radius: 15px; color: white; background: var(--blue); font-size: 1.3rem; }
.contact-card:nth-child(2) .contact-icon { background: var(--red); }
.contact-card:nth-child(3) .contact-icon { color: var(--navy); background: var(--yellow); }
.contact-card small { display: block; color: var(--muted); font-weight: 700; }
.contact-card strong { display: block; color: var(--navy); font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-card:hover strong { color: var(--blue); }
.contact-note { margin-top: 24px; border-left: 5px solid var(--yellow); border-radius: 0 16px 16px 0; background: #fff9dc; padding: 18px 20px; font-weight: 700; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
.about-logo { border-radius: 32px; background: #edf7ff; padding: 32px; box-shadow: var(--shadow); }
.about-logo img { aspect-ratio: 1/1; object-fit: contain; border-radius: 50%; }
.about-copy h2 { margin: 0; color: var(--navy); font-size: clamp(2.3rem, 4vw, 3.6rem); line-height: .98; }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value { border-radius: 17px; background: var(--cloud); padding: 17px; }
.value strong { display: block; color: var(--navy); font: 800 1.08rem/1.2 "Baloo 2", sans-serif; }
.value span { color: var(--muted); font-size: .86rem; }

.site-footer { color: white; background: #040e20; padding: 52px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 74px; height: 74px; object-fit: contain; border-radius: 50%; }
.footer-brand strong { display: block; font: 800 1.3rem/1.05 "Baloo 2", sans-serif; }
.footer-brand span { color: var(--yellow); font-size: .82rem; font-weight: 900; }
.footer-copy { max-width: 430px; color: #b9c7dc; }
.footer-title { margin: 0 0 12px; color: white; font: 800 1.1rem/1.2 "Baloo 2", sans-serif; }
.footer-links { display: grid; gap: 8px; color: #c9d5e6; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; color: #8191aa; font-size: .82rem; }
.view-counter { display: inline-flex; align-items: center; justify-content: center; }
.view-counter img { width: auto; height: 22px; border-radius: 4px; }

@media (max-width: 900px) {
  .menu-button { display: inline-flex; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: 88px;
    display: none; flex-direction: column; align-items: stretch;
    border: 1px solid #d9e6f4; border-radius: 20px; background: white; padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero { min-height: 660px; background-position: 63% center; }
  .hero::before { background: linear-gradient(90deg, rgba(4,17,42,.97), rgba(5,28,67,.86) 55%, rgba(5,28,67,.3)); }
  .inventory-preview, .trust-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .split-visual { order: 2; }
  .inventory-card.featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar { font-size: .76rem; }
  .nav-wrap { height: 70px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { display: none; }
  .nav-links { top: 79px; left: 14px; right: 14px; }
  .hero { min-height: 680px; background-position: 69% center; }
  .hero::before { background: linear-gradient(90deg, rgba(4,17,42,.98), rgba(5,28,67,.86) 74%, rgba(5,28,67,.5)); }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero p { font-size: 1rem; }
  .button-row .btn { width: 100%; }
  .hero-notes { display: grid; gap: 8px; }
  .section { padding: 66px 0; }
  .inventory-preview, .inventory-grid, .trust-grid, .values { grid-template-columns: 1fr; }
  .preview-card img { height: 230px; }
  .inventory-card.featured { grid-column: auto; }
  .inventory-image { min-height: 245px; }
  .inventory-card .inventory-content { padding: 22px; }
  .call-actions { grid-template-columns: 1fr; }
  .cta-band .container { align-items: stretch; flex-direction: column; }
  .cta-band .btn { width: 100%; }
  .page-hero { padding: 64px 0 55px; }
  .float-badge { right: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
