@charset "UTF-8";
/* ==========================================================================
   Proger Design — site stylesheet
   Layered on top of Bootstrap 5.3. Palette: navy blue + gold.
   Order: tokens → base → utilities → layout → components → pages → motion
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* Navy */
  --pd-navy-900: #050f1e;
  --pd-navy-800: #0a1a33;
  --pd-navy-700: #0f2547;
  --pd-navy-600: #16345f;
  --pd-navy-500: #1f4477;

  /* Gold */
  --pd-gold-600: #a9863a;
  --pd-gold-500: #c8a24a;
  --pd-gold-400: #d9b95f;
  --pd-gold-300: #e8d19a;

  /* Neutrals */
  --pd-cream: #f7f5f0;
  --pd-cream-dark: #ece8df;
  --pd-paper: #ffffff;
  --pd-ink: #101720;
  --pd-muted: #5c6672;
  --pd-line: rgba(16, 23, 32, .12);
  --pd-line-light: rgba(255, 255, 255, .16);

  /* Type */
  --pd-font-display: "Outfit", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --pd-font-body: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  /* Rhythm */
  --pd-section-y: clamp(4.5rem, 9vw, 8.5rem);
  --pd-radius: 2px;
  --pd-ease: cubic-bezier(.22, .61, .36, 1);
  --pd-header-h: 84px;

  /* Bootstrap overrides */
  --bs-body-font-family: var(--pd-font-body);
  --bs-body-color: var(--pd-ink);
  --bs-body-bg: var(--pd-paper);
  --bs-primary: var(--pd-navy-700);
  --bs-link-color: var(--pd-navy-700);
  --bs-link-hover-color: var(--pd-gold-600);
  --bs-border-color: var(--pd-line);
  --bs-focus-ring-color: rgba(200, 162, 74, .45);
}

/* ----------------------------------------------------------------- 2. Base */
* { -webkit-tap-highlight-color: rgba(200, 162, 74, .2); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--pd-font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--pd-ink);
  background: var(--pd-paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-name, .display-title {
  font-family: var(--pd-font-display);
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1.12;
  color: var(--pd-navy-800);
}

p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; transition: color .25s var(--pd-ease); }

img { max-width: 100%; height: auto; }

::selection { background: var(--pd-gold-300); color: var(--pd-navy-900); }

