/* ==========================================================
   Awesome Additions — interior pages
   ========================================================== */

body.subpage { background: var(--white); }

/* Dark banner under the fixed nav so the nav stays legible */
.page-hero {
  background: linear-gradient(180deg, var(--logo-navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 96px) 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
}
.page-hero .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,31,59,0.55) 0%, rgba(2,31,59,0.8) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--bright-blue); }
.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  color: var(--white);
  max-width: 16ch;
}
.page-hero .page-sub {
  margin-top: 22px;
  max-width: 60ch;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--platinum);
  line-height: 1.6;
}
.page-hero .crumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(216,220,223,0.55);
  margin-bottom: 22px;
}
.page-hero .crumb a { color: rgba(216,220,223,0.55); text-decoration: none; }
.page-hero .crumb a:hover { color: var(--bright-blue); }

/* Generic light section */
.page-section { padding: 100px 0; }
.page-section.tight { padding: 70px 0; }

/* Service cards with real photography */
.service-card { padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; }
.service-card .service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.service-card { position: relative; transition: transform 0.35s var(--ease-out), box-shadow 0.35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(11,29,58,0.14); }
.service-card .service-card-text { padding: 28px 30px 32px; }
.service-card .service-card-text h3 { margin-top: 0; }
.service-card .stretched-link { color: inherit; text-decoration: none; }
.service-card .stretched-link::after { content: ''; position: absolute; inset: 0; z-index: 2; }
.service-card .stretched-link:hover { color: var(--bright-blue); }

/* Operating commitments — card grid */
.ops-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ops-grid li {
  position: relative;
  padding: 24px 28px 24px 58px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--bright-blue);
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--deep-navy);
  max-width: none;
}
.ops-grid li::before {
  content: '';
  position: absolute; left: 24px; top: 27px;
  width: 16px; height: 8px;
  border-left: 3px solid var(--bright-blue);
  border-bottom: 3px solid var(--bright-blue);
  transform: rotate(-45deg);
}
.ops-grid li strong {
  display: block;
  font-size: 16px; font-weight: 700; color: var(--deep-navy);
  margin-bottom: 6px;
}
@media (max-width: 760px) { .ops-grid { grid-template-columns: 1fr; } }

/* "What we don't do" list */
.exclude-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; max-width: 820px; }
.exclude-list li {
  position: relative;
  padding: 16px 20px 16px 52px;
  background: var(--light-gray);
  border-left: 3px solid var(--hairline);
  font-size: 15px;
}
.exclude-list li::before {
  content: '×';
  position: absolute; left: 20px; top: 13px;
  color: #b04a4a; font-weight: 700; font-size: 20px;
}
.exclude-list strong { color: var(--deep-navy); }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-details h3 { margin-top: 28px; }
.contact-details .detail {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
  margin-bottom: 6px;
}
.contact-details a.detail:hover { color: var(--bright-blue); }
.contact-details .detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bright-blue);
  margin: 22px 0 4px;
}

.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-navy);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--deep-navy);
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  background: var(--white);
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 3px rgba(61,165,232,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form button { justify-self: start; cursor: pointer; }
.form-note { font-size: 13px; color: var(--deep-navy); opacity: 0.65; }
.form-success {
  display: none;
  padding: 18px 22px;
  background: rgba(61,165,232,0.1);
  border-left: 4px solid var(--bright-blue);
  font-weight: 600;
  color: var(--deep-navy);
}
.form-success.show { display: block; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .page-section { padding: 70px 0; }
}
