:root {
  --navy: #061126;
  --navy-2: #0b1f3a;
  --yellow: #ffd400;
  --cyan: #00aeef;
  --magenta: #ec008c;
  --red: #f72525;
  --white: #ffffff;
  --paper: #f6f8fb;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(6, 17, 38, 0.14);
  --shadow: 0 22px 70px rgba(6, 17, 38, 0.18);
  --radius: 8px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  overflow: visible;
  background: rgba(6, 17, 38, 0.86);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 38, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header .brand {
  position: relative;
  min-height: var(--header-height);
  padding-left: 146px;
  z-index: 2;
}

.site-header .brand__mark {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  width: 134px;
  height: 134px;
  flex-basis: 134px;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.brand strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.05;
  font-weight: 900;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan));
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan));
  filter: blur(16px);
  transition: opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 0.65;
}

.btn--small {
  min-height: 42px;
  padding: 0.68rem 0.95rem;
  font-size: 0.92rem;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.28);
}

.btn--pink {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(236, 0, 140, 0.24);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.16);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn--outline-dark {
  border: 1px solid rgba(6, 17, 38, 0.22);
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height) - 48px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 17, 38, 0.92), rgba(6, 17, 38, 0.58) 44%, rgba(6, 17, 38, 0.16)),
    linear-gradient(0deg, rgba(6, 17, 38, 0.74), rgba(6, 17, 38, 0.08) 42%),
    url("../images/fb-cover.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 212, 0, 0.18) 44% 50%, transparent 50% 100%),
    radial-gradient(circle at 9px 9px, rgba(255, 255, 255, 0.24) 2px, transparent 3px);
  background-size: 100% 100%, 28px 28px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding-block: 3.6rem 4.2rem;
}

.hero__copy {
  max-width: 720px;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--magenta);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1,
.section h2,
.map-placeholder h2,
.offer-card h2 {
  margin: 0;
  line-height: 0.98;
  font-weight: 950;
}

.hero h1 {
  max-width: 680px;
  font-size: 2.75rem;
}

.hero__text {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 17, 38, 0.42);
  color: var(--white);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0.9rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 3;
  display: none;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 900;
  font-size: 0.86rem;
}

.scroll-cue span {
  display: block;
  width: 2px;
  height: 34px;
  margin: 0 auto 0.35rem;
  border-radius: 10px;
  background: linear-gradient(var(--yellow), var(--magenta), var(--cyan));
  animation: scrollPulse 1.7s ease-in-out infinite;
}

.ink-shape {
  position: absolute;
  z-index: 0;
  width: 260px;
  height: 130px;
  clip-path: polygon(4% 58%, 14% 22%, 37% 0, 67% 12%, 96% 38%, 84% 78%, 57% 100%, 23% 86%);
  opacity: 0.62;
  mix-blend-mode: screen;
  filter: saturate(1.15);
  animation: inkFloat 7s ease-in-out infinite;
}

.ink-shape--cyan {
  right: 8%;
  top: 14%;
  background: var(--cyan);
}

.ink-shape--magenta {
  right: 21%;
  bottom: 18%;
  background: var(--magenta);
  animation-delay: -2s;
}

.ink-shape--yellow {
  left: 42%;
  top: 52%;
  background: var(--yellow);
  animation-delay: -4s;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.feature-copy h2,
.contact-copy h2,
.map-placeholder h2,
.offer-card h2 {
  font-size: 2.2rem;
}

.section-heading p,
.feature-copy p,
.contact-copy p,
.map-placeholder p,
.offer-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.service-intro {
  background:
    linear-gradient(180deg, var(--white), var(--paper)),
    var(--paper);
}

.service-grid,
.why-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card,
.why-card,
.process-step,
.mini-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 17, 38, 0.08);
}

.service-card {
  min-height: 232px;
  padding: 1.2rem;
  border-top: 5px solid var(--accent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.why-card:hover,
.process-step:hover,
.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--accent);
  font-weight: 950;
}

.service-card h3,
.why-card h3,
.process-step h3,
.mini-card h3,
.contact-card h3,
.quote-form h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.service-card p,
.why-card p,
.process-step p,
.mini-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.section--dark {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(236, 0, 140, 0.2), transparent 28%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.2), transparent 24%),
    var(--navy);
  color: var(--white);
}

.section--dark .eyebrow,
.section--ink .eyebrow {
  color: var(--yellow);
}

.section--dark p,
.section--dark .section-heading p,
.section--dark .feature-copy p,
.section--ink .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.print-stripe {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.print-stripe--top {
  top: 0;
  right: 0;
  width: 52%;
  height: 80px;
  background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.split-layout {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-copy p {
  max-width: 620px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 17, 38, 0.14);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.section--dark .feature-image {
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0 72%, rgba(255, 212, 0, 0.36));
}

.feature-image img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-image--poster {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(760px, 82vh);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.16), transparent 34%),
    var(--white);
}

.feature-image--poster::before {
  display: none;
}

.feature-image--poster img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.product-cloud,
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.product-cloud span,
.product-cards span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.58rem 0.82rem;
  font-weight: 850;
}

.signage-section {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 212, 0, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.18), transparent 30%),
    var(--paper);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.mini-card {
  padding: 1rem;
}

.tick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.58rem 0.82rem;
  font-weight: 900;
}

