@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@700;800;900&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --ink: #141821;
  --muted: #626b78;
  --paper: #f7f5f1;
  --panel: #ffffff;
  --line: rgba(20, 24, 33, 0.12);
  --navy: #071d55;
  --blue: #123a84;
  --red: #780000;
  --green: #167044;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.btn,
.nav-links,
.eyebrow,
.brand-text,
.announcement,
.hero-point strong,
.service-media,
.process-card strong {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.018em;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.announcement {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, #071d55, #123a84);
  font-size: 0.9rem;
  font-weight: 700;
}

.announcement .container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 20px;
  text-align: center;
}

.announcement-ticker {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.announcement-viewport { overflow: hidden; flex: 1; min-width: 0; }
.announcement-track { display: flex; width: max-content; animation: announcements 48s linear infinite; }
.announcement-group { display: flex; align-items: center; justify-content: space-around; flex-shrink: 0; min-width: calc(100vw - 64px); }
.announcement-group span {
  white-space: nowrap;
  padding: 8px 28px;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}
.announcement-group span::before { content: "\2022"; margin-right: 16px; color: #fff; }
.announcement-pause { background: transparent; color: #fff; border: 0; border-left: 1px solid #ffffff50; padding: 10px 14px; cursor: pointer; font-size: 12px; min-width: 64px; }
.announcement-pause:focus-visible { outline: 2px solid white; outline-offset: -4px; }
.announcement-ticker:hover .announcement-track,
.announcement-ticker:focus-within .announcement-track,
.announcement-ticker.is-paused .announcement-track { animation-play-state: paused; }
@keyframes announcements { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .announcement-track { animation: none; width: auto; }
  .announcement-group { flex-wrap: wrap; justify-content: center; }
  .announcement-group span { white-space: normal; padding: 5px 12px; }
  .announcement-group[aria-hidden], .announcement-pause { display: none; }
}
.shop-preview { min-height: 240px; }

.announcement strong {
  color: #fff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 241, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: clamp(210px, 24vw, 330px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand-fallback {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--red));
  font-size: 0.82rem;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1.03rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 19px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--red);
}

.nav-links a.nav-quote {
  padding: 10px 16px;
  border: 1px solid #780000;
  border-radius: 5px;
  color: #fff;
  background: #780000;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-links a.nav-quote:hover,
.nav-links a.nav-quote.active {
  color: #fff;
  background: #590000;
  border-color: #590000;
}

.nav-links a.nav-quote:focus-visible {
  outline: 3px solid #a51f2a;
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--navy);
  cursor: pointer;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 29, 85, 0.17);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: rgba(7, 29, 85, 0.22);
}

.btn-red {
  color: #fff;
  background: var(--red);
}

.hero-quote:hover {
  background: #590000;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 29, 85, 0.94), rgba(18, 58, 132, 0.78)),
    linear-gradient(135deg, #071d55, #123a84);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -2;
  background: url("../images/homepage-project-banner.jpg") center / cover no-repeat;
  filter: blur(7px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 16, 31, 0.86), rgba(8, 16, 31, 0.58));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.hero .eyebrow,
.dark .eyebrow {
  color: #fff;
}

.hero .eyebrow::before,
.dark .eyebrow::before {
  background: #ef7373;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.75rem;
  line-height: 0.94;
}

.hero p {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.work-headline span {
  display: block;
}

.work-headline span:last-child {
  color: var(--red);
}

.work-showcase .list li {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.card-viewer {
  min-width: 0;
  align-self: center;
}

.flip-card {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  perspective: 1400px;
  cursor: pointer;
  touch-action: manipulation;
}
.card-tilt, .card-flip {
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.card-tilt {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease-out;
}
.card-flip {
  position: relative;
  transition: transform 650ms cubic-bezier(0.22, 0.7, 0.25, 1);
}
.is-flipped .card-flip { transform: rotateY(180deg); }
.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card-back { transform: rotateY(180deg); }
.flip-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .card-tilt { transform: none; transition: none; }
  .card-flip { transition: none; }
}

.project-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius);
  align-self: center;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.image-slot {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.image-slot.light {
  min-height: 260px;
  border-color: rgba(7, 29, 85, 0.18);
  color: var(--muted);
  background: linear-gradient(135deg, rgba(7, 29, 85, 0.05), rgba(120, 0, 0, 0.04));
}

.image-slot strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font-size: 1.05rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.hero-point {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-point strong {
  display: block;
  color: #fff;
}

.hero-point span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.page-hero {
  padding: 56px 0 30px;
  background: linear-gradient(135deg, rgba(7, 29, 85, 0.08), rgba(120, 0, 0, 0.03)), var(--paper);
}

.page-hero h1 {
  max-width: 870px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.06;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding-top: 34px;
}

.dark {
  color: #fff;
  background: linear-gradient(135deg, #101827, #071d55);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-head h2,
.panel h2,
.cta-band h2,
.shop-placeholder h2 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 3rem;
  line-height: 0.98;
}

.dark .section-head h2,
.dark h2 {
  color: #fff;
}

.section-head p,
.panel p,
.card p,
.service-card p,
.coming-card p,
.shop-placeholder p {
  color: var(--muted);
}

.dark .section-head p,
.dark p,
.dark .card p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.panel,
.card,
.service-card,
.coming-card,
.shop-panel,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel,
.shop-panel,
.quote-card {
  padding: 26px;
}

.grid-3,
.grid-2,
.coming-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.grid-2,
.coming-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.service-card,
.coming-card {
  overflow: hidden;
}

.card-body {
  padding: 20px;
}

.tray-project {
  margin-top: 28px;
}

.tray-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tray-photos img {
  border-radius: var(--radius);
}

.tray-caption {
  padding-top: 18px;
}

.tray-caption h3 {
  color: var(--navy);
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.tray-caption p {
  color: var(--muted);
}

@media (max-width: 600px) {
  .tray-photos {
    grid-template-columns: 1fr;
  }
}

.service-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.service-media {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 900;
}

.service-card:nth-child(2) .service-media,
.service-card:nth-child(5) .service-media {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.service-card:nth-child(3) .service-media,
.service-card:nth-child(6) .service-media {
  background: linear-gradient(135deg, var(--red), #4a1219);
}

.card h3,
.service-card h3,
.coming-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
}

.dark .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark .card h3 {
  color: #fff;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  border-left: 3px solid var(--red);
  padding: 10px 12px;
  background: rgba(7, 29, 85, 0.04);
  color: var(--ink);
  font-weight: 800;
}

.process-card {
  border-top: 3px solid var(--red);
  padding: 20px;
}

.process-card strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(20, 24, 33, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

.quote-form textarea {
  min-height: 170px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 3px solid rgba(120, 0, 0, 0.2);
  border-color: var(--red);
}

.field-help,
.form-status {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status {
  min-height: 24px;
  font-weight: 900;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.shop-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px dashed rgba(7, 29, 85, 0.28);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: rgba(7, 29, 85, 0.04);
}

.shop-placeholder p {
  max-width: 640px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.privacy-copy {
  max-width: 780px;
  overflow-wrap: anywhere;
}

.privacy-copy h2 {
  margin: 30px 0 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--navy);
}

.privacy-copy a,
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
  background: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--navy);
}

@media (max-width: 960px) {
  h1,
  .page-hero h1 {
    font-size: 3.65rem;
  }

  .hero-grid,
  .split,
  .quote-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .coming-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .announcement .container {
    flex-direction: column;
    gap: 2px;
  }

  .nav {
    min-height: 68px;
  }

  .brand-text span {
    display: none;
  }

  .brand-logo {
    width: min(230px, 64vw);
    max-height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    background: rgba(247, 245, 241, 0.98);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 0;
  }

  .hero {
    padding: 52px 0;
  }

  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

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

  .section {
    padding: 50px 0;
  }

  .section-head,
  .grid-3,
  .grid-2,
  .coming-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .panel h2,
  .cta-band h2,
  .shop-placeholder h2 {
    font-size: 2.45rem;
  }

  .image-slot {
    min-height: 250px;
  }
}
.service-band { border-bottom: 1px solid var(--line); }
.service-band-white { background: #fff; }
.service-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 28px; }
.service-example { min-width: 0; }
.service-example > img, .gallery-images img, .service-map img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 6px; }
.service-example h3 { margin: 18px 0 8px; font-size: 1.9rem; color: var(--navy); }
.service-example p { margin: 0; }
.service-sign-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: 56px; }
.service-sign-copy h2 { font-size: 3rem; margin: 12px 0 20px; }
.service-sign-copy p { margin-bottom: 20px; }
.service-features { padding-left: 20px; margin: 24px 0 30px; }
.service-features li { margin: 10px 0; }
.service-features li::marker { color: var(--red); }
.service-gallery { min-width: 0; }
.gallery-images { position: relative; }
.gallery-slide[hidden], .gallery-controls[hidden] { display: none; }
.gallery-controls { position: absolute; inset: 50% 10px auto; display: flex; justify-content: space-between; pointer-events: none; transform: translateY(-50%); }
.gallery-controls button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 4px; background: transparent; cursor: pointer; pointer-events: auto; }
.gallery-controls button img { width: 32px; height: 32px; border-radius: 0; filter: brightness(0) invert(1) drop-shadow(0 1px 2px #000) drop-shadow(0 0 4px #0008); }
.gallery-controls button:hover { background: #0003; }
.gallery-controls button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.service-example .gallery-caption, .gallery-caption { display: grid; grid-template-columns: 42px 1fr; gap: 10px; min-height: 88px; margin: 0; padding: 14px 0; font-size: .9rem; line-height: 1.5; }
[data-gallery-count] { color: var(--red); font-weight: 700; }
.service-map { margin: 0; min-width: 0; }
.gallery-status { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.services-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); }
.services-hero::before { content: ""; position: absolute; inset: -24px; z-index: -2; background: url("../images/homepage-project-banner.jpg") center / cover no-repeat; filter: blur(7px); pointer-events: none; }
.services-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 16, 31, .86), rgba(8, 16, 31, .58)); pointer-events: none; }
.services-hero h1, .services-hero .eyebrow { color: #fff; }
.services-hero .eyebrow::before { background: #ee8c8c; }
.service-map figcaption { padding-top: 14px; font-size: .9rem; }
@media (max-width: 760px) {
  .service-columns, .service-sign-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-sign-copy h2 { font-size: 2.45rem; }
}
.nav-links a { font-family: "Montserrat", Arial, sans-serif; text-transform: uppercase; font-size: .8rem; font-weight: 700; letter-spacing: 0; }
.services-hero p { color: #fff; }
.shop-intro { max-width: 720px; margin-bottom: 28px; }
.shop-intro h2 { color: var(--navy); font-size: 2.45rem; margin-top: 0; }
.quote-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