:focus-visible {
  outline: 2px solid var(--pd-gold-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: .65rem 1.2rem;
  background: var(--pd-gold-500);
  color: var(--pd-navy-900);
  font-weight: 600;
  transition: top .2s var(--pd-ease);
}
.skip-link:focus { top: 1rem; color: var(--pd-navy-900); }

/* ------------------------------------------------------------ 3. Utilities */

/* Rows use g-5 (3rem gutters => -1.5rem side margins). The default container
   only pads 0.75rem, which pushes 0.75rem of every row off-screen. Match the
   container padding to the gutter so nothing overflows on narrow viewports. */
.container, .container-fluid { --bs-gutter-x: 3rem; }

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.15rem;
  font-family: var(--pd-font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pd-gold-600);
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.on-dark .eyebrow,
.section--navy .eyebrow { color: var(--pd-gold-400); }

.display-1x { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
.display-2x { font-size: clamp(2.05rem, 4.3vw, 3.5rem); }
.display-3x { font-size: clamp(1.5rem, 2.4vw, 2.05rem); }

.lead-x {
  font-size: clamp(1.075rem, 1.35vw, 1.3rem);
  line-height: 1.7;
  color: var(--pd-muted);
  font-weight: 300;
}

.text-gold { color: var(--pd-gold-600) !important; }
.text-navy { color: var(--pd-navy-800) !important; }
.text-muted-x { color: var(--pd-muted) !important; }

.rule {
  width: 3.5rem;
  height: 2px;
  margin: 1.75rem 0;
  background: var(--pd-gold-500);
  border: 0;
  opacity: 1;
}
.rule--center { margin-left: auto; margin-right: auto; }

.measure { max-width: 34rem; }
.measure-wide { max-width: 46rem; }

.section { padding: var(--pd-section-y) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
/* For a section that follows a band it belongs with — trims the doubled gap. */
.section--pt-tight { padding-top: clamp(2.5rem, 4vw, 4rem); }
.section--cream { background: var(--pd-cream); }
.section--navy {
  background: var(--pd-navy-800);
  color: rgba(255, 255, 255, .78);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy .lead-x { color: rgba(255, 255, 255, .7); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Thin gold frame, offset down-left so it reads as a second plane behind
   the photo. The image sits on z-index 1, the frame on 0, so only the
   protruding left and bottom edges stay visible. */
.frame { position: relative; isolation: isolate; }
.frame::after {
  content: "";
  position: absolute;
  inset: 1.5rem 1.5rem -1.5rem -1.5rem;
  border: 1px solid var(--pd-gold-500);
  z-index: 0;
  pointer-events: none;
}
.frame > img, .frame > picture > img { position: relative; z-index: 1; display: block; }
@media (max-width: 767.98px) {
  /* Keep the protruding frame inside the container padding on small screens. */
  .frame::after { inset: 1rem 1rem -1rem -1rem; }
}

/* ------------------------------------------------------------- 4. Buttons */
.btn {
  --bs-btn-border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-width: 1px;
  transition: background-color .3s var(--pd-ease), color .3s var(--pd-ease),
              border-color .3s var(--pd-ease), transform .3s var(--pd-ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .7rem 1.35rem; font-size: .72rem; }
.btn-lg { padding: 1.2rem 2.6rem; font-size: .84rem; }

.btn-gold {
  background: var(--pd-gold-500);
  border-color: var(--pd-gold-500);
  color: var(--pd-navy-900);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--pd-gold-400);
  border-color: var(--pd-gold-400);
  color: var(--pd-navy-900);
}

.btn-navy {
  background: var(--pd-navy-800);
  border-color: var(--pd-navy-800);
  color: #fff;
}
.btn-navy:hover, .btn-navy:focus-visible {
  background: var(--pd-navy-600);
  border-color: var(--pd-navy-600);
  color: #fff;
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--pd-navy-800);
  color: var(--pd-navy-800);
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background: var(--pd-navy-800);
  color: #fff;
}

.btn-outline-light-x {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.btn-outline-light-x:hover, .btn-outline-light-x:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--pd-navy-800);
}

/* Text link with an animated gold underline */
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pd-navy-800);
  padding-bottom: .35rem;
  background-image: linear-gradient(var(--pd-gold-500), var(--pd-gold-500));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .35s var(--pd-ease), color .25s var(--pd-ease);
}
.link-gold:hover, .link-gold:focus-visible {
  color: var(--pd-gold-600);
  background-size: 100% 1px;
}
.link-gold::after { content: "\2192"; transition: transform .3s var(--pd-ease); }
.link-gold:hover::after { transform: translateX(4px); }
.on-dark .link-gold { color: #fff; }
.on-dark .link-gold:hover { color: var(--pd-gold-300); }

/* -------------------------------------------------------------- 5. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--pd-navy-800);
  border-bottom: 1px solid var(--pd-line-light);
  transition: background-color .4s var(--pd-ease), box-shadow .4s var(--pd-ease),
              border-color .4s var(--pd-ease);
}
.site-header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--overlay.is-stuck {
  background: rgba(10, 26, 51, .95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--pd-line-light);
  box-shadow: 0 10px 40px rgba(5, 15, 30, .35);
}
.site-header .navbar { padding: 0; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--pd-header-h);
  gap: 1rem;
}
.site-header.is-stuck { --pd-header-h: 70px; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0;
  margin: 0;
}
.brand-mark {
  width: 44px;
  height: auto;
  border: 1px solid var(--pd-line-light);
  background: #fff;
  padding: 2px;
  transition: border-color .3s var(--pd-ease);
}
.navbar-brand:hover .brand-mark { border-color: var(--pd-gold-500); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--pd-font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  text-transform: none;
}
.brand-name em {
  font-style: normal;
  font-weight: 200;
  color: var(--pd-gold-400);
}
.brand-sub {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: .2rem;
}

.navbar-toggler {
  border: 1px solid var(--pd-line-light);
  border-radius: 0;
  padding: .7rem .65rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: none !important;
}
.toggler-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
}

.navbar-nav { gap: clamp(.25rem, 1.6vw, 1.6rem); align-items: center; }
.site-header .nav-link {
  position: relative;
  padding: .5rem 0;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--pd-gold-500);
  transition: width .3s var(--pd-ease);
}
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-link.active { color: #fff; }
.site-header .nav-link:hover::after,
.site-header .nav-link:focus-visible::after,
.site-header .nav-link.active::after { width: 100%; }

.nav-extras {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: clamp(1rem, 3vw, 2.5rem);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pd-line-light);
}
.lang-switch__item {
  padding: .38rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  line-height: 1;
}
.lang-switch__item + .lang-switch__item { border-left: 1px solid var(--pd-line-light); }
.lang-switch__item:hover { color: #fff; }
.lang-switch__item.is-active {
  background: var(--pd-gold-500);
  color: var(--pd-navy-900);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
}
.nav-phone svg { width: 17px; height: 17px; fill: var(--pd-gold-400); flex: none; }
.nav-phone:hover { color: #fff; }

/* Offcanvas panel (mobile) */
.pd-offcanvas {
  background: var(--pd-navy-800);
  color: #fff;
  width: min(88vw, 21rem);
  border: 0;
}
.pd-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--pd-line-light);
  padding: 1.25rem 1.5rem;
}
.pd-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.pd-offcanvas .navbar-nav {
  align-items: stretch;
  gap: 0;
  margin-bottom: 2rem;
}
.pd-offcanvas .nav-item + .nav-item { border-top: 1px solid var(--pd-line-light); }
.pd-offcanvas .nav-link { padding: .95rem 0; font-size: .95rem; letter-spacing: .1em; }
.pd-offcanvas .nav-extras {
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin-left: 0;
  margin-top: auto;
}
.pd-offcanvas .lang-switch { align-self: flex-start; }
.pd-offcanvas .nav-cta { text-align: center; }

