:root {
  --ink: #111827;
  --muted: #516070;
  --cream: #fffaf0;
  --yellow: #ffd21f;
  --red: #ef233c;
  --blue: #071747;
  --sky: #0877d9;
  --green: #0ca678;
  --purple: #7b2ff7;
  --panel: #ffffff;
  --line: rgba(17, 24, 39, .14);
  --shadow: 0 18px 44px rgba(17, 24, 39, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
  border-bottom: 0;
  box-shadow: 0 5px 0 rgba(255, 210, 31, .96);
}
.brand img { width: clamp(190px, 20vw, 300px); height: auto; }
.site-nav { display: flex; justify-content: center; gap: clamp(8px, 1.5vw, 22px); flex-wrap: wrap; }
.nav-link {
  text-decoration: none;
  font-weight: 900;
  padding: 12px 3px 8px;
  color: var(--blue);
  border-radius: 0;
  text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-call, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  border: 4px solid white;
  box-shadow: 0 0 0 2px rgba(7, 23, 71, .22), 5px 5px 0 rgba(7, 23, 71, .2);
}
.header-call { background: var(--red); color: white; white-space: nowrap; }
.button.primary { background: var(--red); color: white; }
.button.secondary { background: var(--blue); color: white; }
.video-trigger::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  margin-right: 10px;
}
.button:hover, .header-call:hover { transform: translate(-1px, -1px); box-shadow: 0 0 0 2px rgba(7, 23, 71, .22), 8px 8px 0 rgba(7, 23, 71, .28); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 3px solid var(--ink); border-radius: 999px; background: white; }
.nav-toggle span { display: block; width: 20px; height: 3px; background: var(--ink); margin: 4px auto; }
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 104px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}
.hero-media, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: right center; transform: scale(1.02); }
.hero-scrim { background: linear-gradient(90deg, rgba(5,10,55,.58) 0%, rgba(5,10,55,.2) 46%, rgba(5,10,55,.02) 100%); }
.hero-content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 5vw, 72px);
  padding-block: clamp(56px, 8vw, 96px);
  color: white;
}
.kicker, .eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: .84rem;
  letter-spacing: 0;
  font-weight: 950;
}
h1, h2, h3 { line-height: 1.03; margin: 0; }
h1 {
  font-size: clamp(3.5rem, 6.2vw, 6.35rem);
  max-width: 12.5ch;
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 0;
  color: white;
  text-shadow: 5px 5px 0 rgba(7, 23, 71, .95);
  transform: rotate(-2deg);
}
h1 span { color: var(--yellow); text-shadow: 5px 5px 0 rgba(185, 22, 34, .95); }
h2 { font-size: clamp(2.15rem, 4.1vw, 4.15rem); max-width: 16ch; text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
.hero p:not(.kicker) {
  display: inline-block;
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  max-width: 620px;
  margin-top: 26px;
  padding: 16px 22px;
  color: #08112d;
  background: var(--yellow);
  font-weight: 900;
  transform: rotate(-2deg);
  box-shadow: 10px 10px 0 rgba(7, 23, 71, .28);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.bgt-badge { width: min(360px, 76vw); margin-top: 26px; filter: drop-shadow(0 16px 20px rgba(0,0,0,.24)); }
.breadcrumbs {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(24px, 4vw, 44px) auto 0;
  color: var(--muted);
  font-weight: 900;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 9px;
  color: var(--yellow);
}
.breadcrumbs a {
  color: var(--blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.hero-award {
  position: absolute;
  right: clamp(22px, 7vw, 96px);
  bottom: clamp(24px, 7vw, 80px);
  width: clamp(120px, 14vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow);
  border: 8px solid white;
  box-shadow: inset 0 0 0 4px var(--yellow), 0 12px 0 rgba(7,23,71,.3);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.05;
}
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 124px) 0;
}
.section:nth-of-type(even) { position: relative; }
.section-heading {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}
.section-heading h2 { max-width: none; }
.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.section-heading--left {
  margin-left: 0;
  text-align: left;
}
.section-heading--left p:not(.eyebrow) { margin-left: 0; }
.audience-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background: white;
  text-align: center;
  box-shadow: inset 0 12px 0 white, inset 0 -10px 0 var(--blue);
}
.audience-heading {
  max-width: 860px;
  margin: 0 auto clamp(28px, 4.5vw, 52px);
}
.audience-strip .eyebrow {
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  line-height: .95;
}
.audience-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  font-weight: 800;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  width: min(1320px, 100%);
  margin: 0 auto;
}
.audience-card {
  display: grid;
  grid-template-rows: 92px auto;
  gap: 14px;
  justify-items: center;
  align-items: center;
  min-height: 172px;
  padding: 18px 12px 20px;
  border: 4px solid transparent;
  border-radius: 0;
  background: #fff;
  text-decoration: none;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}
