:root {
  --ink: #09090b;
  --panel: #141418;
  --panel-2: #1d1d22;
  --red: #d8292f;
  --red-dark: #8f1118;
  --blue: #24aee4;
  --teal: #0f9f9a;
  --green: #7ac943;
  --cream: #fff8f2;
  --muted: #62636c;
  --soft: #edf8f7;
  --paper: #ffffff;
  --text: #15151a;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(21, 21, 26, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(18, 159, 154, 0.12), rgba(36, 174, 228, 0.1) 44%, rgba(122, 201, 67, 0.08)),
    linear-gradient(180deg, #fbfdfd, #eef7f8 48%, #f8fbf8);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.image-frame img,
.flyer-preview img,
.gallery-strip img,
.flyer-card img,
.work-card img,
.map-preview iframe {
  transition:
    transform 260ms ease,
    filter 260ms ease,
    box-shadow 260ms ease;
}

.image-frame:hover img,
.flyer-preview:hover img,
.gallery-strip img:hover,
.flyer-card:hover img,
.work-card:hover img,
.map-preview:hover iframe {
  animation: picture-pulse 760ms ease;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

@keyframes picture-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 174, 228, 0.32);
  }

  55% {
    box-shadow: 0 0 0 12px rgba(36, 174, 228, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(36, 174, 228, 0);
  }
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 18, 24, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 118px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

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

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  max-width: min(58vw, 520px);
  overflow: hidden;
  color: #c7c7cd;
  font-size: 0.75rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 6px;
  color: #c7c7cd;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.site-nav .social-link {
  background: linear-gradient(135deg, #08766f, #0b5f7e);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.photo-hero {
  min-height: calc(100vh - 83px);
  display: grid;
  align-items: end;
  padding: clamp(36px, 6vw, 76px);
}

.photo-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 31, 0.95), rgba(5, 62, 70, 0.68), rgba(15, 159, 154, 0.14)),
    linear-gradient(0deg, rgba(4, 24, 31, 0.72), transparent 48%);
  pointer-events: none;
}

.hero-copy,
.page-hero > * {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.48);
}

.hero-copy p,
.page-hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: #087aa8;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(8, 118, 111, 0.32);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: #08766f;
  background: linear-gradient(135deg, #08766f, #0b789d);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(8, 118, 111, 0.24);
}

.button.primary:hover {
  border-color: #0f9f9a;
  background: linear-gradient(135deg, #0f9f9a, #0a6d91);
  box-shadow: 0 18px 38px rgba(15, 159, 154, 0.26);
}

.button.ghost {
  border-color: rgba(8, 118, 111, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #075f5a;
}

.button.ghost:hover {
  border-color: rgba(15, 159, 154, 0.48);
  background: #eefafa;
  color: #044d50;
}

.hero .button.ghost,
.page-hero .button.ghost {
  border-color: rgba(156, 230, 218, 0.48);
  background: rgba(7, 95, 90, 0.34);
  color: var(--white);
}

.hero .button.ghost:hover,
.page-hero .button.ghost:hover {
  background: rgba(15, 159, 154, 0.5);
  border-color: rgba(197, 245, 238, 0.72);
}

.band,
.trust-strip,
.highlight-strip,
.service-tabs,
.gallery-tabs,
.split-section,
.flyer-section,
.flyer-showcase,
.proof-section,
.pricing-grid,
.gallery-strip,
.gallery-cta,
.work-gallery,
.work-section,
.contact-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  transform: translateY(-28px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
  box-shadow: 0 18px 44px rgba(5, 62, 70, 0.18);
}

.trust-strip div {
  min-height: 108px;
  padding: 20px;
  background: var(--paper);
}

.trust-strip span {
  display: block;
  margin-bottom: 6px;
  color: #087aa8;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  color: var(--text);
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.25;
}

.trust-strip a {
  text-decoration: none;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 8px;
  margin-bottom: 24px;
  padding: clamp(34px, 5vw, 58px) max(18px, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.9) 52%, rgba(8, 118, 111, 0.78)),
    #07181f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.intro-copy {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
  border-left: 5px solid #6fd2f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-copy p {
  margin: 0;
  color: #d6e4e7;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-points span {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(111, 210, 246, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #e9fbff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.85rem, 3.7vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 0 78px;
}

.highlight-strip article,
.price-card,
.contact-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.88) 58%, rgba(15, 159, 154, 0.36)),
    #07181f;
  box-shadow: 0 22px 56px rgba(4, 24, 31, 0.22);
}