@media (min-width: 992px) {
  .pd-offcanvas {
    background: transparent;
    width: auto;
    flex-grow: 1;
    justify-content: flex-end;
  }
  .pd-offcanvas .offcanvas-header { display: none; }
  .pd-offcanvas .offcanvas-body {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    overflow: visible;
  }
  /* Undo the stacked mobile treatment — back to a single inline row. */
  .pd-offcanvas .navbar-nav { align-items: center; margin-bottom: 0; }
  .pd-offcanvas .nav-item + .nav-item { border-top: 0; }
  .pd-offcanvas .nav-link { padding: .5rem 0; font-size: .8rem; letter-spacing: .16em; }
  .pd-offcanvas .nav-extras {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.1rem;
    margin-top: 0;
  }
  .navbar-expand-lg .offcanvas { position: static; transform: none; visibility: visible !important; }
}
/* Tight desktop band: drop the phone number so the row never wraps. */
@media (min-width: 992px) and (max-width: 1249.98px) {
  .nav-phone { display: none; }
  .navbar-nav { gap: .9rem; }
  .nav-extras { margin-left: 1.25rem; }
}
@media (max-width: 991.98px) {
  .nav-phone { font-size: .95rem; }
  .site-header .container { min-height: 68px; }
}

/* ---------------------------------------------------------------- 6. Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 900px);
  padding: calc(var(--pd-header-h) + clamp(4rem, 10vw, 8rem)) 0 clamp(3rem, 6vw, 5rem);
  background: var(--pd-navy-900);
  overflow: hidden;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--pd-ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; animation: pdKenburns 14s linear forwards; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 30, .82) 0%, rgba(5, 15, 30, .48) 38%, rgba(5, 15, 30, .92) 100%),
    linear-gradient(100deg, rgba(10, 26, 51, .9) 0%, rgba(10, 26, 51, .25) 62%);
}
.hero__inner { position: relative; z-index: 2; }

.hero__logo {
  width: clamp(76px, 8vw, 104px);
  height: auto;
  margin-bottom: 1.75rem;
  padding: .4rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}
.hero__eyebrow { color: var(--pd-gold-400); }
.hero__title {
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  font-weight: 200;
  line-height: .98;
  color: #fff;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.hero__title strong { font-weight: 600; }
.hero__slogan {
  font-family: var(--pd-font-display);
  font-size: clamp(1.3rem, 2.9vw, 2.15rem);
  font-weight: 300;
  line-height: 1.28;
  color: var(--pd-gold-300);
  max-width: 26ch;
  margin: 0 0 1.5rem;
}
.hero__subtitle {
  max-width: 44rem;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__dots {
  position: absolute;
  right: max(2rem, 4vw);
  bottom: clamp(3rem, 6vw, 5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  background: transparent;
  transition: background-color .3s var(--pd-ease), border-color .3s var(--pd-ease);
}
.hero__dot.is-active { background: var(--pd-gold-500); border-color: var(--pd-gold-500); }
@media (max-width: 767.98px) { .hero__dots { display: none; } }

/* Slim hero for interior pages */
.page-hero {
  position: relative;
  padding: calc(var(--pd-header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2.75rem, 6vw, 4.5rem);
  background: var(--pd-navy-800);
  color: #fff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 26, 51, .94) 0%, rgba(10, 26, 51, .6) 100%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { color: #fff; margin: 0 0 1rem; }
.page-hero__lead { color: rgba(255, 255, 255, .76); max-width: 44rem; margin: 0; font-weight: 300; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.crumbs a { color: rgba(255, 255, 255, .78); }
.crumbs a:hover { color: var(--pd-gold-400); }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--pd-gold-500); }

/* ----------------------------------------------------------- 7. Intro/split */
.split-media { position: relative; }
.split-media__main { display: block; width: 100%; object-fit: cover; }
.split-media__badge {
  position: absolute;
  right: clamp(-1rem, -1vw, 0rem);
  bottom: -1.5rem;
  z-index: 3; /* must clear the photo, which sits on z-index 1 inside .frame */
  max-width: min(70%, 20rem);
  padding: 1.4rem 1.6rem;
  background: var(--pd-navy-800);
  color: #fff;
  box-shadow: 0 24px 60px rgba(5, 15, 30, .3);
}
@media (max-width: 575.98px) {
  .split-media__badge {
    position: static;
    max-width: none;
    box-shadow: none;
  }
}
.split-media__badge span {
  display: block;
  font-family: var(--pd-font-display);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}
.split-media__badge small {
  display: block;
  margin-top: .5rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pd-gold-400);
}