.audience-card strong {
  display: block;
  max-width: 14ch;
  min-height: 2.1em;
  margin: 0 auto;
  font-size: clamp(.88rem, 1.2vw, 1.02rem);
  text-wrap: balance;
}
.audience-icon {
  width: 82px;
  height: 82px;
  display: block;
  color: currentColor;
  filter: drop-shadow(4px 4px 0 rgba(7, 23, 71, .12));
  transition: transform .18s ease;
}
.audience-icon--balloons { color: #7b2ff7; }
.audience-icon--school { color: #299d31; }
.audience-icon--wedding { color: #e9348c; }
.audience-icon--people { color: #ef4b37; }
.audience-icon--tent { color: #f2b800; }
.audience-icon--building { color: #1876d1; }
.audience-card:hover .audience-icon { transform: scale(1.06) rotate(-2deg); }
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
}
.trust-band div {
  padding: clamp(18px, 3vw, 34px);
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
}
.trust-band strong { display: block; font-size: clamp(1.65rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; }
.trust-band span { display: block; max-width: 28ch; margin: 10px auto 0; font-weight: 800; line-height: 1.35; }
.intro-split, .feature-row, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}
.intro-split img, .feature-row img:not(.inline-badge), .image-band img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border: 5px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}
.intro-split p, .feature-row p { font-size: 1.08rem; color: var(--muted); margin-top: 18px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--panel);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
  transform: rotate(-.4deg);
}
.service-card:nth-child(even) { transform: rotate(.5deg); }
.service-card a { display: grid; grid-template-rows: 260px auto auto 1fr; min-height: 100%; text-decoration: none; }
.service-card img { width: 100%; height: 260px; object-fit: cover; border-bottom: 4px solid var(--ink); }
.service-card span { justify-self: start; margin: 16px 16px 8px; padding: 6px 10px; background: var(--yellow); color: var(--blue); font-weight: 950; border: 2px solid var(--ink); text-transform: uppercase; }
.service-card h3, .service-card p { margin-left: 16px; margin-right: 16px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }
.service-card:hover { transform: translate(-2px, -2px) rotate(0deg); box-shadow: 12px 12px 0 var(--red); }
.inline-badge { width: min(320px, 100%); margin-bottom: 18px; }
.featured-gallery {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr;
  gap: 24px;
  margin: 0 0 clamp(56px, 7vw, 88px);
}
.featured-gallery figure, .video-card {
  margin: 0;
  background: white;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
.featured-gallery figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.featured-gallery figure:first-child { grid-row: span 2; }
.featured-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.featured-gallery figure:first-child img { aspect-ratio: 4 / 5; }
.featured-gallery figcaption {
  padding: 12px 14px;
  font-weight: 950;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 0 clamp(64px, 8vw, 104px);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border-bottom: 4px solid var(--ink);
}
.video-card h3 { padding: 18px 18px 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gallery-grid figure {
  display: grid;
  grid-template-rows: auto auto;
  width: 100%;
  margin: 0;
  background: white;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--blue);
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  height: clamp(220px, 26vw, 340px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.gallery-grid figure:nth-child(5n + 2) img,
.gallery-grid figure:nth-child(5n + 4) img {
  height: clamp(190px, 22vw, 300px);
  aspect-ratio: 1 / 1;
}
.gallery-grid figure:nth-child(7n + 3) img {
  height: clamp(160px, 18vw, 240px);
  aspect-ratio: 4 / 3;
}
.gallery-grid figcaption {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 10px 12px;
  background: white;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  font-size: .82rem;
  line-height: 1.12;
}
.gallery-preview .section-heading + .gallery-grid { margin-top: 0; }
.reviews-strip {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--blue);
  color: white;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
  overflow: hidden;
}
.review-quote {
  max-width: 420px;
  justify-self: end;
  transform: rotate(-2deg);
}
.quote-mark {
  display: block;
  color: var(--yellow);
  font-size: 7rem;
  line-height: .7;
  font-weight: 950;
}
.review-quote p {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 900;
}
.stars { color: var(--yellow); font-size: 2rem; letter-spacing: 3px; margin-bottom: 10px; }
.review-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 850px;
}
.review-photos img {
  width: 100%;
  height: clamp(130px, 18vw, 230px);
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 10px 0 rgba(0,0,0,.28);
}
.review-photos img:nth-child(1) { transform: rotate(4deg); }
.review-photos img:nth-child(2) { transform: rotate(-1deg); }
.review-photos img:nth-child(3) { transform: rotate(3deg); }
.reviews-page {
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(28px, 4vw, 46px);
  text-align: left;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  background: white;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}
.review-card .stars {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}
.review-card strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 1.05rem;
}
.reviews-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(34px, 5vw, 58px);
}
.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(48px, 8vw, 90px);
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  background: var(--yellow);
  color: var(--blue);
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background: white;
  transform: rotate(-1deg) scaleX(1.05);
}
.cta-band::before { top: -7px; }
.cta-band::after { bottom: -7px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band p { max-width: 650px; }
.cta-band h2 {
  max-width: 18ch;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 3px 3px 0 rgba(255,255,255,.95);
}
.cta-band .button.primary { background: var(--red); color: white; }
.service-detail .section-heading { margin-bottom: 42px; }
.values, .package-list, .detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.values div, .package-list article, .detail-grid article {
  background: white;
  border: 4px solid var(--ink);
  padding: 24px;
  box-shadow: 7px 7px 0 var(--yellow);
  transform: rotate(-.25deg);
}
.values div:nth-child(even), .package-list article:nth-child(even), .detail-grid article:nth-child(even) { transform: rotate(.25deg); }
.text-link { font-weight: 950; color: var(--red); text-underline-offset: 4px; }
.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.contact-form {
  display: grid;
  gap: 14px;
  background: white;
  border: 4px solid var(--ink);
  padding: clamp(18px, 4vw, 32px);
  box-shadow: 10px 10px 0 var(--yellow);
}
.contact-form label { display: grid; gap: 6px; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  background: #fffdf8;
}
.form-status {
  display: none;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: #ffe4e8;
  color: #7c1021;
}
.form-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.cf-turnstile {
  min-height: 65px;
}
.sitemap-section {
  padding-top: clamp(34px, 6vw, 76px);
}
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(900px, 100%);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.sitemap-list a {
  display: block;
  padding: 18px 20px;
  border: 4px solid var(--ink);
  background: white;
  color: var(--blue);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--yellow);
}
.policy-section {
  padding-top: clamp(34px, 6vw, 76px);
}
.policy-content {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 5px solid var(--ink);
  background: white;
  box-shadow: 10px 10px 0 var(--yellow);
}
.policy-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 6vw, 4.4rem);
  line-height: .95;
}
.policy-content h3 {
  margin: 32px 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}
