:root {
  /* Party palette */
  --red: #FF4B4B;
  --red-dark: #E22F2F;
  --yellow: #FFC93C;
  --yellow-dark: #F2A900;
  --blue: #1FA9E3;
  --blue-dark: #0E86BD;
  --green: #33C481;
  --purple: #9163E8;
  --navy: #1B2A63;
  --navy-dark: #131F49;
  --cream: #FFFBF2;
  --cream-2: #FFF3D9;
  --ink: #202544;
  --muted: #5B6180;
  --radius: 18px;
  --radius-sm: 10px;
  --display: 'Fredoka', sans-serif;
  --sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

h1, h2, h3, h4 { font-family: var(--display); color: var(--navy); margin: 0 0 16px; line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.98rem;
  font-family: var(--sans);
  border: 3px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 0 var(--red-dark); }
.btn-primary:hover { box-shadow: 0 8px 0 var(--red-dark), 0 14px 24px rgba(226,47,47,0.35); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--red-dark); }

.btn-yellow { background: var(--yellow); color: var(--navy-dark); box-shadow: 0 6px 0 var(--yellow-dark); }
.btn-yellow:hover { box-shadow: 0 8px 0 var(--yellow-dark), 0 14px 24px rgba(242,169,0,0.3); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }

.btn-lg { padding: 17px 36px; font-size: 1.08rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: var(--yellow);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 12px;
}
.topbar p { margin: 0; color: var(--yellow); }

/* Header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.logo-mark svg { width: 30px; height: 30px; }

.logo-text {
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text em { font-style: normal; font-size: 0.72rem; color: var(--yellow); font-family: var(--sans); letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  color: #dfe4f5;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--yellow); }

.call-btn {
  background: var(--red);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 4px 0 var(--red-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.call-btn:hover { background: #ff5f5f; }
.call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  align-items: center;
}
.icon { display: block; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,201,60,0.18), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,75,75,0.18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(31,169,227,0.18), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow { color: var(--yellow); }
.hero h1 { color: #fff; }
.hero h1 .pop { color: var(--yellow); }
.hero p.lede { color: #cfd6ef; font-size: 1.1rem; max-width: 48ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; align-items: center; }
.hero-badge-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  min-height: 68px;
}
.hero-badge > div { width: 100%; }
.hero-badge strong { font-family: var(--display); color: var(--yellow); font-size: 1.3rem; display: block; line-height: 1; }
.hero-badge span { font-size: 0.78rem; color: #cfd6ef; display: block; margin-top: 4px; line-height: 1.3; }
@media (max-width: 560px) {
  .hero-badge-row { grid-template-columns: 1fr; }
}

.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(19,31,73,0.88), transparent);
  color: #fff;
  padding: 30px 20px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Page header (non-home pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,201,60,0.16), transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(255,75,75,0.16), transparent 45%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #cfd6ef; max-width: 62ch; margin: 0; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--yellow); margin-bottom: 10px; font-weight: 700; }
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Trust bar */
.trust-bar { background: var(--cream-2); padding: 28px 0; border-bottom: 1px solid #f2d896; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-grid div { display: flex; flex-direction: column; gap: 4px; }
.trust-grid strong { color: var(--navy); font-family: var(--display); font-size: 1.4rem; font-weight: 600; }
.trust-grid span { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* Section headings */
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* Rentals teaser (home) */
.categories { padding: 84px 0; }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.teaser-card {
  background: #fff;
  border: 1px solid #eee1c6;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 14px rgba(27,42,99,0.06);
}
.teaser-card:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: 0 18px 34px rgba(27,42,99,0.16); }
.teaser-card .teaser-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.teaser-card .teaser-media img { width: 100%; height: 100%; object-fit: cover; }
.teaser-card .teaser-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 600;
  font-size: 0.8rem; padding: 5px 14px; border-radius: 999px;
}
.teaser-card .teaser-body { padding: 20px 22px 24px; }
.teaser-card h3 { margin-bottom: 6px; }
.teaser-card p { margin: 0; font-size: 0.92rem; }
.teaser-card .teaser-cta { display: inline-block; margin-top: 12px; color: var(--blue-dark); font-weight: 800; font-size: 0.88rem; }

/* Gallery ("See Us In Action") */
.gallery-section { padding: 0 0 84px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery-grid a, .gallery-grid .g-item {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid #eee1c6;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* Themed units callout */
.themed-callout { background: var(--navy); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.themed-callout::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,201,60,0.14), transparent 45%);
}
.themed-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; position: relative; }
.themed-callout h2 { color: #fff; }
.themed-callout p { color: #cfd6ef; }
.themed-callout .eyebrow { color: var(--yellow); }
.themed-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 44px rgba(0,0,0,0.35); }
.themed-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.themed-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

/* Family story teaser (home) */
.story-teaser { padding: 84px 0; }
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; }
.story-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 34px rgba(27,42,99,0.14); }
.story-teaser .eyebrow { color: var(--red-dark); }