/* Concept band: wide drawing on navy */
.concept {
  position: relative;
  background: var(--pd-navy-900);
  color: #fff;
  overflow: hidden;
}
.concept__img {
  width: 100%;
  display: block;
  filter: saturate(.15) contrast(1.05) brightness(.9);
  mix-blend-mode: luminosity;
  opacity: .55;
}
.concept__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(5, 15, 30, .96) 0%, rgba(5, 15, 30, .55) 55%, rgba(5, 15, 30, .2) 100%);
}
.concept__box { max-width: 32rem; }
@media (max-width: 767.98px) {
  /* No gradient scrim once the text drops below, so dim the drawing itself. */
  .concept__overlay { position: static; background: none; padding: 2.5rem 0 0; }
  .concept__img { opacity: .35; }
}

/* --------------------------------------------------------- 8. Service cards */
.svc-grid { --gap: 1px; }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pd-paper);
  border: 1px solid var(--pd-line);
  overflow: hidden;
  transition: transform .45s var(--pd-ease), box-shadow .45s var(--pd-ease),
              border-color .45s var(--pd-ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--pd-gold-500);
  box-shadow: 0 26px 60px rgba(10, 26, 51, .14);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pd-navy-800);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--pd-ease), opacity .5s var(--pd-ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__no {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  min-width: 3rem;
  padding: .55rem .7rem;
  background: var(--pd-navy-800);
  color: var(--pd-gold-400);
  font-family: var(--pd-font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: center;
}
.svc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.6rem 1.5rem 1.75rem;
}
.svc-card__title {
  font-size: 1.22rem;
  font-weight: 400;
  margin: 0 0 .7rem;
  color: var(--pd-navy-800);
}
.svc-card__text {
  font-size: .95rem;
  color: var(--pd-muted);
  margin: 0 0 1.35rem;
  line-height: 1.65;
}
.svc-card__body .link-gold { margin-top: auto; align-self: flex-start; }

/* Detailed service rows (Services page) */
.svc-row { padding: clamp(2.25rem, 4vw, 3.5rem) 0; border-top: 1px solid var(--pd-line); }
.svc-row:first-of-type { border-top: 0; }
.svc-row__no {
  font-family: var(--pd-font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 200;
  line-height: 1;
  color: var(--pd-gold-500);
  opacity: .55;
}
.svc-row__title { font-size: clamp(1.55rem, 2.5vw, 2.1rem); margin: 0 0 .5rem; }
.svc-row__short {
  font-family: var(--pd-font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--pd-gold-600);
  margin-bottom: 1.1rem;
}
.svc-row__media { overflow: hidden; }
.svc-row__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .9s var(--pd-ease);
}
.svc-row__media:hover img { transform: scale(1.05); }

.ticks { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .55rem;
  font-size: .95rem;
  color: var(--pd-ink);
}
/* Right + bottom borders rotated +45deg give a true check mark; asymmetric
   arms keep the short stroke short (border-left/-45deg reads as a chevron). */
.ticks li::before {
  content: "";
  position: absolute;
  left: .15rem;
  top: .45em;
  width: .38rem;
  height: .72rem;
  border-right: 1.5px solid var(--pd-gold-500);
  border-bottom: 1.5px solid var(--pd-gold-500);
  transform: rotate(45deg);
}
.on-dark .ticks li { color: rgba(255, 255, 255, .82); }

/* ------------------------------------------------------------- 9. Process */
.step {
  position: relative;
  height: 100%;
  padding: 2.1rem 1.6rem 1.9rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--pd-line-light);
  transition: background-color .4s var(--pd-ease), border-color .4s var(--pd-ease);
}
.step:hover { background: rgba(255, 255, 255, .08); border-color: rgba(200, 162, 74, .55); }
.step__no {
  font-family: var(--pd-font-display);
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--pd-gold-500);
  margin-bottom: 1rem;
}
.step__title { font-size: 1.12rem; font-weight: 500; color: #fff; margin: 0 0 .6rem; }
.step__text { font-size: .93rem; color: rgba(255, 255, 255, .68); margin: 0; line-height: 1.65; }

/* Figures */
.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--pd-line);
  border: 1px solid var(--pd-line);
}
.figure-cell {
  padding: 2rem 1.5rem;
  background: var(--pd-cream);
  text-align: center;
}
.figure-cell__value {
  display: block;
  font-family: var(--pd-font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 200;
  line-height: 1;
  color: var(--pd-navy-800);
}
.figure-cell__value::after { content: ""; }
.figure-cell__label {
  display: block;
  margin-top: .75rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pd-muted);
  line-height: 1.5;
}

