:root {
  --navy: #111111;
  --navy-deep: #050505;
  --gold: #d4a347;
  --gold-soft: #fff6e2;
  --gold-light: #fffbf2;
  --white: #ffffff;
  --off-white: #ffffff;
  --text: #303030;
  --muted: #666666;
  --line: #e6e6e6;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  --radius: 22px;
  --container: 1180px;
  --ease: all 0.28s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
p, li { font-size: 1rem; }
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--navy);
  color: #fff;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.brand-tag {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 999px;
  transition: var(--ease);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}
.site-nav a {
  font-weight: 600;
  color: #fff;
  transition: var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(212, 163, 71, 0.22);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: #deb05e;
  transform: translateY(-1px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--hero-image, url("hero-poster.webp"));
  transform: scale(1.02);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at top right, rgba(212, 163, 71, 0.35), transparent 36%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 163, 71, 0.16);
  color: #f8e7be;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.section-kicker {
  background: var(--gold-soft);
  color: var(--navy-deep);
}
.page-hero h1,
.section h2,
.section-head h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
  max-width: 12ch;
}
.page-hero p {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: var(--ease);
  cursor: pointer;
  text-align: center;
}
.button-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(212, 163, 71, 0.28);
}
.button-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}
.button-full {
  width: 100%;
  border-radius: 14px;
  min-height: 56px;
}

.section, [id] { scroll-margin-top: 110px; }

.section {
  padding: 5.4rem 0;
  position: relative;
  overflow: hidden;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section-tinted {
  background: linear-gradient(180deg, #ffffff 0%, rgba(212,163,71,0.055) 100%);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(255,255,255,0.08);
}
.section-head {
  max-width: 860px;
  margin-bottom: 2.25rem;
}
.section h2,
.section-head h2 {
  color: var(--navy-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-dark h2,
.section-dark .section-head h2 {
  color: #fff;
}
.section-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-dark .section-head p,
.section-dark p {
  color: rgba(255,255,255,0.86);
}

.grid {
  display: grid;
  gap: 1.25rem;
}
.two-col {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
}
.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.55rem;
  transition: var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.12);
}
.card h2,
.card h3 {
  margin: 0 0 0.7rem;
  color: var(--navy-deep);
  line-height: 1.2;
}
.card p {
  margin: 0;
}
.card p + p {
  margin-top: 0.85rem;
}
.icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 1rem;
  border: 1px solid rgba(212,163,71,0.22);
}
.about-value-card .card-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.about-value-card .card-heading h3 {
  margin: 0;
}
.about-value-card .icon {
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}
.service-card-grid {
  gap: 1.45rem;
}
.service-card,
.process-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-symbol {
  font-size: 1.35rem;
  letter-spacing: 0;
}
.service-card .service-symbol,
.process-card .service-symbol {
  position: static;
  align-self: flex-end;
  margin-bottom: 1rem;
}
.service-card h3,
.process-card h3 {
  padding-right: 0;
}
.service-points {
  list-style: none;
  padding: 1rem 0 0;
  margin: auto 0 0;
  display: grid;
  gap: 0.72rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.service-points li {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}
.service-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  margin-top: 0.55rem;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,163,71,0.12);
}
.process-grid {
  gap: 1.55rem;
  align-items: stretch;
}
.process-card {
  padding: 2rem;
}
.process-label {
  display: inline-flex;
  width: fit-content;
  margin: -0.25rem 0 0.7rem;
  color: #8a5f13;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-dark .card p,
.section-dark .card .list li {
  color: var(--text);
}
.section-dark .service-points {
  border-top-color: rgba(0,0,0,0.12);
}
.section-dark .service-points li {
  color: var(--text);
}
.image-card {
  overflow: hidden;
  padding: 0;
}
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.image-card-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.image-card-contain img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.service-map-section {
  overflow: visible;
}
.service-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.service-map-head h2 {
  margin: 0;
}
.service-map-head p {
  max-width: 860px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.service-map-note {
  padding: 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
}
.service-map-note strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}
.service-map-note span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.service-map-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
}
.service-map-card iframe {
  display: block;
  width: 100%;
  min-height: 470px;
  border: 0;
}
.service-map-points {
  margin-top: 1.25rem;
}
.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.72rem;
}
.list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
}
.list li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--gold-light);
  margin-top: 0.25rem;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.callout {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 22px 46px rgba(0,0,0,0.18);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.callout h2,
.callout h3 {
  margin: 0 0 0.3rem;
  color: #fff;
}
.callout p {
  margin: 0;
  color: rgba(255,255,255,0.86);
}
.callout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
.callout-actions .button {
  min-width: 150px;
}
.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.compare-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
}
.compare-label {
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.compare-label.after {
  background: var(--gold);
  color: var(--navy-deep);
}
.compare-card .card {
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.case-study-section {
  overflow: hidden;
}
.case-study-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.case-study-intro h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.case-study-intro p {
  max-width: 820px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.case-study-summary {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 1.35rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}
.case-study-summary strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.case-study-summary span {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.case-step {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
}
.case-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f6f6f6;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-copy {
  padding: 1.2rem;
}
.case-copy span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  background: var(--gold-light);
  color: #8a5f13;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-copy h3 {
  margin: 0 0 0.55rem;
  color: var(--navy-deep);
  line-height: 1.18;
}
.case-copy p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}
.case-study-outcome {
  margin-top: 1.25rem;
  padding: 1.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: center;
}
.case-study-outcome h3 {
  margin: 0 0 0.45rem;
  color: var(--navy-deep);
}
.case-study-outcome p {
  margin: 0;
  color: var(--muted);
}
.case-outcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.case-outcome-list li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
}
.case-outcome-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  margin-top: 0.42rem;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,163,71,0.12);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.testimonial-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.testimonial-summary h2 {
  color: var(--navy-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}
.testimonial-summary p {
  max-width: 860px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.rating-panel {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 1.6rem;
  box-shadow: 0 22px 46px rgba(0,0,0,0.16);
  display: grid;
  align-content: center;
  justify-items: start;
}
.rating-panel strong {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
}
.rating-panel .stars {
  margin: 0.75rem 0 0.65rem;
  font-size: 1.1rem;
}
.rating-panel span {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  line-height: 1.45;
}
.review-grid {
  column-count: 2;
  column-gap: 1.25rem;
}
.testimonial-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 1.45rem;
  break-inside: avoid;
}
.review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-top .stars {
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}
.review-top h3 {
  margin-bottom: 0.2rem;
}
.review-date {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.review-badge {
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--gold-light);
  border: 1px solid rgba(212,163,71,0.28);
  color: #8a5f13;
  font-weight: 900;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.48rem 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-quote {
  color: var(--text);
  line-height: 1.62;
}
.review-quote + .review-quote {
  margin-top: 0.9rem;
}
.testimonial-card .review-service {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem !important;
  padding: 0.62rem 0.78rem;
  border-radius: 999px;
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,0.10);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
}
.testimonial-extra.is-hidden {
  display: none;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.reviewer {
  margin-top: 1rem !important;
  font-weight: 800;
  color: var(--navy-deep);
}
.review-service {
  margin-top: 0.35rem !important;
  color: var(--muted);
  font-weight: 700;
}

.contact-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.95fr);
  gap: 1.6rem;
  align-items: start;
}
.contact-copy-stack {
  display: grid;
  gap: 1.45rem;
}
.contact-info-grid {
  gap: 1rem;
}
.contact-details-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-details-top .section-head {
  margin-bottom: 0;
}
.contact-graphic-card {
  position: relative;
  width: min(100%, 340px);
  margin: 0 0 0 auto;
  padding: 0;
  border-radius: 0 0 22px 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}