/* Policy / deposit note */
.policy-note {
  background: var(--cream-2);
  border: 1px dashed var(--yellow-dark);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.policy-note svg { flex-shrink: 0; width: 30px; height: 30px; color: var(--red); margin-top: 2px; }
.policy-note h3 { margin-bottom: 6px; font-size: 1.1rem; }
.policy-note p { margin: 0; font-size: 0.94rem; }

/* Rentals catalog page */
.catalog { padding: 56px 0 90px; }
.catalog-intro { max-width: 760px; margin: 0 0 40px; }
.category { margin-bottom: 60px; }
.category-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 3px solid var(--cream-2);
  padding-bottom: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.category-head h2 { margin: 0; }
.category-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 5px 14px;
  border-radius: 999px;
  color: #fff;
}
.tag.tag-red { background: var(--red); }
.tag.tag-blue { background: var(--blue-dark); }
.tag.tag-green { background: var(--green); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee1c6;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(27,42,99,0.14); }
.product-media { aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.product-price { font-family: var(--display); color: var(--red-dark); font-weight: 600; font-size: 1.3rem; margin-bottom: 8px; }
.product-price .per { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.product-body p.desc { font-size: 0.9rem; margin: 0 0 16px; flex: 1; }
.price-flag { font-size: 0.76rem; color: var(--muted); font-style: italic; margin: -6px 0 14px; }
.product-cta {
  align-self: flex-start;
  background: var(--blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.84rem;
  box-shadow: 0 4px 0 var(--blue-dark);
}
.product-cta:hover { background: #37b5e8; }

/* Image placeholder blocks */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 14px;
}
.img-placeholder svg { width: 46px; height: 46px; opacity: 0.9; }
.img-placeholder .ph-label { font-family: var(--display); font-weight: 600; font-size: 0.98rem; line-height: 1.25; }
.img-placeholder .ph-sub { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.85; }
.ph-a { background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%); }
.ph-b { background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%); }
.ph-c { background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%); }
.ph-d { background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--red) 100%); }
.ph-e { background: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%); }

/* About page */
.about-page { padding: 76px 0; }
.about-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 38px rgba(27,42,99,0.16); }
.about-copy p { font-size: 1.03rem; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.value-card { background: #fff; border: 1px solid #eee1c6; border-radius: var(--radius); padding: 26px 24px; }
.value-card .value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: #fff;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; margin: 0; }

.about-secondary { padding: 0 0 76px; }
.about-secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-secondary-grid.reverse { direction: rtl; }
.about-secondary-grid.reverse > * { direction: ltr; }

/* Contact / booking form */
.order { background: var(--cream-2); padding: 84px 0; }
.order-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.order-copy .eyebrow { color: var(--red-dark); }
.pickup-note { margin-top: 18px; font-size: 0.94rem; color: var(--navy); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.pickup-note a { color: var(--red-dark); }
.pickup-note svg { width: 20px; height: 20px; color: var(--red-dark); flex-shrink: 0; }

.order-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid #eee1c6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-form h3 { margin-bottom: 4px; }
.order-form label { font-size: 0.86rem; font-weight: 800; color: var(--navy); display: flex; flex-direction: column; gap: 6px; }
.order-form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-form input, .order-form select, .order-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 11px 13px;
  border-radius: 10px;
  border: 2px solid #ecdfc0;
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
}
.order-form input:focus, .order-form select:focus, .order-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.checkbox-row { flex-direction: row !important; align-items: center; gap: 10px !important; font-weight: 600 !important; }
.checkbox-row input { width: auto; }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 0; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.contact-card {
  background: #fff;
  border: 1px solid #eee1c6;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card .c-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.94rem; margin: 0; color: var(--navy); font-weight: 700; text-decoration: none; }
.contact-card a:hover { color: var(--red-dark); }

/* Footer */
.site-footer { background: var(--navy-dark); color: #cfd6ef; padding: 50px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-inner p { color: #b7bedd; margin: 10px 0 0; font-size: 0.92rem; }
.footer-inner a.plain { color: #b7bedd; }
.footer-col h4 { color: #fff; font-family: var(--display); font-weight: 600; font-size: 1rem; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #cfd6ef; text-decoration: none; font-size: 0.94rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-credit { text-align: right; }
.footer-credit p { margin: 0 0 6px; font-size: 0.82rem; }
.dev-credit a { color: var(--yellow); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 34px; padding-top: 20px; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 520px; margin: 0 auto; }
  .themed-grid, .story-grid, .about-grid-2, .about-secondary-grid { grid-template-columns: 1fr; }
  .about-secondary-grid.reverse { direction: ltr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .order-inner { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: left; gap: 30px; }
  .footer-credit { text-align: left; }
  .teaser-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .order-form .two-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
}

.site-header.nav-open .main-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 18px 24px 26px;
  gap: 18px;
  align-items: flex-start;
}