/* ------------------------------------------------------ 10. Reference cards */
.ref-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 24rem;
  overflow: hidden;
  background: var(--pd-navy-800);
  color: #fff;
}
.ref-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--pd-ease), opacity .5s var(--pd-ease);
}
.ref-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 30, .1) 0%, rgba(5, 15, 30, .55) 45%, rgba(5, 15, 30, .95) 100%);
  transition: opacity .5s var(--pd-ease);
}
.ref-card:hover img { transform: scale(1.06); }
.ref-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: 2rem 1.75rem;
}
.ref-card__title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 .55rem;
}
.ref-card__desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .74);
  margin: 0;
  line-height: 1.6;
}
.ref-card__more {
  margin-top: 1.1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pd-gold-400);
}
.ref-card__more::after { content: " \2192"; }

/* ----------------------------------------------------------- 11. CTA band */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--pd-navy-900) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 15, 30, .95) 0%, rgba(5, 15, 30, .72) 55%, rgba(10, 26, 51, .55) 100%);
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band__title { color: #fff; margin: 0 0 1rem; }
.cta-band__text { color: rgba(255, 255, 255, .76); max-width: 40rem; margin: 0 0 2rem; }

/* ------------------------------------------------------------ 12. Gallery */
.gal-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.gal-filter__btn {
  padding: .65rem 1.3rem;
  background: transparent;
  border: 1px solid var(--pd-line);
  color: var(--pd-muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .3s var(--pd-ease);
}
.gal-filter__btn:hover { border-color: var(--pd-navy-800); color: var(--pd-navy-800); }
.gal-filter__btn.is-active {
  background: var(--pd-navy-800);
  border-color: var(--pd-navy-800);
  color: #fff;
}
.gal-filter__btn.is-active:hover { color: #fff; }

/* Fixed row height (rather than per-tile aspect-ratio) keeps every row the
   same depth, so the double-width tiles mosaic in without leaving holes. */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
  grid-auto-rows: clamp(190px, 21vw, 290px);
  grid-auto-flow: dense;
  gap: 1.25rem;
}
.gal-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--pd-navy-800);
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity .4s var(--pd-ease), transform .4s var(--pd-ease);
}
.gal-item--tall { grid-row: span 2; }
@media (min-width: 992px) {
  .gal-item--wide { grid-column: span 2; }
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--pd-ease), filter .5s var(--pd-ease);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(.75); }
.gal-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 30, .92));
  color: #fff;
  text-align: left;
  transform: translateY(.6rem);
  opacity: 0;
  transition: transform .4s var(--pd-ease), opacity .4s var(--pd-ease);
}
.gal-item:hover .gal-item__cap,
.gal-item:focus-visible .gal-item__cap { transform: translateY(0); opacity: 1; }
.gal-item__cap strong {
  display: block;
  font-family: var(--pd-font-display);
  font-size: 1.02rem;
  font-weight: 400;
}
.gal-item__cap span {
  display: block;
  margin-top: .3rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pd-gold-400);
}
.gal-item.is-hidden { display: none; }
.gal-empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--pd-muted);
}

/* Lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 15, 30, .96);
  opacity: 0;
  transition: opacity .3s var(--pd-ease);
}
.pd-lightbox[hidden] { display: none; }
.pd-lightbox.is-open { opacity: 1; }
.pd-lightbox__figure {
  margin: 0;
  max-width: min(100%, 78rem);
  max-height: 100%;
  text-align: center;
}
.pd-lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}
.pd-lightbox__figure figcaption {
  margin-top: 1rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pd-gold-300);
}
.pd-lightbox__btn {
  flex: none;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--pd-line-light);
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  transition: background-color .25s var(--pd-ease), border-color .25s var(--pd-ease);
}
.pd-lightbox__btn:hover { background: var(--pd-gold-500); border-color: var(--pd-gold-500); color: var(--pd-navy-900); }
.pd-lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  font-size: 2rem;
}
@media (max-width: 575.98px) {
  .pd-lightbox__prev, .pd-lightbox__next {
    position: absolute;
    bottom: 1.25rem;
  }
  .pd-lightbox__prev { left: 1.25rem; }
  .pd-lightbox__next { right: 1.25rem; }
}

/* Clients list */
.clients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--pd-line-light);
  border: 1px solid var(--pd-line-light);
}
.clients li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.35rem 1.4rem;
  background: var(--pd-navy-800);
  font-size: .95rem;
  color: rgba(255, 255, 255, .84);
  transition: background-color .35s var(--pd-ease);
}
.clients li:hover { background: var(--pd-navy-700); }
.clients li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--pd-gold-500);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------ 13. Contact */
.info-list { margin: 0; padding: 0; list-style: none; font-style: normal; }
.info-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--pd-line);
}
.info-list li:first-child { padding-top: 0; }
.info-list__icon {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  background: var(--pd-navy-800);
}
.info-list__icon svg { width: 1.15rem; height: 1.15rem; fill: var(--pd-gold-400); }
.info-list__label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pd-gold-600);
  margin-bottom: .3rem;
}
.info-list__value { font-size: 1.02rem; color: var(--pd-navy-800); }
.info-list__value a { color: var(--pd-navy-800); }
.info-list__value a:hover { color: var(--pd-gold-600); }