.contact-graphic-card::after {
  display: none;
}
.contact-graphic-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0 0 22px 22px;
  background: transparent;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.55rem;
}
.contact-action-buttons {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.45rem;
}
.contact-action-buttons .button {
  min-width: 148px;
  min-height: 58px;
  padding-inline: 1.45rem;
}
.form-row {
  margin-bottom: 1rem;
}
.form-row label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 800;
  color: var(--navy-deep);
}
.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--navy);
  background: #fff;
  transition: var(--ease);
}
textarea {
  resize: vertical;
  min-height: 140px;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212,163,71,0.9);
  box-shadow: 0 0 0 4px rgba(212,163,71,0.18);
}
.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background: #202020;
  color: rgba(255,255,255,0.86);
  position: relative;
  overflow: hidden;
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}
.site-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #fff;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,0.82);
}
.site-footer a {
  color: #fff;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.94rem;
}
.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(212,163,71,0.34);
  transition: var(--ease);
}

@media (max-width: 1120px) {
  .site-nav { gap: 0.75rem; }
  .site-nav a { font-size: 0.94rem; }
  .two-col,
  .contact-request-grid,
  .service-map-head,
  .case-study-intro,
  .case-study-outcome,
  .testimonial-summary,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .three-grid,
  .four-grid,
  .case-study-grid,
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(0,0,0,0.98);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .page-hero { min-height: calc(100vh - 86px); }
  .page-hero .container { padding: 3.5rem 0; }
  .service-map-card iframe {
    min-height: 390px;
  }
  .callout {
    grid-template-columns: 1fr;
  }
  .callout-actions {
    justify-content: flex-start;
  }
  .contact-details-top {
    grid-template-columns: 1fr;
  }
  .contact-graphic-card {
    width: min(100%, 330px);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .page-hero h1 { max-width: 13ch; }
  .hero-actions {
    flex-direction: column;
  }
  .button,
  .nav-cta {
    width: 100%;
  }
  .section {
    padding: 4.3rem 0;
  }
  .three-grid,
  .four-grid,
  .case-study-grid,
  .stat-row,
  .comparison,
  .case-outcome-list,
  .contact-request-grid,
  .contact-details-top,
  .service-map-head,
  .two-up {
    grid-template-columns: 1fr;
  }
  .service-map-card iframe {
    min-height: 330px;
  }
  .contact-graphic-card {
    width: min(100%, 330px);
  }
  .review-grid {
    column-count: 1;
  }
  .brand-name { font-size: 1rem; }
  .brand-tag { font-size: 0.72rem; }
  .floating-call {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}



.text-link{display:inline-flex;margin-top:.8rem;color:var(--navy-deep);font-weight:800;text-decoration:underline;text-underline-offset:3px}.card h3 a{text-decoration:underline;text-decoration-color:rgba(212,163,71,.55);text-underline-offset:4px}.faq-list{display:grid;gap:.8rem;max-width:920px}.faq-item{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:16px;padding:0 1.1rem;box-shadow:0 8px 24px rgba(0,0,0,.05)}.faq-item summary{cursor:pointer;font-weight:800;color:var(--navy-deep);padding:1rem 2rem 1rem 0}.faq-item p{margin:0;padding:0 0 1rem;color:var(--muted)}.price-inline{display:block;margin-top:.8rem;color:var(--navy-deep);font-size:1.45rem}.page-hero video{opacity:0;transition:opacity .45s ease}.page-hero video.is-ready{opacity:1}@supports(content-visibility:auto){main>.section{content-visibility:auto;contain-intrinsic-size:auto 760px}}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.page-hero video{display:none}}

.honeypot-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.return-home{margin:0 0 1.25rem}