.highlight-strip article {
  min-height: 210px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(10, 110, 145, 0.28), rgba(216, 41, 47, 0.18)),
    linear-gradient(180deg, #07181f, #10252d);
  box-shadow: 0 20px 48px rgba(4, 24, 31, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.highlight-strip article:hover {
  border-color: rgba(111, 210, 246, 0.55);
  box-shadow: 0 24px 58px rgba(4, 24, 31, 0.28);
  transform: translateY(-2px);
}

.highlight-strip span {
  color: #6fd2f6;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-strip strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--white);
}

.highlight-strip p {
  color: #d6e4e7;
}

.split-section,
.flyer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  padding: 28px 0 92px;
}

.flyer-section > div {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.88) 58%, rgba(15, 159, 154, 0.36)),
    #07181f;
  box-shadow: 0 22px 56px rgba(4, 24, 31, 0.22);
}

.flyer-section h2,
.flyer-section p {
  color: var(--white);
}

.flyer-section p {
  color: #d6e4e7;
}

.split-section > div {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.88) 58%, rgba(15, 159, 154, 0.46)),
    #07181f;
  box-shadow: 0 22px 56px rgba(4, 24, 31, 0.22);
}

.split-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
}

.split-section p:not(.eyebrow) {
  color: #d6e4e7;
  line-height: 1.7;
}

.service-points.compact {
  margin: 22px 0 24px;
}

.flyer-showcase {
  display: grid;
  gap: 22px;
  padding: 22px 0 82px;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-kicker h2,
.section-kicker p {
  margin-bottom: 0;
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flyer-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(5, 62, 70, 0.14);
}

.flyer-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--white);
}

.flyer-card.portrait img {
  aspect-ratio: 4 / 5;
}

.flyer-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-frame,
.flyer-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(5, 62, 70, 0.16);
}

.image-frame img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.flyer-preview {
  display: block;
  max-height: 680px;
}

.flyer-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.text-link {
  color: #087aa8;
  font-weight: 900;
  text-decoration: none;
}

.text-link.button-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid #08766f;
  border-radius: 6px;
  background: linear-gradient(135deg, #08766f, #0b789d);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(8, 118, 111, 0.2);
}

.text-link.button-link:hover {
  background: linear-gradient(135deg, #0f9f9a, #0a6d91);
  box-shadow: 0 18px 38px rgba(15, 159, 154, 0.24);
  transform: translateY(-1px);
}

.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(42px, 7vw, 82px);
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.96), rgba(8, 84, 91, 0.92) 52%, rgba(20, 122, 98, 0.88)),
    linear-gradient(180deg, #07181f, #0b2d33);
}

.services-hero {
  background-image:
    linear-gradient(90deg, rgba(4, 24, 31, 0.9), rgba(6, 68, 76, 0.73), rgba(17, 111, 96, 0.42)),
    url("assets/Gallery/truck2.jpg");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(4, 24, 31, 0.9), rgba(6, 68, 76, 0.72), rgba(17, 111, 96, 0.4)),
    url("assets/Gallery/truck1.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-hero {
  background-image:
    linear-gradient(90deg, rgba(4, 24, 31, 0.92), rgba(6, 68, 76, 0.7), rgba(17, 111, 96, 0.38)),
    url("assets/Gallery/truck7.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding: clamp(34px, 5vw, 58px) max(18px, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.9) 52%, rgba(8, 118, 111, 0.78)),
    #07181f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-intro h2 {
  color: var(--white);
}

.gallery-intro > p {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border-left: 5px solid #6fd2f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6e4e7;
  line-height: 1.65;
}

.gallery-tabs {
  position: sticky;
  top: 83px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 22px;
  background: rgba(4, 24, 31, 0.9);
  backdrop-filter: blur(14px);
}

.gallery-tabs a {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(111, 210, 246, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #e9fbff;
  font-weight: 900;
  text-decoration: none;
}

.gallery-tabs a:hover {
  border-color: rgba(111, 210, 246, 0.55);
  background: rgba(111, 210, 246, 0.14);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0 72px;
}

.price-card {
  padding: clamp(20px, 3vw, 30px);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-top: 5px solid #6fd2f6;
}

.price-card.wide {
  grid-row: span 2;
}

.price-card h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.price-card h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.price-card > p {
  max-width: 56ch;
  margin: 0;
  color: #d6e4e7;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.65;
}

.price-card dl {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
}

.price-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 10px 12px;
  border: 1px solid rgba(111, 210, 246, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}

dt {
  color: #e9fbff;
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #6fd2f6;
  font-size: 1.02rem;
  font-weight: 900;
}

.note {
  margin: 18px 0 0;
  color: #087aa8;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 86px;
}

.proof-section {
  display: grid;
  gap: 22px;
  padding: 0 0 86px;
}

.proof-section > div:first-child {
  max-width: 780px;
}

.proof-grid {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
}

.proof-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #07181f;
  box-shadow: 0 18px 42px rgba(5, 62, 70, 0.14);
  text-decoration: none;
}

.proof-card.large {
  grid-row: span 2;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.proof-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(4, 24, 31, 0.82));
  pointer-events: none;
}