.pd-form { background: var(--pd-cream); padding: clamp(1.75rem, 4vw, 3rem); }
.pd-form .form-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pd-navy-800);
  margin-bottom: .5rem;
}
.pd-form .form-label .req { color: var(--pd-gold-600); }
.pd-form .form-control,
.pd-form .form-select {
  border: 1px solid var(--pd-line);
  border-radius: 0;
  background: #fff;
  padding: .85rem 1rem;
  font-size: 1rem;
  color: var(--pd-ink);
  transition: border-color .25s var(--pd-ease), box-shadow .25s var(--pd-ease);
}
.pd-form .form-control:focus,
.pd-form .form-select:focus {
  border-color: var(--pd-gold-500);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, .18);
}
.pd-form .form-control.is-invalid,
.pd-form .form-select.is-invalid { border-color: #b3261e; background-image: none; }
.pd-form textarea.form-control { min-height: 9.5rem; resize: vertical; }
.pd-form .invalid-feedback { font-size: .85rem; }
.pd-form .form-check-input {
  border-radius: 0;
  border-color: var(--pd-muted);
  margin-top: .3rem;
}
.pd-form .form-check-input:checked {
  background-color: var(--pd-navy-800);
  border-color: var(--pd-navy-800);
}
.pd-form .form-check-label { font-size: .9rem; color: var(--pd-muted); line-height: 1.6; }
.pd-form__note { font-size: .82rem; color: var(--pd-muted); }
.pd-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert-pd {
  border: 0;
  border-left: 3px solid;
  border-radius: 0;
  padding: 1.15rem 1.35rem;
  font-size: .97rem;
}
.alert-pd--ok { background: #eef6ee; border-color: #2e7d32; color: #1b4d1f; }
.alert-pd--err { background: #fdeeee; border-color: #b3261e; color: #7d1a15; }

.map-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--pd-cream-dark);
  border: 1px solid var(--pd-line);
  filter: grayscale(.35);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -------------------------------------------------------------- 14. Footer */
.site-footer {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.75rem;
  background: var(--pd-navy-900);
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.4rem;
}
.footer-brand img { background: #fff; padding: 3px; }
.footer-about { color: rgba(255, 255, 255, .72); max-width: 26rem; }
.footer-note {
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
  max-width: 26rem;
}
.footer-title {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pd-gold-400);
  margin: 0 0 1.35rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .7rem; }
.footer-list a { color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer-list a:hover { color: var(--pd-gold-400); }

.footer-contact { display: flex; flex-direction: column; gap: .7rem; font-style: normal; }
.footer-contact a { color: rgba(255, 255, 255, .82); }
.footer-contact a:hover { color: var(--pd-gold-400); }
.footer-contact__hours { color: rgba(255, 255, 255, .5); font-size: .87rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--pd-line-light);
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover, .footer-bottom a.is-active { color: var(--pd-gold-400); }

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 1020;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--pd-gold-500);
  background: var(--pd-navy-800);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.75rem);
  transition: all .35s var(--pd-ease);
}
.to-top svg { width: 1.15rem; height: 1.15rem; fill: var(--pd-gold-400); }
.to-top:hover { background: var(--pd-gold-500); }
.to-top:hover svg { fill: var(--pd-navy-900); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* -------------------------------------------------------------- 15. Motion */
@keyframes pdKenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .8s var(--pd-ease), transform .8s var(--pd-ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
.reveal[data-delay="6"] { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active { animation: none; transform: scale(1.02); }
}

/* --------------------------------------------------------------- 16. Print */
@media print {
  .site-header, .site-footer, .to-top, .pd-lightbox, .hero__dots, .gal-filter { display: none !important; }
  body { color: #000; }
  .hero, .page-hero, .section--navy, .cta-band { background: #fff !important; color: #000 !important; }
  .hero__title, .page-hero__title { color: #000 !important; }
}