.tick-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--yellow);
}

.banner-section {
  background:
    linear-gradient(120deg, rgba(236, 0, 140, 0.1), transparent 32%),
    linear-gradient(315deg, rgba(255, 212, 0, 0.2), transparent 30%),
    var(--white);
}

.lead-line {
  color: var(--navy) !important;
  font-size: 1.25rem !important;
  font-weight: 950;
}

.banner-section .product-cards span {
  border-color: rgba(6, 17, 38, 0.12);
  background: var(--paper);
  color: var(--navy);
}

.section--ink {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.2), transparent 35%),
    linear-gradient(315deg, rgba(236, 0, 140, 0.2), transparent 26%),
    var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--navy-2);
  color: var(--white);
  padding: 0;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.gallery-item--wide {
  aspect-ratio: 16 / 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.gallery-item span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: var(--radius);
  background: rgba(6, 17, 38, 0.78);
  color: var(--white);
  padding: 0.55rem 0.65rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.why-section {
  background: var(--white);
}

.why-card,
.process-step {
  min-height: 180px;
  padding: 1.2rem;
}

.why-card {
  border-top: 5px solid var(--cyan);
}

.why-card:nth-child(2n) {
  border-top-color: var(--yellow);
}

.why-card:nth-child(3n) {
  border-top-color: var(--magenta);
}

.process-section {
  background:
    linear-gradient(90deg, rgba(6, 17, 38, 0.05), transparent 44%),
    var(--paper);
}

.process-step {
  position: relative;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--magenta));
  color: var(--navy);
  font-weight: 950;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.14;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(247, 37, 37, 0.1), transparent 28%),
    var(--white);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.contact-card {
  min-height: 132px;
  padding: 1rem;
}

.contact-card--full {
  min-height: 96px;
}

.contact-card a {
  display: block;
  width: fit-content;
  color: var(--navy);
  font-weight: 900;
}

.contact-card a:hover {
  color: var(--magenta);
}

.quote-form {
  border: 1px solid rgba(6, 17, 38, 0.14);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  color: var(--white);
}

.quote-form label {
  display: block;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.8rem 0.9rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.map-section {
  padding: 0 0 5rem;
  background: var(--white);
}

.map-placeholder {
  border: 1px dashed rgba(6, 17, 38, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.13), transparent 32%),
    linear-gradient(315deg, rgba(255, 212, 0, 0.2), transparent 30%),
    var(--paper);
  padding: 2rem;
}

.offer-section {
  background:
    linear-gradient(135deg, rgba(236, 0, 140, 0.22), transparent 30%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.24), transparent 30%),
    var(--navy);
}

.offer-card {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 1.4rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.offer-card p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-price {
  color: var(--white) !important;
  font-size: 1.2rem !important;
}

.offer-price strong {
  color: var(--yellow);
}

.offer-card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem 1rem;
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.site-footer {
  background: #020817;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}

.brand--footer .brand__mark {
  box-shadow: none;
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 0.28rem 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  order: 2;
}

.footer-credit a {
  margin: 0 auto;
  color: var(--yellow);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.45rem 0.55rem calc(0.45rem + env(safe-area-inset-bottom));
  background: rgba(6, 17, 38, 0.95);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.24);
  gap: 0.45rem;
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
  line-height: 1;
}

.mobile-cta a:nth-child(2) {
  background: var(--cyan);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  gap: 0.85rem;
  background: rgba(2, 8, 23, 0.92);
  padding: 1rem;
  animation: fadeIn 160ms ease both;
}

.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  justify-self: end;
  width: 96px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@keyframes inkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(18px, -14px, 0) rotate(5deg);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.65);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero__text {
    font-size: 1.12rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-copy h2,
  .map-placeholder h2,
  .offer-card h2 {
    font-size: 3.1rem;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-card--full {
    grid-column: 1 / -1;
  }

  .split-layout--reverse {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  }

  .split-layout--reverse .feature-image {
    order: -1;
  }

  .offer-card {
    padding: 2rem;
  }
}

@media (min-width: 620px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .hero__copy,
  .hero h1 {
    max-width: 940px;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .scroll-cue {
    display: block;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(6, 17, 38, 0.98);
    padding: 0.75rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 0.85rem;
    border-radius: var(--radius);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header__actions .btn {
    min-width: 106px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 72px);
    background-position: 58% center;
  }

  .hero__inner {
    gap: 0.4rem;
    padding-block: 2.8rem 0;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero__actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero__actions {
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-copy h2,
  .map-placeholder h2,
  .offer-card h2 {
    font-size: 2.15rem;
  }

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

  .feature-image--poster {
    height: auto;
  }

  .feature-image--poster img {
    width: 100%;
    height: auto;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: auto;
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .mobile-cta {
    display: grid;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .trust-list li {
    display: grid;
    place-items: center;
    min-height: 36px;
    padding: 0.35rem;
    text-align: center;
    font-size: 0.76rem;
    line-height: 1.12;
  }

}

@media (max-width: 420px) {
  .site-footer .brand__mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .site-header .brand > span:not(.brand__mark) {
    display: none;
  }

  .brand strong {
    font-size: 1rem;
  }

  .header__actions {
    gap: 0.45rem;
  }

  .btn--small {
    min-height: 40px;
    padding-inline: 0.75rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