.policy-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.65;
}
.policy-content a:not(.button) {
  color: var(--blue);
  font-weight: 900;
  text-underline-offset: 3px;
}
.site-footer {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px) clamp(16px, 5vw, 72px) 0;
  background: var(--blue);
  color: white;
  border-top: 10px solid var(--yellow);
}
.site-footer a { color: var(--yellow); font-weight: 900; }
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.footer-main p {
  margin: 0;
  font-weight: 850;
  line-height: 1.35;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: .95rem;
}
.footer-links a {
  color: white;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0;
}
.footer-social a {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  text-decoration: none;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
}
.footer-social svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.footer-credit {
  grid-column: 1 / -1;
  margin: clamp(22px, 4vw, 34px) calc(clamp(16px, 5vw, 72px) * -1) 0;
  padding: 14px clamp(16px, 5vw, 72px);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 750;
  text-align: center;
}
.footer-credit a {
  color: rgba(255, 255, 255, .9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.cookie-banner {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(1040px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(16px, 3vw, 24px);
  border: 5px solid var(--ink);
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 10px 10px 0 rgba(7, 23, 71, .28);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}
.cookie-banner p {
  margin: 0 0 8px;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 800;
}
.cookie-banner a {
  color: var(--blue);
  font-weight: 950;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions .button {
  white-space: nowrap;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(7, 23, 71, .88);
}
.video-lightbox.is-open { display: flex; }
.lightbox-panel {
  width: min(1000px, 100%);
  background: #000;
  border: 8px solid white;
  box-shadow: 14px 14px 0 rgba(0,0,0,.35);
}
.lightbox-panel video { width: 100%; display: block; aspect-ratio: 16 / 9; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 4px solid white;
  background: var(--red);
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav, .header-call { grid-column: 1 / -1; display: none; }
  .site-header.is-open .site-nav, .site-header.is-open .header-call { display: flex; }
  .site-nav { justify-content: flex-start; }
  .trust-band, .service-grid, .values, .package-list, .detail-grid, .intro-split, .feature-row, .contact-layout, .reviews-strip, .reviews-grid, .sitemap-list {
    grid-template-columns: 1fr;
  }
  .footer-main {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .review-quote { justify-self: start; transform: none; }
  .review-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
  .review-photos img {
    height: 150px;
    border-width: 5px;
    box-shadow: 0 6px 0 rgba(0,0,0,.22);
    transform: none !important;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-gallery, .video-grid { grid-template-columns: 1fr; }
  .featured-gallery figure:first-child { grid-row: auto; }
  .featured-gallery img { height: auto; min-height: 0; }
  .hero { min-height: 540px; align-items: center; }
  .hero-media { object-position: 82% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(5,10,55,.86) 0%, rgba(5,10,55,.38) 74%, rgba(5,10,55,.08) 100%); }
  .hero-content { margin: 0 auto; padding-block: 42px; }
  .hero-award { right: 18px; top: 92px; bottom: auto; width: 118px; font-size: .78rem; }
}
@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .brand img { width: 172px; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .gallery-grid img {
    height: 210px;
    min-height: 0;
  }
  .gallery-grid figure:nth-child(5n + 2) img,
  .gallery-grid figure:nth-child(5n + 4) img {
    height: 170px;
  }
  .gallery-grid figure:nth-child(7n + 3) img {
    height: 136px;
  }
  .gallery-grid figcaption {
    min-height: 34px;
    font-size: .68rem;
    padding: 7px 7px 8px;
    overflow-wrap: anywhere;
  }
  .service-card a { grid-template-rows: 220px auto auto 1fr; }
  .service-card img { height: 220px; }
  .hero {
    min-height: auto;
    align-items: end;
    padding: clamp(74px, 22vw, 112px) 0 clamp(28px, 9vw, 42px);
  }
  .hero-media {
    object-position: center top;
    opacity: .52;
    transform: none;
  }
  .hero-scrim {
    background: linear-gradient(0deg, rgba(5,10,55,.96) 0%, rgba(5,10,55,.86) 56%, rgba(5,10,55,.5) 100%);
  }
  .hero-content {
    width: min(100% - 28px, 460px);
    margin: 0 auto;
    padding-block: 0;
  }
  h1 {
    font-size: clamp(2.1rem, 10.4vw, 3.05rem);
    max-width: 100%;
    text-shadow: 2px 2px 0 rgba(7, 23, 71, .95);
    transform: none;
    overflow-wrap: anywhere;
  }
  h1 span { text-shadow: 2px 2px 0 rgba(185, 22, 34, .95); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); max-width: 100%; }
  .section-heading, .section-heading--left { text-align: center; }
  .section-heading--left p:not(.eyebrow) { margin-left: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-icon { width: 68px; height: 68px; }
  .reviews-strip {
    padding: 38px 18px;
    gap: 24px;
  }
  .review-quote {
    max-width: 100%;
    justify-self: center;
    text-align: center;
  }
  .quote-mark { font-size: 4.4rem; }
  .review-quote p { font-size: clamp(1.35rem, 8vw, 2rem); }
  .review-photos {
    gap: 6px;
    max-width: 300px;
    justify-self: center;
  }
  .review-photos img {
    height: 96px;
    aspect-ratio: 1 / 1;
    border-width: 3px;
  }
  .hero p:not(.kicker) {
    display: block;
    width: 100%;
    transform: none;
    font-size: .96rem;
    line-height: 1.38;
    margin-top: 18px;
    padding: 12px 14px;
    box-shadow: none;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }
  .hero-award { display: none; }
  .cta-band {
    display: grid;
    width: min(100% - 28px, 460px);
    gap: 18px;
    padding: 30px 20px;
  }
  .cta-band h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .cta-band p {
    max-width: 100%;
    margin: 0;
    font-size: .96rem;
    line-height: 1.42;
  }
  .button, .header-call { width: 100%; max-width: 100%; }
}