.proof-card span {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.52);
}

.work-section {
  padding: 8px 0 52px;
  scroll-margin-top: 150px;
}

.gallery-strip.home-gallery {
  padding-top: 0;
  padding-bottom: 28px;
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(5, 62, 70, 0.12);
}

.gallery-strip img[src$="services.jpg"],
.gallery-strip img[src$="mainflyer.jpg"] {
  object-fit: contain;
  background: var(--white);
}

.work-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 210px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  padding: 0;
}

.work-gallery.compact {
  grid-auto-rows: 235px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #07181f;
  box-shadow: 0 18px 42px rgba(5, 62, 70, 0.14);
  text-decoration: none;
}

.work-card.feature,
.work-card.wide {
  grid-column: span 2;
}

.work-card.feature,
.work-card.tall {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(4, 24, 31, 0.82));
  pointer-events: none;
}

.work-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.52);
}

.gallery-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 86px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.88) 58%, rgba(15, 159, 154, 0.36)),
    #07181f;
  box-shadow: 0 22px 56px rgba(4, 24, 31, 0.22);
}

.gallery-cta h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  padding: 64px 0 90px;
}

.contact-panel,
.contact-form,
.map-panel {
  padding: clamp(22px, 4vw, 36px);
}

.contact-panel {
  grid-row: span 2;
}

.map-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 24, 31, 0.94), rgba(8, 74, 88, 0.88) 58%, rgba(15, 159, 154, 0.36)),
    #07181f;
  box-shadow: 0 22px 56px rgba(4, 24, 31, 0.22);
}

.map-panel h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.map-preview {
  display: block;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #dfe9ef;
}

.map-preview iframe {
  width: 100%;
  height: 320px;
  border: 0;
  pointer-events: none;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  color: #e9fbff;
  font-weight: 800;
}

.contact-list span {
  color: #087aa8;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact-list a {
  color: #6fd2f6;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-panel h2,
.contact-form h2 {
  color: var(--white);
}

.contact-form p {
  color: #d6e4e7;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

select option {
  background: var(--white);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0 0;
}

.service-tabs a {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(111, 210, 246, 0.24);
  border-radius: 6px;
  background: rgba(4, 24, 31, 0.86);
  color: #e9fbff;
  font-weight: 900;
  text-decoration: none;
}

.service-tabs a:hover {
  border-color: rgba(111, 210, 246, 0.55);
  background: rgba(8, 74, 88, 0.92);
  color: var(--white);
}

.contact-cta-panel {
  align-content: start;
}

.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.service-checklist span {
  padding: 11px 12px;
  border: 1px solid rgba(111, 210, 246, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: #e9fbff;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #04181f;
}

.site-footer p {
  margin: 0;
  color: #c7c7cd;
}

.site-footer a {
  color: #6fd2f6;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .brand small {
    max-width: 42vw;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 83px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #04181f;
  }

  .site-nav.open {
    display: flex;
  }

  .photo-hero {
    min-height: 640px;
    padding: 30px 18px;
  }

  .photo-hero > img {
    object-position: 62% center;
  }

  .photo-hero::after,
  .page-hero::after {
    background: linear-gradient(180deg, rgba(4, 24, 31, 0.18), rgba(4, 24, 31, 0.96) 58%);
  }

  .intro,
  .section-kicker,
  .highlight-strip,
  .trust-strip,
  .split-section,
  .flyer-section,
  .flyer-grid,
.proof-grid,
  .gallery-intro,
  .gallery-cta,
  .pricing-grid,
  .gallery-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    transform: none;
    margin-top: 18px;
  }

  .price-card.wide {
    grid-row: auto;
  }

  .contact-panel {
    grid-row: auto;
  }

  .page-hero {
    min-height: 460px;
    padding: 34px 18px;
  }

  .work-gallery {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card.feature,
  .work-card.wide,
  .work-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-inline: 14px;
  }

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

  .brand small {
    max-width: 48vw;
    font-size: 0.66rem;
  }

  .brand-logo {
    width: 78px;
    height: 40px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .image-frame img,
  .gallery-strip img {
    min-height: 0;
    height: 280px;
  }

  .price-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    flex-direction: column;
  }

  .service-tabs a,
  .service-checklist span {
    width: 100%;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }

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

  .gallery-tabs {
    position: static;
  }

  .work-card,
  .work-card.feature,
  .work-card.wide,
  .work-card.tall {
    min-height: 0;
  }

  .work-card img {
    height: 285px;
  }
}
